@font-face {
    font-family: "dana-bold";
    src: url("../font-icon/static/Dana-Bold.ttf");
}

@font-face {
    font-family: "dana-regular";
    src: url("../font-icon/static/Dana-Regular.ttf");
}

@font-face {
    font-family: "dana-medium";
    src: url("../font-icon/static/Dana-Medium.ttf");
}

@font-face {
    font-family: "dana-thin";
    src: url("../font-icon/static/Dana-Thin.ttf");
}

.owl-stage {
    width: max-content !important;
}

.owl-next {
    position: absolute;
    top: 45%;
    transform: translate(40%, -40%);
    right: 10px !important;
    width: 48px;
    height: 48px;
    text-align: center !important;
    padding: 8px;
}

.owl-prev {
    position: absolute;
    top: 45%;
    transform: translate(-40%, -40%);
    left: 10px !important;
    width: 48px;
    height: 48px;
    padding: 8px;
    text-align: center !important;
}

.owl-dots {
    text-align: center;
    background-color: transparent;
    padding-top: 5px;
}

.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    background-color: rgb(218, 214, 214) !important;
    width: 7px;
    height: 7px;
    margin: 0px 3px;
    border-radius: 100%;
}

.owl-dots .owl-dot.active {
    background-color: var(--green-color) !important;
}

body:not(i),
*:not(i) {
    box-sizing: border-box;
    word-wrap: break-word;
    font-family: "dana-regular" !important;
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none !important;
}

:root {
    --main-color: rgb(51, 41, 41);
    --green-color: #112031;
    --rate-color: #c6ee17;
}

button {
    outline: none !important;
    border: none !important;
}

input {
    outline: none !important;
    border: none !important;
}

a {
    text-decoration: none !important;
}

body {
    background-color: #f8f8fc !important;
    display:flex;
  flex-direction:column;
  min-height:100vh;
}

main{
    flex: 1;
}

.color78 {
    color: #787878 !important;
}

.line-clamp {
    overflow: hidden;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    text-align: justify;
}

.custom-bg {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px #e3e1e9;
}

.custom-btn {
    padding: 0px 10px;
    white-space: nowrap;
    border: 2px solid var(--green-color);
    border-radius: 10px;
    height: 35px !important;
    background-color: var(--green-color);
    color: rgb(224, 222, 222);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    width: fit-content;
    font-size: 15px;
}

.custom-btn:hover {
    color: rgb(255, 255, 255);
}

.font14 {
    font-size: 14px;
    color: #787878;
}
.font12{
    font-size: 12px;
}

::-webkit-scrollbar {
    width: 10px;
}

@media (max-width: 767px) {
    ::-webkit-scrollbar {
        width: 0px;
    }
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #112031;
}

::-webkit-scrollbar-thumb {
    background: #112031 !important;
    border-radius: 22px !important;
    height: 15px !important;
    -webkit-border-radius: 22px !important;
    -moz-border-radius: 22px !important;
    -ms-border-radius: 22px !important;
    -o-border-radius: 22px !important;
}

.shadow {
    background-color: #1e2f38;
    z-index: 15;
    opacity: 0.5;
    transition: all 0.2s ease-out;
    display: none;
}

.shadow.showShadow {
    display: block;
}

/* end primary css */

