



@import url('https://fonts.googleapis.com/css2?family=Prompt&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");


* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;
    scroll-behavior: smooth;

}

body {

    font-family: 'Prompt', sans-serif;
    font-weight: 400;
    font-style: normal;

    line-height: 1.65;
    color: #2d2f38;

    background: #ebebeb;
}

/* dash icon */
a .dashb-body img {

    transition: all 0.3s ease-in-out;
}

a .dashb-body:hover img {

    width: 54px;
    margin: 4px;

    transition: all 0.2s ease-in-out;
}

/* home-bg */
.home-bg {

    background: rgb(247, 247, 247);

    padding: 26px;
    border-radius: 26px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

    margin: 52px auto;

}

/* selection */
/*::-moz-selection {
    color: #eee;
    background: #5d0a81;
}
::selection {
    color: #eee;
    background: #5d0a81;
}*/

/* scrollbar */
/*::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8900a7;
}

::-webkit-scrollbar-thumb:hover {
    background: #ba2bda;
}*/

/* header */
li.nav-item > a.nav-link {

    color: #f6f6f6;
}

/* ul.navbar-nav > li.nav-item > a.nav-link:hover {

    color: #fff;
    background: rgb(125, 0, 209);
} */



/* page-item */
li.page-item.active a.page-link {

    background: var(--main_color);
    border: var(--main_color);
}

/* block */
.enlighter-btn.enlighter-btn-collapse, .enlighter-btn.enlighter-btn-website {

    display: none;
}

/* about us */
.bg-about {
    background-color: var(--bg_footer);
}

.h-about {
    color: var(--color_footer);
}

.b-about {
    color: var(--hover_footer);
}

.about-section {
    float: left;
    width: 55%;
}

.image-section {
    float: right;
    width: 40%;
}

.image-section img {
    width: 100%;
    height: auto;
}

.about-section .title {
    text-transform: uppercase;
    font-size: 28px;
}

.unslide {

    color: var(--h-color);
    font-size: 36px;
}

.about-section .content h3 {

    margin-top: 20px;
    color: #5d5d5d;
    font-size: 32px;
    letter-spacing: 1px;
}

.about-section .content p {

    margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;

    color: #686868;
    letter-spacing: 0.75px;
}

@media screen and (max-width: 768px) {

    .about-section {
        float: none;
        width: 100%;
        display: block;
        margin: auto;
    }

    .image-section {
        float: none;
        width: 100%;
    }

    .image-section img {
        width: 100%;
        height: auto;
        display: block;
        margin: auto;
    }

    .about-section .title {
        text-align: center;
        font-size: 19px;
    }

}

/* text */
.cr-text, .cr-text:hover {

    text-decoration: none;
}

/* header */
.headbar {

    color: var(--h-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.img-logo {

    width: 200px;
}

nav.kp-fixed {

    font-size: 16px;
    padding: 10px 12px;

    --bs-bg-opacity: 1;
    /* background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity))!important; */
    background-color: var(--nav_bg);

    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;

    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important;
}

nav.sticky {

    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;

    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important;
    animation: fadeInDown ease 0.3s both;
}

.navbar-brand {

    font-size: 24px;
}

/* dropdown */
#navbarNav ul li ul.dropdown-menu {

    border-radius: 4px;

    border-top-width: 3px;
    border-bottom-width: 0;
    border-left-width: 0;
    border-right-width: 0;

    border-style: solid;
    border-color: var(--bd_dropdown);

    margin-top: 0;

    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);

    padding-top: 0;
    padding-bottom: 0;
}

#navbarNav ul li a {

    color: var(--nav_color);
}

#navbarNav ul li a:hover {

    color: var(--nav_hover);
}

#navbarNav ul li ul.dropdown-menu li {

    border-bottom: 1px solid #ccc;
}

#navbarNav ul li ul.dropdown-menu li a:hover {

    border-radius: 4px;
    background-color: var(--bg_dropdown);
    color: #fff;

    transition: .4s;
}

