.sticky {
    position: fixed;
    width: 100%;
    top: 0;
}

.logo {
    /* width: 200px; */
}

.edemy-nav .navbar .navbar-nav .nav-item a {
    font-size: 14px;
}

.bx {
    font-size: 18px;
}

.default-btn {
    font-size: 14px;
    padding: 10px 10px 10px 10px;
}

#navbar .default-btn i {
    position: relative;
    top: 3px;
}

.edemy-nav .navbar .others-option {
    margin-top: 5px;
}

.glowing {
    background-color: #fdc800;
    color: #fff !important;
    line-height: 18px !important;
    border: 1px solid #fdc800;
    border-radius: 5px;
    border-width: 2px;
    font-weight: 600;
}

.glowing {
    animation: glowing 1500ms infinite;
}

@keyframes glowing {
    0% {
        background-color: #002147;
        box-shadow: 0 0 5px #002147;
        border: 2px solid #002147;
    }

    50% {
        background-color: #fdc800;
        box-shadow: 0 0 20px #fdc800;
        border: 2px solid #fdc800;
        color: #000 !important;
    }

    100% {
        background-color: #002147;
        box-shadow: 0 0 5px #002147;
        border: 2px solid #002147;
    }
}

.single-footer-widget h4 {
    margin-bottom: 20px;
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-top: 20px;
}

.blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    bottom: auto !important;
    transform: translateY(-50%);
}

.swiper-pagination-bullet-active {
    background: #fdc800;
    border: 6px solid #fdc800;
}

.faq-accordion-tab .tabs {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 60px;
    text-align: center;
}

.faq-accordion-tab .tabs li {
    margin-left: 10px;
    margin-right: 10px;
}

.faq-accordion-tab .tabs li.current a {
    background-color: #fdc800;
}

.faq-accordion-tab .tabs li.current a {
    color: #ffffff;
}

.faq-accordion-tab .tabs li a {
    color: #221638;
    text-decoration: none;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    -webkit-box-shadow: 2px 8px 20px 0 rgba(25, 42, 70, 0.13) !important;
    box-shadow: 2px 8px 20px 0 rgba(25, 42, 70, 0.13) !important;
    font-size: 16px;
    font-weight: 800;
}

.faq-accordion-tab .tabs li a i {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}

.tab .tabs-item:first-child {
    display: block;
}

.faq-accordion .accordion {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
    border-radius: 5px;
    display: block;
    -webkit-box-shadow: 2px 8px 20px 0 rgba(25, 42, 70, 0.13) !important;
    box-shadow: 2px 8px 20px 0 rgba(25, 42, 70, 0.13) !important;
    background: #ffffff;
    margin-bottom: 15px;
}

.faq-accordion .accordion .accordion-title {
    padding: 20px 25px 17px 60px;
    color: #221638;
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 17px;
    font-weight: 800;
}

.faq-accordion .accordion .accordion-title.active i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-accordion .accordion .accordion-content.show {
    display: block;
}

.faq-accordion .accordion .accordion-content {
    display: none;
    position: relative;
    margin-top: -5px;
    padding-bottom: 20px;
    padding-right: 25px;
    padding-left: 60px;
}

.faq-accordion .accordion .accordion-content p {
    line-height: 1.8;
}

.mysticky-welcomebar-fixed {
    background: #161457;
    color: #ffffff;
    text-align: center;
}

.mysticky-welcomebar-fixed-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.mysticky-welcomebar-content p {
    margin-bottom: 0;
    margin-right: 20px;
    line-height: normal;
    font-weight: 600;
    color: #fff;
}

.mysticky-welcomebar-btn a {
    background: #000;
    padding: 8px;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
}

.skew-shake-y {
    animation: skew-y-shake 1.3s infinite;
}