.nav-header-box {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 122;
    width: 100%;
    height: 80px;
    transition: all 0.3s ease-in-out;
    background-color: white;
    box-shadow: rgba(137, 135, 135, 0.05) -1px 4px 15px 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu-pc {
    width: 100%;
    z-index: 26;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: start;
    position: fixed;
    top: 80px;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768.5px) {
    .nav-menu-pc {
        display: none;
    }
}

.nav-menu a {
    color: #576b6e;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}

.nav-menu-item {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu a:hover {
    color: #112031;
}

/* sub-menu */

.sub-menu {
    position: fixed;
    top: 160px;
    background-color: white;
    box-shadow: rgba(34, 34, 34, 0.05) -1px 4px 15px 3px;
    display: none;
    /* min-width: 200px; */
    width: calc(100% - 50px) !important;
    z-index: 3;
    margin-left: 2.5rem !important;
    max-height: 60dvh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 5px;
}
.sub-menu::-webkit-scrollbar {
    width: 6px;
}
.sub-menu .title {
    padding: 8px 10px;
}

.sub-menu a {
    padding: 8px 10px;
    display: block;
}

.menu-item:hover .sub-menu {
    display: block;
}

/* end sub-menu */
/* nav search btn */
.nav-search-btn {
    white-space: nowrap;
    cursor: pointer;
    color: #787878;
    height: 40px;
    position: relative;
}
@media (max-width: 768.5px) {
    .nav-search-btn {
        width: 91%;
        margin: 0px 20px 20px 20px;
    }
}

.nav-search-btn i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 15px;
    background-color: #112031;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-search-btn input {
    width: 200px;
    padding: 0px 15px 0px 45px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    background-color: rgb(236, 236, 236);
    color: var(--nav-search-btn-color);
}

.logo img {
    width: 100px;
    height: 100px;
}

/* notification */
.notification-img {
    width: 30px;
    height: 30px;
}

.badge {
    position: absolute;
    bottom: 0px;
    right: -8px;
    background-color: red;
    padding: 5px;
    font-size: 14px;
    border-radius: 7px;
    color: white;
}

.notification-box:hover .notification-menu-items {
    display: block;
}

.notification-menu-items {
    min-width: 200px;
    padding: 0px 7px;
    border: none;
    margin-top: -3px;
}

.notification-menu-items a {
    color: #112031;
    padding: 6px;
    margin-top: 4px;
    border-radius: 7px;
    font-size: 14px;
    display: block;
}

.notification-menu-items a:hover {
    background-color: #f3f3f3;
}

/* end notification */

/* login-btn */
.account-btn {
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #112031;
    background-color: white;
    height: 40px;
    border-radius: 12px;
    border: 2px solid #112031;
    transition: all 0.3s ease-in-out;
}

.account-btn:hover {
    color: white;
    background-color: #112031;
}
.login-btn img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.prepend-icon {
    white-space: nowrap;
}

.account-menu-items {
    border: none;
    margin-top: 0px;
    padding: 7px;
}

.account-menu-items a {
    color: #112031;
    padding: 6px;
    margin-top: 4px;
    border-radius: 7px;
    font-size: 14px;
    display: block;
}

.account-menu-items a:hover {
    background-color: #f3f3f3;
}

.notification-box:hover .account-menu-items {
    display: block;
}

/* end account-btn */

/* nav mob */
@media (max-width: 768.5px) {
    .mob1 {
        display: block;
        z-index: 23;
        height: 100vh;
        position: fixed;
        width: 70% !important;
        right: -100%;
        background-color: white;
        box-shadow: rgb(56 56 56 / 5%) -1px 4px 15px 3px;
        overflow-y: scroll;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        margin: 20px 0px !important;
    }
    .nav-menu li {
        width: 90%;
    }
    .nav-menu-item-mob {
        display: flex;
        align-items: center;
    }
    .nav-menu a {
        display: block;
        margin-bottom: 7px;
    }
    .sub-menu-mob {
        background-color: #f1f1f3;
        width: 100% !important;
        display: block !important;
        margin-bottom: 10px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
    }
    .sub-menu-mob a {
        padding: 5px 10px;
    }
    .sub-menu-mob.showsubmenumob {
        max-height: 1000px;
    }
    .chev-icon {
        transition: all 0.3s ease-in-out;
    }
    .rotate-chev {
        transform: rotate(-90deg);
    }

    .showmenu {
        right: 0%;
    }
    .nav-header-box-mob {
        display: none;
    }
}

/* mobile header */
.nav-header-box-mob {
    display: flex;
    align-items: center !important;
    justify-content: space-between !important;
    height: 80px;
    width: 100%;
    z-index: 4;
    background-color: white;
    box-shadow: rgb(56 56 56 / 5%) -1px 4px 15px 3px;
}

.nav-header-box-mob .logo {
    display: flex !important;
    position: relative;
    right: 50%;
    transform: translate(50%);
}

.hamburger-icon {
    position: fixed;
    top: 20px;
    right: 20px;
}

.hamburger-icon div {
    width: 35px;
    height: 5px;
    background-color: var(--main-color);
    margin: 6px 0;
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

/* main */
main {
    padding-top: 160px;
}
@media (max-width: 768px) {
    main {
        padding-top: 80px;
    }
}

.tiphub-intro {
    width: 100%;
    min-height: 300px;
    max-height: 400px;
    background-image: url(../image/slider-4.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px !important;
}

.tiphub-intro-search {
    width: 500px;
    height: 60px;
}
.tiphub-intro-search input {
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    background-color: rgba(255,255,255,.8);
}
/* typewriter */
#typewriter span {
    font-family: "dana-bold" !important;
    font-size: 1.7rem;
}

@media (max-width: 768.5px) {
    .tiphub-intro-search {
        width: 100%;
    }
    /* typewriter */
    #typewriter span {
        font-size: 1.3rem;
    }
}

.title-section {
    font-family: "dana-bold" !important;
    font-size: 1.7rem;
}
@media (max-width: 768.5px) {
    .title-section {
        font-size: 1.3rem;
    }
}

.video-card {
    height: 180px;
    margin-bottom: 7px;
    overflow: hidden;
    border-radius: 0px;
    width: 100%;
    position: relative;
}

.video-card img {
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    outline: none;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    color: white;
    z-index: 2;
    font-size: 25px;
}

.video-card:hover img {
    transform: scale(1.1);
}

.video-category-time {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
}

.video-category-time h6 {
    background-color: #fff;
    border-radius: 3px;
    border-top-right-radius: 0px;
    color: #152d35;
    padding: 3px 10px;
    font-size: 15px;
    z-index: 2;
    height: 25px;
}

.video-category-time .vid-time {
    background-color: #fff;
    border-radius: 3px;
    border-top-left-radius: 0px;
    color: #152d35;
    padding: 3px 10px;
    z-index: 2;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    transition: all 0.3s ease-in-out;
}

.video-card:hover .vid-time {
    display: block;
}
.video-category-time .discount {
    background-color: rgb(221, 11, 11);
    border-radius: 3px;
    border-top-left-radius: 0px;
    color: #fff;
    padding: 3px 10px;
    z-index: 2;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: block;
    transition: all 0.3s ease-in-out;
}
.video-card:hover .discount {
    display: none;
}

.video-card-details {
    position: absolute;
    padding: 0px 6px;
    bottom: 0px;
    width: 100%;
    color: #fff;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-card-details h5 {
    overflow: hidden;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    font-size: 12px;
}

.video-card-details span {
    color: #f1eeee;
}

.article-overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(169, 208, 113, 0), rgba(30, 30, 31, .5));
    border-radius: 7px;
}