#navbarNav ul li ul.dropdown-menu li a {

    color: #474747;
    font-size: 13px;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* dropdown hover */
@media screen and (min-width: 992px) {

    /* animate */
    .navbar .nav-item .dropdown-menu {

        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .0s;
        margin-top: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {

        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    .navbar .dropdown-menu.fade-down {

        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }

    /* hover */
    .dropdown:hover .dropdown-menu {

        display: block;
        margin-top: 0;
    }

    .dropdown .dropdown-menu {

        display: none;
    }

    .dropdown:hover .dropdown-toggle::after {

        border-top: 0;
        border-bottom: .3em solid;
    }

    .mega-menu {

        transform: translate3d(-120px, 0, 0) !important;
    }

}

@media screen and (max-width: 991px) {

    /* header */
    nav.kp-fixed {

        --bs-bg-opacity: 1;
        /* background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity))!important; */
        background-color: var(--nav_bg);

        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;

        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important;
    }

    .dropdown-toggle.show::after {

        border-top: 0;
        border-bottom: .3em solid;
    }

}



/* footer */
.footer {
    background-color: var(--bg_footer);
    padding: 5px 0 12px;
    margin: 32px 0 0;
}

.footer-col {
    width: 25%;
    padding: 0 50px;
}

/* h4 */
.footer-col h4 {
    font-size: 18px;
    color: var(--color_footer);
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--h-color);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li {
    list-style: none;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--hover_footer);
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--color_footer);
    padding-left: 8px;
}

/* social */
.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #fff;
}

/* responsive */
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}