@keyframes tilt-shaking {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0eg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes tilt-n-move-shaking {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(5px, 5px) rotate(5deg);
    }

    50% {
        transform: translate(0, 0) rotate(0eg);
    }

    75% {
        transform: translate(-5px, 5px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes vertical-shaking {
    0% {
        transform: translateY(0)
    }

    25% {
        transform: translateY(5px)
    }

    50% {
        transform: translateY(-5px)
    }

    75% {
        transform: translateY(5px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes horizontal-shaking {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(5px)
    }

    50% {
        transform: translateX(-5px)
    }

    75% {
        transform: translateX(5px)
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes jump-shaking {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateY(-9px)
    }

    35% {
        transform: translateY(-9px) rotate(17deg)
    }

    55% {
        transform: translateY(-9px) rotate(-17deg)
    }

    65% {
        transform: translateY(-9px) rotate(17deg)
    }

    75% {
        transform: translateY(-9px) rotate(-17deg)
    }

    100% {
        transform: translateY(0) rotate(0)
    }
}

@keyframes skew-x-shake {
    0% {
        transform: skewX(-15deg);
    }

    5% {
        transform: skewX(15deg);
    }

    10% {
        transform: skewX(-15deg);
    }

    15% {
        transform: skewX(15deg);
    }

    20% {
        transform: skewX(0deg);
    }

    100% {
        transform: skewX(0deg);
    }
}

@keyframes skew-y-shake {
    0% {
        transform: skewY(-15deg);
    }

    5% {
        transform: skewY(15deg);
    }

    10% {
        transform: skewY(-15deg);
    }

    15% {
        transform: skewY(15deg);
    }

    20% {
        transform: skewY(0deg);
    }

    100% {
        transform: skewY(0deg);
    }
}

#bottom_popup {
    min-width: 120px;
    max-height: 496px;
    max-width: 100%;
    border-style: solid;
    border-color: inherit;
    border-width: 0px;
    padding: 30px;
    width: 432px;
    background-image: url('../images/popup_bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgb(255 255 255);
    box-shadow: rgb(204 204 204) 0px 0px 0px 0px;
    overflow: auto;
    text-align: center;
    border-radius: 5px 5px 0px 0px;
    padding-bottom: 20px !important;
    display: none;
    position: fixed;
    top: auto !important;
    left: 0 !important;
    z-index: 999999999;
    bottom: 0 !important;
}

.popup_inner {}

.close {
    position: relative;
    top: -20px;
    right: -20px;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.popup_inner h3 {
    font-size: 14px;
}

.popup_inner h2 {
    font-size: 21px;
    font-weight: 700;
}

.popup_inner h2 a {
    color: #262626;
}

.active-date {
    background: #1d1d1b;
    color: #fff;
    font-weight: 700;
    padding: 10px;
    font-size: 13px;
    margin-bottom: 15px;
}

.date-blink {
    animation: blinker .6s linear infinite;
    color: #fdfdfd;
    font-size: 14px;
    font-weight: 800;
    background: #ff0002;
    padding: 0px 10px;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.popup-button {
    background: #fff;
    padding: 10px 40px;
    border-radius: 20px;
    color: #ff0002;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0px 0px 4px #c9c9c9;
}

.popup-para {
    font-size: 11px;
    line-height: 20px;
    margin-bottom: 0px;
}

.top-nav-btn-icon i {
    margin-top: 4px;
}

.blog-featured {
    text-align: left;
    margin-bottom: 20px;
    padding: 0px 0px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.main-banner.pb40 {
    padding-top: 30px;
}

.myClose {
    position: absolute;
    top: 40px;
    right: 10px;
    background: #ff0002;
    padding: 0px 11px 2px 11px;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    line-height: 31px;
    cursor: pointer;
    font-family: monospace;
}

.top-ratings {
    display: flex;
    gap: 20px;
}

.rating-box {
    flex: 1;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

/* ICON */
.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

/* brand colors */
.orange {
    background: #ff7a00;
}

.red {
    background: #ff3b30;
}

.green {
    background: #00b67a;
}

/* TEXT */
.rating-content {
    flex: 1;
    margin-left: 0px;
}

.title {
    font-size: 14px;
    color: #4b5563;
    display: block;
    margin-bottom: 3px;
}

/* stars */
.stars {
    color: #FDC800;
    font-size: 12px;
}

/* SCORE */
.score {
    font-size: 22px;
    font-weight: 700;
    color: #ff3b30;
}

/* Ratings */
.ratings {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.my-slider {
    padding: 10px;
    border: 1px solid #e5e7eb;
    margin-top: 10px;
    border-radius: 10px;
}

.stars i.fa-solid.fa-star {
    font-size: 12px;
}

.rating-box strong {
    color: #FDC800;
    font-size: 18px;
}

/* Layout */
.content {
    display: flex;
    gap: 30px;
}

/* LEFT SIDE */
.left {
    flex: 1;
    background: white;
    padding: 0px 0px;
    border-radius: 10px;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-item p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    color: #002147;
    font-weight: 500;
}

.bar {
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.bar div {
    height: 100%;
    background: #161457;
}

/* RIGHT SIDE */
.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cards1 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card1 {
    display: flex;
    gap: 15px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px;
    flex-direction: row;
}

/* avatar */
.avatar {
    width: 55px;
    height: 55px;
    background: #e9edf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdc800;
    font-size: 20px;
}

/* content */
.card-content {
    flex: 1;
}

/* top section */
.top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.top h3 {
    font-size: 18px;
    color: #002147;
    margin-bottom: 3px;
}

.top p {
    font-size: 14px;
    color: #555;
}

/* rating */
.rating {
    text-align: right;
}

.stars {
    color: #FDC800;
    font-size: 14px;
    display: flex;
}

.score {
    font-size: 18px;
    font-weight: 600;
    color: #002147;
}

.rating .score {
    font-size: 16px;
    font-weight: 700;
    color: #5c5c5c;
}

.rating .stars {
    color: #FDC800;
    font-size: 12px;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

/* bottom */
.bottom {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #6b7280;
}

.bottom i {
    margin-right: 5px;
}

/* satisfaction icon highlight */
.satisfaction i {
    color: #FDC800;
}

.meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #444;
}

.wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0px 0px;
}

/* TABS */
.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    border-radius: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
    background: #fff;
    color: #666;
}

.tab-btn.active {
    background: #161457;
    color: #fff;
    border: none;
}

/* GRID */
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ORDER ITEM */
.order-item {
    display: flex;
    gap: 15px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px;
}

.order-avatar {
    width: 55px;
    height: 55px;
    background: #e9edf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdc800;
    font-size: 20px;
}

.order-content {
    flex: 1;
}

/* TOP */
.order-top {
    display: flex;
    justify-content: space-between;
}

/* LEFT */
.order-left {
    flex: 1;
}

.order-name {
    font-size: 18px;
    font-weight: 700;
    color: #002147;
}

.order-sub {
    font-size: 14px;
    color: #555;
    margin-top: 4px;
}

/* RIGHT */
.order-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.order-stars {
    color: #FDC800;
    font-size: 20px;
}

.order-rating {
    font-size: 13px;
    font-weight: 600;
    color: #002147;
}

.order-rating i {
    color: #ff3b30;
}

.order-deadline {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

/* BOTTOM */
.order-bottom {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* BUTTONS */
.actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background: #e50914;
    color: #fff;
}

.btn-dark {
    background: #111;
    color: #fff;
}

/* TAB CONTENT */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* GRID */
.features {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* LEFT TEXT */
.features-left h1 {
    font-size: 42px;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.features-left p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn {
    background: #e50914;
    color: #fff;
    padding: 14px 25px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
}

/* BOXES */
.box {
    background: #eee8e2;
    border-radius: 12px;
    padding: 25px;
}

.box h3 {
    text-align: center;
    color: #002147;
    margin-bottom: 15px;
    font-weight: 900;
    font-size: 20px;
    font-family: Nunito, sans-serif;
}

/* LIST */
.list {
    list-style: none;
}

.list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 15px;
}

/* LEFT ITEM */
.item-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
}

.item-left i {
    color: #22c55e;
}

/* PRICE */
.price {
    color: #002147;
    font-weight: 600;
}

/* FREE BOX */
.free-box {
    background: #e9edf5;
}

/* FREE HEADER */
.free-top {
    text-align: center;
    margin-bottom: 15px;
}

.free-top span {
    color: #002147;
    font-weight: 700;
}

/* .free-top small {
    color: #999;
} */

/* OLD PRICE */
.old {
    color: #002147;
    text-decoration: line-through;
    margin-right: 8px;
}

/* FREE TAG */
.free-tag {
    background: #fdc800;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.features-left h2 {
    text-align: left;
}

.mbot30 {
    margin-bottom: 30px !important;
}

.trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

.trust-mini {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0px 10px;
    border-radius: 30px;
    font-size: 14px;
    color: #0b2a4a;
    background: rgb(254 248 239);
    border: 1px solid rgb(255 0 0 / 25%);
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
    width: fit-content;
}

.trust-mini:hover {
    background: #fff;
    transform: translateY(-3px);
}

.trust-mini .icon {
    font-size: 14px;
    width: 20px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
}

.trust-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: #0b2a4a;
    background: rgb(254 248 239);
    border: 1px solid rgb(255 0 0 / 25%);
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
    width: fit-content;
}

.trust-mini:hover {
    background: #fff;
    transform: translateY(-3px);
}

.trust-mini .icon {
    display: flex;
    align-items: center;
}

.trust-mini b {
    color: #f4c400;
}

.trust-mini b {
    color: #f4c400;
}

/* RESPONSIVE */
@media(max-width:900px) {
    .features {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media(max-width:900px) {
    .order-grid {
        grid-template-columns: 1fr;
    }
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .top-ratings {
        flex-direction: row;
        gap: 5px;
    }

    .top {
        flex-direction: column;
    }

    .bottom {
        flex-direction: column;
    }

    .rating .stars {
        justify-content: flex-start;
    }

    .order-top {
        flex-direction: column;
    }

    .order-right {
        align-items: flex-start;
    }

    .tabs {
        gap: 10px;
    }

    .main-banner-courses-list {
        padding: 0 20px;
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 22px;
    }

    .rating-box {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 1199px) {
    .navbar-area {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #logged-out-navbar .navbar-splash .secondary-nav {
        height: auto !important;
    }
}

@media (max-width: 991px) {
    .edemy-nav .navbar .others-option {
        position: relative;
        top: 0;
        right: 0;
    }

    .navbar-nav {
        margin: 7.5px 0px;
    }

    .edemy-nav .navbar .others-option .option-item .default-btn {
        width: 100%;
    }

    .edemy-nav .navbar .navbar-collapse {
        margin-top: 0px;
        width: 100%;
    }

    .navbar {
        display: inline-block;
        width: 100%;
    }

    .navbar-light .navbar-toggler {
        float: right;
        margin-top: 20px;
    }

    .collapse:not(.show) {
        display: none !important;
    }

    .edemy-nav .navbar .others-option {
        width: 100%;
    }

    .edemy-nav .navbar .navbar-nav {
        width: 100%;
    }

    .edemy-nav .navbar .navbar-collapse {
        overflow-y: scroll !important
    }
}

@media (max-width: 767px) {
    .default-btn i {
        left: 5px;
    }
}

@media (max-width: 991px) and (min-width: 767px) {
    .my-hide .navbar-splash {
        display: none !important;
    }
}
@media (max-width: 480px) {
    .trust-inline{
        justify-content: center;
    }
    .icon{
        display: none;
    }
    .title {
        font-size: 12px;
    }
    .stars i.fa-solid.fa-star{
        font-size: 8px;
    }
    .score {
        font-size: 16px;
    }
}