.video-card-title {
    overflow: hidden;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    color: #112031;
    font-size: 16px;
    font-family: "dana-medium";
    height: 40px;
}
.video-card-intro {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* blog-slider */
.blog-slider img {
    height: 150px;
}
.blog-slider p {
    font-size: 12px;
    color: #3a3b3b;
    text-align: center;
    margin: 10px 0px;
}
.blog-slider h2 {
    text-align: center;
    font-size: 15px;
    margin: 10px 0px;
    font-weight: bold;
    color: #112031;
    overflow: hidden;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
}

/* end blog-slider */

/* footer */
footer {
    background-color: #112031;
}

.footer-btn {
    padding: 5px 25px;
    background-color: white;
    color: #4b8673;
    border-radius: 6px;
}

footer .news h6 {
    font-size: 14px;
    margin-bottom: 5px;
}

footer .news form {
    position: relative;
    height: 40px;
    width: 200px;
}

footer .news form input {
    height: 100%;
    width: 100%;
    border-radius: 5px;
    font-size: 13px;
    padding: 0px 3px;
}

footer .news form button {
    position: absolute;
    top: 10%;
    left: 0px;
}

.footer-items a {
    color: white;
    font-size: 13px;
    transition: all 0.3s ease-in-out;
    margin: 10px 0px !important;
    display: block;
}

.footer-items a:hover {
    color: wheat;
}

.footer-items .social-media i {
    font-size: 25px;
    margin: 0px 5px;
}

/* all videos page */
.pagination a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #112031 !important;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.pagination a:hover {
    color: yellow;
}