.footer-copyright-text {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-copyright-text p {
    color: var(--color_footer);
    margin-bottom: 0;
}


/* other */
a:hover {
    text-decoration: none;
}

.btn {
    padding: 10px 28px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/* slide */
/* animation on caption */
.owl-item.active .slider-title {

    animation: backInLeft ease 1.5s both;
}

.owl-item.active .slider-desc {

    animation: backInDown ease 1s 1s both;
}

.home-slider, .home-swiper {
    margin: 20px auto 20px auto;
}

/* slide img */
img.slider-item, video.slider-item {

    width: 100%;
    max-width: 100%;
    /* height: 400px; */

    /* object-fit: cover;
    background-size: cover;
    background-position: center; */
}

.slide-img {

    margin-top: 10px;
}

/* responsive */
@media screen and (min-width: 992px) {

    /* .home-slider {

        width: 80%;
        margin: 126px auto 26px auto;

        border-radius: 15px;
    } */

    /* slide img */
    /* img.slider-item, video.slider-item {

        height: 400px;
    } */

    /* .slide-top {

        margin-top: 92px;
    }

    .slide-img {

        margin-top: 125px;
    } */

}


/* caption */
.slider-caption {

    position: absolute;
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
    width: 100%;
}

.slider-title {

    font-size: 35px;
    font-weight: 300;
    margin: 0;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
}

.slider-desc {

    font-size: 26px;
    margin: 6px 0 0;
    color: rgb(255, 255, 255);
}

@media screen and (max-width: 712px) {

    .slider-title {

        font-size: 26px;
    }

    .slider-desc {

        font-size: 24px;
    }

}

@media screen and (max-width: 548px) {

    .slider-title {

        font-size: 24px;
    }

    .slider-desc {

        font-size: 22px;
    }

}

@media screen and (max-width: 469px) {

    .slider-title {

        font-size: 20px;
    }

    .slider-desc {

        font-size: 18px;
    }

}

@media screen and (max-width: 359px) {

    .slider-title {

        font-size: 18px;
    }

    .slider-desc {

        font-size: 16px;
    }

}

.home-slider .owl-dots {

    position: absolute;
    z-index: 100;
    bottom: 5px;

    left: 0;
    right: 0;
    text-align: center;
}

.home-slider .owl-dots button.owl-dot {

    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgb(255, 255, 255);

    margin: 0px 3px;
    outline: none;
}

.home-slider .owl-dots button.owl-dot.active {

    background: rgb(255, 255, 255);
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {

    width: 50px;
    height: 50px;
    border-bottom: 4px solid rgb(255, 255, 255);
    border-left: 4px solid rgb(255, 255, 255);
    position: absolute;

    top: 50%;

    text-indent: -60px;
    overflow: hidden;
    outline: none;
    opacity: 0.5;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
}

.owl-carousel .owl-nav button.owl-prev {

    left: -80px;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
}

.owl-carousel .owl-nav button.owl-next {

    right: -80px;
    transform: translateY(-50%) rotate(-135deg);
    -webkit-transform: translateY(-50%) rotate(-135deg);
    -ms-transform: translateY(-50%) rotate(-135deg);
}

.owl-carousel:hover .owl-nav button.owl-prev {

    left: 80px;
}

.owl-carousel:hover .owl-nav button.owl-next {

    right: 80px;
}

.owl-carousel {

    overflow: hidden;
}

/* back top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 25px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgb(0, 0, 0);
    visibility: hidden;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    z-index: 1100;
}

.back-to-top::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: -3px auto;
    width: 12px;
    height: 12px;
    border-top: 3px solid rgb(255, 255, 255);
    border-right: 3px solid rgb(255, 255, 255);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.back-to-top:hover {
    background: var(--main_color);
}

.back-to-top:hover::after {
    border-color: rgb(255, 255, 255);
}


/* content */
.card-content {

    position: relative;
    width: 100%;

    margin: 12px 0;
}

.card-content img.img-card {

    position: relative;
    cursor: pointer;

    object-fit: cover;
    background-size: cover;
    background-position: center;

    width: 426px;
    border-radius: 12px 0 0 0;
    transition: 0.5s;
}

@media screen and (max-width: 996px) {

    .card-content img.img-card {

        width: 100%;
    }

}

.card-content img.img-card:hover {

    transition: 0.3s;
    transform: translateY(-5px);

    box-shadow: rgb(0, 0, 0, 0.24) 0px 7px 12px;
}

.card-content .kp-h {

    font-size: 22px;
    letter-spacing: 1px;
    color: #181818;
}

.c-hover.kp-h {

    color: #fff;
}

@media screen and (max-width: 996px) {

    .card-content .kp-h {

        font-size: 18px;
    }
}

@media screen and (max-width: 441px) {

    .card-content .kp-h {

        font-size: 18px;
    }
}

.card-content .kp-h:hover {

    color: var(--main_color);
    cursor: pointer;
}

.card-content a {

    text-decoration: none;
}

.card-content .c-title {

    margin: 20px 0 12px;
    font-size: 17px;

    color: rgb(56, 56, 56);
}

@media screen and (max-width: 441px) {

    .card-content .c-title {

        font-size: 15px;
    }
}

.card-content p {

    text-align: left;
    font-size: 16px;
    letter-spacing: 0.5px;

    margin: 3px 0;
}

/* article */
a.title-article {

    color: #2a2a2a;
    text-decoration: none;

    font-weight: 700;
}

a.title-article:hover {

    color: var(--h-color);
    opacity: 0.9;
}

/* profile */
li.actives {
    background: var(--main_color);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.263), var(--main_color));
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0.263), var(--main_color));
    background: -moz-linear-gradient(right, rgba(255, 255, 255, 0.263), var(--main_color));
    background: linear-gradient(to right, rgba(255, 255, 255, 0.263), var(--main_color));
}

.lg-s {
    color: black;
    text-decoration: none;
}

.lg-s:hover {
    color: rgb(102, 102, 102);
    text-decoration: none;
}

a.activess {
    color: black;
    text-decoration: none;
}

.hide_pro {
    display: none;
}

.showblock {
    display: block;
}

/* col */
.col-p-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-p-9 {
    flex: 0 0 auto;
    width: 75%;
}

@media screen and (max-width: 1012px) {

    .col-p-9 {
        flex: 0 0 auto;
        width: 100%;
    }

    .flex-profile {
        flex: 0 0 auto;
        width: 100%;
        margin: 0 0 26px 0;
    }

}