.pagination a.active {
    color: yellow !important;
}

/* video-detail page */

/* video-player */

.video-player-box {
    width: auto;
    height: auto;
    position: relative;
    border-radius: 20px;
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 40px;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: inline;
}

.video-btn {
    padding: 0;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: all 500ms;
    cursor: pointer;
}

.video-btn img {
    width: 90px;
    height: 90px;
}

@media (max-width: 989px) {
    .video-btn img {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 768px) {
    .video-btn img {
        width: 70px;
        height: 70px;
    }
}

.video-btn:focus,
.video-btn:hover,
.video-btn:active {
    text-decoration: none;
    color: white;
}

.video {
    opacity: 1;
    scroll-behavior: unset;
    width: 100%;
    z-index: -1;
}

@media (max-width: 600px) {
    .video {
        margin-top: 10px;
    }
}

.video video {
    border-radius: 20px;
    width: 100%;
}

.video-description {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.close-btn {
    width: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    display: none;
}

.video-poster {
    right: 0;
    top: 0;
    border-radius: 17px;
    object-fit: auto;
}
.video-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(169, 208, 113, 0), rgb(30, 30, 31));
    border-radius: 17px;
}
/* end video */
/* video-details */
.video-title {
    color: #112031;
    font-size: 25px;
    font-family: "dana-medium";
}
.view-like span {
    color: #787878;
}
.view-like i {
    font-size: 18px;
}
.view-like .liked {
    color: red;
}

/* labels */
.labels a {
    margin: 0px 6px;
    color: #4878f2;
}
.comment-area {
    border: 1px solid rgb(207, 205, 205);
    border-radius: 7px;
    outline: none;
}

/* comment */
.user-profile {
    width: 35px;
    height: 35px;
    border-radius: 100%;
}
.comment {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px #e3e1e9;
}
.comment-date-time {
    color: #787878;
    font-size: 14px;
}
.comment-text {
    color: #112031;
    font-size: 14px;
}
.comment-child {
    margin-right: 20px;
}

/* teacher card */
.teacher-profile {
    width: 55px;
    height: 55px;
    border-radius: 100%;
}
.teacher-description {
    font-size: 14px;
    color: #787878;
    text-align: justify;
}
.teacher-social-media {
    font-size: 40px !important;
    margin: 20px 5px;
    color: #112031;
}
.teacher-card {
    position: sticky !important;
    top: 160px;
    transition: all 0.3s ease-in-out;
}
.buy-video-btn {
    background-color: #f4662e;
    color: #fff;
}
.my-video-notif {
    color: #fff;
    background-color: #17ee58;
    text-align: center;
    padding: 5px 0px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

/* login page */
.field {
    position: relative;
    width: 100%;
    text-align: right;
    background: rgba(0, 0, 0, 0.05);
    margin: 10px 0px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    border-radius: 10px;
}
.field i {
    color: #787878;
}
.field input {
    display: flex;
    flex-grow: 1;
    padding: 10px 5px;
    background-color: transparent;
}
.field input::placeholder {
    color: #787878;
    text-align: right;
}
/* social-accunt */
.social-accunt {
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-accunt a {
    display: flex;
    flex-grow: 1;
    border: 1px solid rgb(202, 202, 202);
    padding: 7px 0px;
    border-radius: 5px;
    margin: 0px 3px;
    transition: all 0.3s ease-in-out;
}
.social-accunt a:hover {
    border: 1px solid rgb(88, 87, 87);
}
/* about us page */
.lineh40 {
    line-height: 40px;
    font-size: 18px;
}
.our-team-title {
    font-family: "dana-bold" !important;
    text-align: center;
    margin-bottom: 30px;
}
.aboutus-goals li {
    list-style: decimal !important;
}
.member {
    width: 25%;
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .member {
        width: 50%;
    }
}
.member-img-box {
    width: 170px;
    height: 170px;
    position: relative;
}
.member img {
    width: 170px;
    height: 170px;
    border-radius: 100%;
}
.member-overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 41, 41, 0.4);
    z-index: 1;
    border-radius: 100%;
    opacity: 1;
    transition: all 0.1s ease-in-out;
}
.member-overlay:hover {
    opacity: 0;
}
.member p {
    margin-top: 10px;
}