/* pro */
.g-pro {
    display: flex;
    flex-wrap: wrap;
}

.g-pro-m {
    display: flex;
    flex-wrap: wrap;
}

.h-pro {
    width: 226px;
    margin: 0 0 9px 0;

    font-size: 15px;
    color: #2a2a2a;
}

.m-pro {
    font-size: 16px;
    color: #585858;
}

/* m-pro */
@media screen and (max-width: 479px) {

    .pf-lt {
        width: 100%;
        font-size: 15px;
    }
    .m-pro {
        font-size: 15px;
    }
}

@media (max-width: 369px) {

    .m-pro {
        font-size: 14px;
    }
}

/* h-pro */
@media (max-width: 1253px) {
    .h-pro {
        width: 196px;
    }
}

@media (max-width: 749px) {
    .h-pro {
        width: 162px;
    }
}

@media (max-width: 533px) {
    .h-pro {
        width: 126px;
    }
}

@media (max-width: 496px) {
    .h-pro {
        width: 112px;
    }
}

/* flex */
.m-pf {
    flex: 0 0 auto;
    width: 58.33333333%;
}

@media (max-width: 863px) {

    .g-pro-m {
        display: block;
    }
}

@media (max-width: 769px) {

    .m-pf {
        flex: 0 0 auto;
        width: 90%;
    }
}


/* crop image */
.crop-img {

    flex: 0 0 auto;
    width: 66.66666667%;
}

.pre-radius {

    cursor: pointer;
    border-radius: 50%;
}

.pf-radius {

    width: 42px;
    border-radius: 50%;
}

.preview {
    overflow: hidden;
    width: 160px; 
    height: 160px;
    margin: 10px;
    border: 1px solid red;
}

.modal-pf-img {
    max-width: 1000px !important;
}

.image_area {
    position: relative;
}

/* img */
.pf-lb {

    font-size: 18px;
    color: #3ba5fb;
    font-weight: 700;

    display: block;

    background: rgba(248, 245, 245, 0.787);
    padding: 12px 12px;

    text-align: center;
}

.pf-lb:hover {
    cursor: pointer;
    background: rgb(212, 212, 212);
}

.b-pf-lb {
    width: 100%;
}

/* del */
.pf-lb-del {

    font-size: 18px;
    color: #ff3e3e;
    font-weight: 700;

    display: block;

    background: #faf8f8e1;
    padding: 12px 12px;

    text-align: center;

    margin: 9px 0 0 0;
}

.pf-lb-del:hover {
    cursor: pointer;
    background: rgb(212, 212, 212);
}

.b-pf-lb a {
    text-decoration: none;
}

/* pf-img */
div.pf-img img {

    width: 169px;
    height: auto;
}

div.pf-img {

    /* width: 169px; */
    height: 169px;

    overflow: hidden;
    text-align: center;
}

@media (max-width: 998px) {

    div.pf-img img {

        width: 166px;
        height: auto;
    }
}

@media (max-width: 863px) {

    div.pf-img img {

        width: 163px;
        height: auto;
    }
}

@media (max-width: 769px) {

    div.pf-img img {

        width: 152px;
        height: auto;
    }
}

@media (max-width: 563px) {

    /* img */
    div.pf-img img {

        width: 142px;
        height: auto;
    }
}

/* home */
.subhead {
    display: block;
    text-transform: capitalize;
    color: #AFB7C1;
    font-weight: 500;
    margin-bottom: 8px;
}

.page-section {
    position: relative;
    display: block;
    padding: 40px 0;
}

.page-section p {
    color: #6D728B;
}

.title-section {
    display: block;
    max-width: 450px;
    color: #2d2f38;
    font-weight: 600;
    margin-bottom: 32px;
}

.text-center .title-section {
    margin-left: auto;
    margin-right: auto;
}

/* btn */
.bg-dribbble {
    background-color: #EA4C89 !important;
}

.btn.bg-dribbble:hover, .btn.bg-dribbble:focus {
    background-color: #e7357a !important;
}

.bg-linkedin {
    background-color: #0077B5 !important;
}

.btn.bg-linkedin:hover, .btn.bg-linkedin:focus {
    background-color: #00669c !important;
}


/* uncolor */
.bg-uncolor {

    opacity: 0.8;
    background-color: var(--main_color) !important;
}

.btn.bg-uncolor:hover, .btn.bg-uncolor:focus {

    opacity: 1;
    background-color: var(--main_color) !important;
}



/* portfolio */
.portfolio {

    display: block;

    /* background-color: #F2F4FE; */
    border-radius: 20px;

    overflow: hidden;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;

    -webkit-box-shadow: 0 3px 12px rgba(109, 114, 139, 0.2);
    box-shadow: 0 3px 12px rgba(109, 114, 139, 0.2);

    position: relative;
    overflow: hidden;
}

.portfolio:hover {

    transition: 0.3s;
    /* transform: translateY(-15px); */

    /* box-shadow: rgb(0, 0, 0, 0.24) 0px 7px 12px; */
}

.portfolio img, .portfolio video {

    width: auto;
    max-width: 100%;
}

/* product */
.portfolio img.card-img-top, .portfolio video.card-img-top {

    position: relative;
    cursor: pointer;

    width: 100%;
    max-width: 100%;
    height: 235px;

    object-fit: cover;
    background-size: cover;
    background-position: center;

    transition: transform 0.5s;
}

/* article */
.portfolio img.img-article, .portfolio video.img-article {

    position: relative;
    cursor: pointer;

    width: 100%;
    max-width: 100%;
    height: 192px;

    object-fit: cover;
    background-size: cover;
    background-position: center;

    transition: transform 0.5s;
}

.portfolio:hover img.card-img-top, .portfolio:hover video.card-img-top, .portfolio:hover img.img-article, .portfolio:hover video.img-article {

    transform: scale(1.1);
}

/* product */
.img-box {

    position: relative;
    height: 235px;

    overflow: hidden;
}

/* article */
.img-boxa {

    position: relative;
    height: 192px;

    overflow: hidden;
}

/* card */
.card-body {

    flex: 1 1 auto;
    padding: 1rem;
}

.card-testimonial {
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: #F2F4FE;
    color: #6D728B;
    border-radius: 8px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.card-testimonial:hover {
    background-color: #fff;
}

.card-testimonial .content {
    margin-bottom: 24px;
}

.card-testimonial .author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card-testimonial .avatar {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
}

.card-testimonial .avatar img {
    width: 100%;
    height: 100%;
}

.card-testimonial .author-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: #33374B;
}

.card-testimonial .author-info {
    font-size: 12px;
    color: #a1aab6;
}