/* user-panel page */
.user-panel {
    border-radius: 10px;
    border: 1px solid rgb(143, 141, 141);
    padding: 50px 20px;
    position: relative;
}
.user-panel-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.user-panel-field {
    position: relative;
    width: 49%;
    text-align: right;
    background: rgba(0, 0, 0, 0.05);
    margin: 10px 0px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .user-panel-field {
        width: 100%;
    }
}
.user-panel-field i {
    color: #787878;
}
.user-panel-field input {
    display: flex;
    flex-grow: 1;
    padding: 10px 5px;
    background-color: transparent;
}
.user-panel-field input::placeholder {
    color: #787878;
    text-align: right;
    font-size: 15px;
}
.user-panel-profile {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    position: absolute;
    top: -30px;
    right: 60px;
}
.user-panel-profile img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}
.change-profile-btn {
    position: absolute;
    top: -17px;
    right: 140px;
}
.user-details p {
    font-size: 13px;
    color: #787878;
}
.user-details h6 {
    font-size: 14px;
}

/* teachers */

.teachers-item div img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}
.teacher-pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0px;
}
.teacher-email {
    overflow: hidden;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    text-align: justify;
}

.teacher-profile img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.nav-teacher li {
    font-size: 14px;
    color: #112031;
    cursor: pointer;
}
.teacher-section {
    display: none;
    opacity: 0;
}
.teacher-section.active {
    display: block;
    opacity: 1;
    animation: fadeInOut 0.5s ease;
    -webkit-animation: fadeInOut 0.5s ease;
}
@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* why-tiphub */
.why-tiphub-container{
    height: fit-content !important;
}
.why-tiphub-header {
    position: relative;
}
.why-tiphub-header img {
    width: 100%;
    height: 450px;
    object-fit: fill;
}
@media (max-width: 768px) {
    .why-tiphub-header img {
        height: 200px;
    }
}
.why-tiphub-header .why-tiphub-title {
    position: absolute;
    bottom: 70px;
    color: white;
}
.why-tiphub-des {
    position: absolute;
    bottom: 30px;
    color: white;
}
.why-tiphub li {
    color: #112031;
    font-size: 15px;
    line-height: 25px;
    margin: 12px 0px;
    list-style: circle !important;
}

/* blogs */
.blogs-item {
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 4px #e3e1e9;
    display: block;
    padding-bottom: 6px;
    height: 230px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.blogs-item img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    width: 100%;
    height: 150px;
}
.blogs-item .blog-category {
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: #112031;
    color: #fff;
    font-size: 13px;
    padding: 3px 6px;
}
.blogs-item h1 {
    font-size: 15px;
    font-weight: bold;
    color: #112031;
    margin: 25px 7px;
    overflow: hidden;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

/* filter-videos-form */

.filter-videos-form .orderby {
    height: 40px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: #e8e5f6;
    font-size: 16px;
    border: none;
    padding: 5px;
}

@media (max-width:768.5px) {
    .filter-videos-form .orderby {
        font-size: 13px;
    }
}

/* playlists page */

.playlist-card{
    height: 80px;
}
.playlist-card img {
    width: 140px;
    height: 80px;
}
.playlist-card .playlist-desc-item{
    font-size: 13px;
    font-weight: bold;
    color: #112031;
}