/* avatar */
.avatar {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.avatar-img {
    margin-right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-img img {
    width: 100%;
    height: 100%;
}

/* hover */
.ac-hover {

    text-decoration: none;
}

.ac-hover:hover {

    text-decoration: underline;
}

/* pagination */
.pagination a {

    color: black;

    padding: 8px 16px;
    margin: 0 4px;
}

.peg-hide {

    display: none;
}


/* color */
.color-purple {
    --bs-table-color: var(--table_color);
    --bs-table-bg: var(--table_bg);
    --bs-table-border-color: var(--table_border);
    --bs-table-striped-bg: var(--table_bg);
    --bs-table-striped-color: var(--table_color);
    --bs-table-active-bg: var(--table_border);
    --bs-table-active-color: var(--table_color);
    --bs-table-hover-bg: var(--table_bg);
    --bs-table-hover-color: var(--table_color);
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}


/* dashboard */
.bg-user {

    color: #ffffff;
    background: var(--main_color);
}


/* content */
.content-wrap {

    position: relative;
    display: block;
    padding: 16px 0;
}

.content-wrap .post-img {

    text-align: center;

    position: relative;
    display: block;

    width: 100%;
    margin-bottom: 32px;

    /* -webkit-box-shadow: 0 4px 24px rgba(109, 114, 139, 0.3);
    box-shadow: 0 4px 24px rgba(109, 114, 139, 0.3); */
}

.content-wrap .post-img img, .content-wrap .post-img video {

    position: relative;

    width: 100%;
    max-width: 85%;
    height: 490px;

    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.p-name {

    color: #000;
    font-size: 36px;

    font-weight: 700;
    letter-spacing: 1px;
}

.p-name .profile .title {

    color: #000;
    font-size: 20px;

    font-weight: 400;
    letter-spacing: 0.5px;
    width: 80%;
}

.p-name .profile, .p-name .profile a {

    color: #000;
    font-size: 19px;

    font-weight: 400;
    letter-spacing: 0px;
}

.p-name .profile img {

    width: 28px;
}

.content-wrap .content {

    letter-spacing: 0px;
    width: 100%;
}

.content-wrap .content img, .content-wrap .content video {

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


/* exam */
.content-wrap .content.exam {

    text-align: center;
}

.content-wrap .content.exam .status {

    font-size: 26px;
}

.content-wrap .content.exam .main {

    margin: 26px 0;
    font-size: 23px;
    color: #000;

    letter-spacing: 0.5px;
    padding: 2px;
}

.content-wrap .tags {

    font-size: 26px;
}

.content-wrap .tags a {

    padding: 8px 19px;

    font-size: 20px;
    text-decoration: none;

    color: #fff;

    background: #d12c2c;
}

.content-wrap .tags a:hover {

    background: #c72e2e;
}

.content-wrap .tags img {

    width: 34px;
}

/* content responsive */
@media screen and (max-width: 991px) {

    .content-wrap .post-img img, .content-wrap .post-img video {

        max-width: 100%;
        height: 420px;
    }

    .p-name .profile .title {

        width: 100%;
    }

}


/* progress indicator */
.remaining {

    color: #088b8b;
}

.time-center {

    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-container {

    width: 115px; /* 400px */
    height: 115px; /* 400px */
    background-color: #ddd;
    border-radius: 50%;
    position: absolute;
    overflow: hidden;
    z-index: 1;
}

.semicircle {

    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: right center;
}

.semicircle:nth-child(1) {

    background-color: #088b8b;
    z-index: 2;
}

.semicircle:nth-child(2) {

    background-color: #088b8b;
    z-index: 3;
}

.semicircle:nth-child(3) {

    background-color: #ddd;
    z-index: 4;
}

.outermost-circle {

    width: 105px;
    height: 105px;

    background-color: #fff;
    border-radius: 50%;
    z-index: 5;
}

/* timer */
.timer-container {

    height: 200px;
    z-index: 6;
}

.timer {

    height: 100px;
    z-index: 7;
}

.timer div {

    font-size: 20px; /* 70px */
    font-weight: 100;

    width: 20px; /* 80px */
    height: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 4px 0 4px;
}

.timer .colon {

    width: 6px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 3px;

    background-color: transparent;
}

/* payment */
.payment {

    color: #000;
    font-size: 19px;

    font-weight: 400;
    letter-spacing: 0px;
}

.img-payment {

    max-width: 80%;
    height: auto;
}

.payment-img {

    width: 255px;
}

@media screen and (max-width: 539px) {

    .payment-img {

        width: 90%;
    }

}

.img-payment {

    position: relative;
    cursor: pointer;

    margin-top: 5px;

    transition: transform 0.5s;
}

.img-payment:hover {

    transform: scale(1.04);
}

/* btn */
.btn-read {

    background-color: #E6F2FF;
    border: 2px solid #E6F2FF;
    color: #1A73E8;
}

.btn-read:hover {

    background-color: #D9E8FF;
    border: 2px solid #D9E8FF;
    color: #0F62DA;
}

/* hide delete */
table.dtr-details > tr > td > a.btn-danger, table.dtr-details > tr > td > .bt-cart, table.dtr-details > tr > td > div > .bt-cart {
    display: none;
}

font.bt-cart, div.modal-header > h4.modal-title > a.delete-product.bt-cart {
    display: none;
}

/* swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}