:root {
    --teal: #0C5D52;
    --main-color: #C3AB6D;
    --dark-navy-blue: #0f2239;
    --bs-dark: #232323;
    --border-color: #e2e8f0;
}

::selection {
    color: white;
    background-color: var(--main-color);
}

body {
    font-size: 15px;
    font-family: "Jost", "Changa", sans-serif;
}

a,
a:hover,
.nav-link,
.nav-link:hover {
    font-size: inherit;
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

input[type="password"] {
    font-family: monospace;
    font-size: 12px;
}

[dir=rtl] [type=email],
[dir=rtl] [type=number],
[dir=rtl] [type=tel],
[dir=rtl] [type=url] {
    direction: rtl;
}

/*  =======================================================================
    ============    Topbar     ============================================
*/
.topbar {
    font-size: 14px;
    color: rgb(207, 207, 207);
    background-color: var(--dark-navy-blue);
}

.topbar-inner-content {
    display: flex;
    align-items: center;
}

.topbar-inner-content>div a {
    gap: 9px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    height: 100%;
}

.topbar a:not(.dropdown-item):hover {
    opacity: 1;
    color: white;
}

.topbar a:hover svg {
    color: var(--main-color)
}

.topbar-inner-content>div a:not(.dropdown-item) {
    border-right: 1px solid #384554;
    padding: 10px 16px;
}

.topbar-inner-content>div a:hover svg {
    color: white;
    transition: 0.3s ease;
}

.topbar-inner-content>div svg {
    color: inherit;
}

.topbar-inner-content .topbar-social {
    display: flex;
    height: 42px;
}

.topbar-search .form-control {
    background-color: rgb(255 255 255 / 5%);
    border: none;
    border-radius: 0;
    font-size: 13px;
    height: 42px;
}

.topbar-search form {
    position: relative;
}

.topbar-search form .form-control::placeholder {
    color: #b7b7b7;
}

.topbar-search form .form-control:focus {
    background-color: #fff;
}

.topbar-search form svg {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}

[dir=rtl] .topbar-search form svg {
    right: auto;
    left: 12px;
}

.login-button {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

/*  =======================================================================
    ============    Navbar    =============================================
*/
.navbar {
    color: white;
    background-color: #009688;
    padding: 24px 0;
    --bs-navbar-toggler-icon-bg: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"><path fill="%23fff" d="M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1m0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1M3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1" /></svg>');
    transition: transform 0.3s ease-in-out;
    width: 100%;
}

@media (min-width: 992px) {
    .dropdown-menu.mega-menu {
        left: 0;
        width: 100%;
        padding: 8px 26px;
    }

    .navbar-scroll-show-hide {
        position: sticky;
        top: 0;
        z-index: 10;
        transition: transform 0.3s ease-in-out;
        left: 0;
        right: 0;
        width: 100%;
    }

    .navbar-scroll-show-hide.navbar-hidden {
        transform: translateY(-100%);
    }
}


@media(max-width: 992px) {
    .navbar {
        padding: 8px 0;
    }
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.navbar-nav .nav-link::before {
    position: absolute;
    content: '';
    height: 2px;
    left: 50%;
    width: 0;
    background-color: white;
    transform: translateX(-50%);
    bottom: 0;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: white;
    font-weight: 600;
}

.navbar-nav .nav-item:hover .nav-link::before,
.navbar-nav .nav-item:hover .nav-link:active::before,
.navbar-nav .nav-item:hover .nav-link.active::before {
    width: 20px;
}

.navbar-brand,
.navbar-brand:hover {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: white;
}

.navbar-brand .icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-content: center;
    border-radius: 18px 0 18px 0;
    background: #ffffff;
}

@media (max-width: 992px) {

    .offcanvas .nav-link,
    .offcanvas .nav-link.active {
        color: #222;
        border-bottom: 1px dashed #e3e3e3;
        padding-bottom: 16px;
        transition: 0.3s ease;
    }

    .offcanvas .nav-link:hover {
        padding-left:16px;
    }

    .offcanvas .navbar-nav {
        margin: 0 !important;
    }
}

.offcanvas-header {
    display: flex;
    align-items: center;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    background-color: #009688;
}

.mega-menu {
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0;
    padding: 8px 26px;
}

.mega-menu {
    position: absolute;
    background-image: url('./../images/others/menu.jpg');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-origin: content-box;
    background-size: 550px;
}

[dir=rtl] .mega-menu {
    background-position: left bottom;
}

.mega-menu .col-md {
    min-width: 200px;
}


.dropdown-menu.mega-menu h6 {
    margin-bottom: 15px;
    font-size: 19px;
    text-transform: capitalize;
}

.dropdown-menu.mega-menu ul li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 12px;
}

.dropdown-menu.mega-menu ul li:hover a {
    background-color: transparent;
    color: var(--main-color);
}

.dropdown-menu.mega-menu ul {
    margin-bottom: 24px;
}


.dropdown-menu.mega-menu ul li::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    border: 5px solid transparent;
    border-left-color: #0000003b;
}

[dir=rtl] .dropdown-menu.mega-menu ul li::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    border: 5px solid transparent;
    border-right-color: #0000003b;
}

.dropdown-menu.mega-menu ul li:hover::before {
    border-left-color: var(--main-color);
}

[dir=rtl] .dropdown-menu.mega-menu ul li:hover::before {
    border-right-color: var(--main-color);
    border-left-color: transparent;
}

/*  =======================================================================
    ============    Hero    ===============================================
*/
.hero {
    background-image: url("./../images/sections/hero-bg.png");
    background-position: bottom;
    background-repeat: no-repeat;
}

@media (max-width: 992px) {
    .hero-text-content h2 {
        font-size: 30px !important;
        margin: 4px 0;
    }

    .hero-text-content p {
        margin-top: 24px;
    }

    .hero-text-content h6 {
        font-size: 18px !important;
        font-weight: 400;
    }

    .hero-text-content h2 span {
        display: block;
    }

    .hero img {
        width: 100%;
    }
}

.hero-text-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 767px) {
    .hero-text-content {
        margin-top: 79px;
        height: auto;
        margin-bottom: 32px;
    }
}

.hero-text-content h6 {
    font-size: 20px;
    margin-top: -100px;
    margin-bottom: 16px;
}

.hero-text-content h2 {
    font-size: 64px;
    font-weight: 700;
    font-family: serif;
    text-transform: capitalize;
}

.steps h3 {
    font-size: 48px;
    font-family: serif;
    font-weight: 700;
}

[dir=rtl] .section-title,
[dir=rtl] .steps h3,
[dir=rtl] .hero-text-content h2,
[dir=rtl] .contact-info-details h2 {
    font-family: 'Changa';
}

.hero-text-content h2 span {
    color: var(--main-color)
}

.hero-text-content p {
    font-size: 16px;
    margin-top: 10px;
}

.typer-text::after {
    content: '|';
    animation: blink 0.8s infinite;
    margin-left: 2px;
    color: #000;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/*  =======================================================================
    ============    Features Cards    =====================================
*/
.features {
    margin-top: -90px;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 158px;
    background-color: #f8fafc;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.featured-card {
    padding: 18px;
    height: 230px;
    display: grid;
    text-align: center;
    place-content: center;
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.featured-card .icon {
    margin-bottom: 24px;
}

/*  =======================================================================
    ============    Static Cards    =======================================
*/
.static-card {
    padding: 24px 0;
}

.static-section {
    padding: 48px;
    background-color: var(--dark-navy-blue);
    color: white;
}

.static-card .number {
    font-size: 43px;
    font-weight: 700;
    color: white;
}

.home-static .web-static-card .number {
    font-size: 43px;
    font-weight: 700;
    color: black;
}

.static-card .number .plus {
    font-size: 24px;
    font-weight: 300;
    margin-left: -7px;
}

.statistics {
    padding: 16px 0;
    background-color: #f8fafc;
}

.statistics p a {
    color: var(--teal);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .static-card {
        text-align: center;
    }

    .statistics p {
        text-align: center;
    }
}

.web-static-section {
    background-color: black;
    padding: 24px !important;
}

.web-static-section .odometer {
    font-size: 41px;
    font-weight: 700;
    font-family: 'Jost';
    margin-right: 6px;
}

.web-static-section .web-static-card>* {
    color: white;
}

@media (max-width: 567px) {
    .web-static-card {
        margin-bottom: 32px;
        text-align: center;
    }
}

/*  =======================================================================
    ============    Global Section Style    ===============================
*/
.section {
    padding: 90px 0;
}

.section.about {
    position: relative;
    padding: 90px 0;
}

f .section.about::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
    display: flex;
}

.section.about::before {
    top: 0;
    background: url(./../images/zigzag-gray.png);
    height: 25px;
}

.crosshair {
    cursor: crosshair;
}

.section-image {
    position: relative;
}

.section-subtitle {
    display: inline-flex;
    background: linear-gradient(90deg, var(--main-color) 0%, var(--main-color) 0%, transparent 90%);
    padding: 16px 24px;
    border-radius: 100px;
    text-transform: uppercase;
}

[dir=rtl] .section-subtitle {
    display: inline-flex;
    background: linear-gradient(90deg, #ffb80000 0%, transparent 0, #c3ab6d 90%);
    padding: 16px 24px;
    border-radius: 100px;
    text-transform: uppercase;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    font-family: serif;
    margin: 16px 0 24px;
}

[dir=rtl] .section-title {
    font-family: 'Changa';
}

.section-title span {
    color: var(--main-color);
}

@media(max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
}

.blockquote {
    border-left: 5px solid var(--main-color);
    padding-left: 16px;
    font-size: 16px;
    line-height: 30px;
    margin: 24px 8px;
}

.media-object {
    gap: 16px;
}

.media-object .text-content h6 {
    margin: 0;
    font-size: 18px;
}

.media-object .icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    background-color: white;
    border-radius: 50%;
    color: var(--main-color);
    border: 1px solid;
}

.media-object .text-content span:first-of-type {
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
}

.float-image {
    transition: transform 0.2s ease-out;
    will-change: transform;
    position: absolute;
    z-index: -1;
}

.float-image.dots {
    left: 10%;
    bottom: 0;
}

.float-image.circle {
    left: 35%;
    top: -30px;
}

.float-video {
    position: absolute;
    bottom: 20px;
    right: 50px;
    background-color: white;
    padding: 24px;
    border-radius: 13px;
    box-shadow: 0 10px 40px rgb(0, 0, 0, 0.1);
}

.float-video img {
    filter: brightness(0.5);
}

.float-video button {
    position: absolute;
    top: 45%;
    left: 50%;
    background-color: white;
    border: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.float-video button svg {
    color: var(--teal);
}

.float-video button::before,
.float-video button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    animation: pulse 1.5s infinite ease-in-out;
    z-index: -1;
}

.float-video button::after {
    animation-delay: 0.75s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.skelton-full,
.skelton-quarter {
    display: block;
    width: 100%;
    height: 7px;
    background-color: #f1f5f9;
    margin: 10px 4px;
    border-radius: 50px;
}

.skelton-quarter {
    width: 45%;
}

.hover-underline:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .about .section-image img {
        width: 100%;
        margin-bottom: 42px;
    }
}

/*  =======================================================================
    ============    Index: Steps Section    ===============================
*/
.steps {
    background: url("./../images/sections/steps.png");
    text-align: center;
    background-size: contain;
}

@media (max-width: 992px) {
    .steps {
        background-image: none;
        background-color: var(--main-color);
    }
}

.steps h6 {
    font-size: 24px;
}

.steps h3 {
    font-size: 48px;
    font-family: serif;
    font-weight: 700;
}

[dir=rtl] .section-title,
[dir=rtl] .steps h3 {
    font-family: 'Changa';
}

.steps-row {
    position: relative;
    margin: 16px auto;
}

@media (max-width: 992px) {
    .steps-row {
        width: 100%;
    }
}

.steps-row::before {
    /* content: ''; */
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: black;
    left: 0;
    top: 24%;
}

.step-card {
    position: relative;
    padding: 16px;
    border-radius: 12px;
}

.step-card h2 {
    font-weight: 700;
    font-size: 100px;
    font-family: 'Changa';
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px;
    text-shadow: 5px 4px rgb(0 0 0 / 14%);
}

@media (min-width: 992px) {

    .steps-row .step-card::before {
        content: '';
        position: absolute;
        width: 100px;
        height: 2px;
        background-color: #000000;
        right: -60px;
        top: 25%;
    }

    .steps-row .row>div:last-of-type .step-card::before {
        content: none;
    }
}

/*  =======================================================================
    ============    Index: Categories Section:   ==========================
*/
.category-item {
    border: 1px solid #e2e8f0;
    padding: 32px;
    min-height: 290px;
    border-radius: 12px;
    margin-bottom: 32px;
    transition: 0.3s ease;
}

.category-item:hover {
    background-color: #00968824;
    border-color: #009688;
}

.category-item:hover a {
    color: #009688;
}

.category-item:hover a svg {
    color: #009688;
}

.category-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.category-item h6 {
    font-size: 24px;
    margin: 16px 0;
}

.category-item p {
    font-size: 15px;
    text-transform: capitalize;
    line-height: 24px;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -o-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.category-item a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    transition: 0.3s ease;
    font-weight: 500;
    color: var(--teal);
    margin-top: 15px;
}

.category-item a svg {
    color: var(--teal);
}

.category-item a:hover {
    color: var(--dark-navy-blue);
}

.categories .section--image {
    height: 370px;
}

.categories {
    position: relative;
}

/*  =======================================================================
    ============    Index: Popular Courses    =============================
*/
.popular-courses {
    background-color: #F8FAFC;
    z-index: 1;
    position: relative;
}

.popular-course-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.popular-course-card .card-details {
    padding: 24px;
    border: 1px solid #f1f5f9;
    height: 60%;
    display: flex;
    flex-direction: column;
}

.popular-course-card .card-details p {
    /* border-top: 1px solid #e2e8f08a; */
    /* padding-top: 12px; */
    /* margin-top: 12px; */
    margin-bottom: 30px;
    color: #62748e;
}

.popular-course-card .card-details .course-title {
    margin: 8px 0;
}

.popular-course-card .card-details .course-title a {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    background: linear-gradient(var(--teal) 0, var(--teal) 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    transition: all .4s ease;
}

.popular-course-card .card-details a:hover {
    background-size: 100% 2px;
}

.popular-course-card .card-details .meta-category {
    background-color: rgb(195 171 109 / 8%);
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 2px;
    color: #c3ab6d;
}

.star-rates {
    position: relative;
    width: 90px;
    height: 16px;
    background-image: url(./../images/others/stars-gray.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
}

.star-rates span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-image: url(./../images/others/stars-fill.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.rate-value {
    font-size: 12px;
    margin-left: 12px;
    font-weight: 500;
}

[dir=rtl] .rate-value {
    margin-left: 0;
    margin-right: 12px;
}

.price {
    margin: 10px 0;
    font-size: 25px;
    font-weight: 700;
    color: #F44336;
}

.price .del {
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 400;
    color: gray;
    margin-left: 5px;
}

.course-info {
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.course-info>div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-thumbnail-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-thumbnail-image span {
    position: absolute;
    right: 12px;
    top: 12px;
    background-color: #ffffffd9;
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 500;
    z-index: 1;
}

.card-thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.popular-course-card:hover .card-thumbnail-image img {
    transform: rotate(5deg) scale(1.2);
}


/*  =======================================================================
    ============    Index: Contact Us    ========================
*/
.contact-us {
    position: relative;
    padding-top: 0;
    z-index: 1;
}

.contact-us::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 90px;
    background-color: #f8fafc;
    top: 0;
    z-index: -1;
}

.contact-us .contact-info-box {
    background-color: var(--teal);
    padding: 24px;
    width: 70%;
    margin: 0 auto;
    border-radius: 500px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 140px;
    position: relative;
}

.contact-us .contact-info-box .circle-dots {
    position: absolute;
    left: -30px;
    top: -30px;
}

.contact-us .contact-info-box .circle-fill {
    position: absolute;
    right: -30px;
    top: -30px;
    z-index: -1;
}

.contact-us .contact-info-box h6 {
    font-weight: 300;
    font-size: 14px;
}

.contact-us .contact-info-box h4 {
    font-size: 17px;
    font-weight: 400;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-us .contact-info-box .or {
    background-color: white;
    color: black;
    width: 64px;
    height: 64px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    font-size: 19px;
    border: 2px solid #009688;
    outline: 2px dotted #fff;
}

/*  =======================================================================
    ============    Index: Testimonials Section    ========================
*/
.testi-section-title h6 {
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.testi-section-title h3 {
    font-size: 29px;
    margin-top: 6px;
    text-transform: capitalize;
    margin-bottom: 54px;
}

.testi-section-title h3 span {
    color: var(--main-color);
}

.testi-section-title .reviews {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.testi-section-title .reviews span {
    font-size: 16px;
}

.testi-section-title .reviews .star-rates {
    margin-left: 12px;
}

.testi-card-item {
    border: 1px solid #ddd;
    padding: 32px;
    border-radius: 12px;
    position: relative;
    min-height: 260px;
}

.testi-card-item p {
    margin-top: 12px;
    margin-bottom: 32px;
}

.testi-card-item p {
    margin-top: 20px;
    margin-bottom: 32px;
}

.testi-card-item .author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testi-card-item .author .info h6 {
    font-size: 17px;
    margin: 0;
}

.testi-card-item svg {
    position: absolute;
    right: 0;
}

.testi-card-item svg {
    position: absolute;
    right: 10px;
    bottom: 0;
    opacity: 0.03;
}

.testi-card-item .testi-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testi-card-item .testi-card-header .author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.testi-card-item .testi-card-header .author h6 {
    font-size: 16px;
}

.testi-card-item .testi-card-header .author span {
    font-size: 13px;
}

.owl-carousel .owl-stage-outer {
    padding: 12px 0;
}

/*  =======================================================================
    ============    Index: Our Team Work    ===============================
*/
.team-card {
    position: relative;
    overflow: hidden;
}

.team-card-image {
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 6px;
}

.team-card:hover .team-card-info {
    bottom: 0;
}

.team-card-info {
    width: 75%;
    padding: 16px;
    bottom: 0;
    position: absolute;
    transition: 0.3s ease;
    background-color: white;
}

.team-card-info h5 {
    margin: 0;
}

.team-card-info small {
    margin-bottom: 8px;
    display: block;
}

.team-card-info .socials .social-item {
    display: inline-grid;
    place-content: center;
    width: 34px;
    height: 29px;
    border-radius: 4px;
    color: #c0c0c0;
    background-color: #f3f3f3;
}

.team-card-info .socials .social-item:hover {
    background-color: var(--teal);
    color: white;
}

.owl-nav {
    gap: 12px;
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: start;
}

.owl-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-grid;
    place-content: center;
    font-size: 20px !important;
    box-shadow: 1px 2px 0 0 var(--main-color);
    border: 1px solid var(--main-color) !important;
}

.owl-nav button:hover {
    box-shadow: none;
    background-color: rgb(195 171 109 / 20%) !important;
}

/*  =======================================================================
    ============    Index: Price Section    ===============================
*/
.pricing-plane {
    background-color: #f8fafc;
}

.price-card {
    background-color: white;
    padding: 62px 32px;
    border-radius: 8px;
    border: 1px solid black;
    box-shadow: 5px 5px 0 0 var(--main-color);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-plane .row {
    width: 85%;
    margin: 64px auto 0;
}

.price-card h6 {
    text-transform: uppercase;
    display: flex;
}

.price-card h6 span {
    margin-left: auto;
    font-size: 13px;
    color: var(--main-color);
}

.price-card .price span {
    color: var(--main-color);
    font-size: 48px;
    font-weight: 600;
}

.price-card .price small {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    display: inline-block;
    font-size: 16px;
    opacity: 0.5;
    text-decoration: line-through;
}

.price-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
    padding: 8px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.price-card ul li svg {
    color: var(--main-color);
}

.price-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    background-color: transparent;
    color: black;
    margin-top: auto;
}

.price-card .btn:hover {
    background-color: var(--main-color);
    color: white;
}

.price-card.recommended {
    background-color: var(--teal);
    color: white;
}

.price-card.recommended small {
    color: white;
}

.price-card.recommended .btn {
    color: white;
}

/*  =======================================================================
    ============    Index: Blog Section    ================================
*/
.blog-page {
    background-color: #f5f6f7;
    padding-top: 64px;
    padding-bottom: 53px;
}

.blog-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
}

.blog-card-header .author img {
    width: 42px;
    border-radius: 50%;
    height: 42px;
    object-fit: cover;
}

.blog-card-header .author {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;
}

.blog-card-header .author a {
    font-weight: 500;
    transition: 0.3s ease;
}

.blog-card-header .author a:hover {
    color: var(--main-color);
}

.blog-card-header .likes {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.post-meta .date {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.blog-card-body .date .day {
    font-size: 32px;
    font-weight: 600;
    color: var(--main-color);
    position: relative;
}

.blog-card-body .date .day::after {
    display: inline-block;
    content: '';
    width: 1px;
    height: 22px;
    background-color: #a0a0a0;
    margin: 0 14px;
}

.blog-card-body .title a {
    font-size: 22px;
    transition: 0.3s ease;
    margin: 10px 0;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -o-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: normal;
    font-weight: 600;
}

.blog-card-body .title:hover {
    color: var(--main-color);
}

.blog-card-body p {
    color: gray;
    font-size: 13px;
}

.blog-card {
    border-radius: 6px;
}

.blog-card-body {
    padding: 0 16px 16px;
}

.blog-card.inc .blog-card-body {
    border: 1px solid #e8e5e5;
    min-height: 210px;
    border-radius: 0 0 6px 6px;
}

.blog-card .blog-card-image {
    overflow: hidden;
    position: relative;
    z-index: -1;
    height: 210px;
}

.blog-card.inc .blog-card-image {
    border-radius: 6px 6px 0 0;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.2) rotate(5deg);
}

.bs-block,
.article-card,
.qca-soft-card {
    border-radius: 2px;
    background-color: white;
    padding: 32px;
    margin-bottom: 24px;
    border: none;
}

.single-post-content h4 {
    color: var(--main-color);
    text-transform: capitalize;
    position: relative;
}

.single-post-content p {
    margin: 12px 0;
    line-height: 30px;
    font-weight: 400;
    font-size: 16px;
}

.single-post-content h4:not(:first-of-type) {
    margin-top: 34px;
}

.single-post-content strong {
    font-weight: 600;
    font-size: 16px;
    color: #212529;
}

.single-post-content h4::before {
    content: '#';
    display: inline-block;
    margin-right: 10px;
}

[dir=rtl] .single-post-content h4::before {
    margin-right: 0;
    margin-left: 10px;
}

span.posts-count {
    display: inline-grid;
    place-content: center;
    width: 18px;
    height: 18px;
    background-color: #f5f6f7;
    font-size: 10px;
    transition: 0.3s ease;
}

.bs-block.categories .nav-link:hover span.posts-count {
    background-color: var(--main-color);
    color: white;
}

@media (max-width: 567px) {

    .bs-block,
    .article-card,
    .qca-soft-card {
        padding: 16px;
    }
}

.bs-block .block-header {
    border-bottom: 1px solid #e8e5e5;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.bs-block .block-header::after {
    position: absolute;
    content: '';
    width: 13%;
    height: 2px;
    background-color: var(--main-color);
    bottom: -1px;
    left: 0;
}

.bs-block .block-header::before {
    position: absolute;
    content: '';
    border: 5px solid transparent;
    border-top-color: var(--main-color);
    bottom: -11px;
    left: 0;
}

[dir=rtl] .bs-block .block-header::after {
    right: 0;
    left: auto;
}

.bs-block.search-block form {
    display: flex;
    gap: 2px;
}

.bs-block.search-block form button {
    background-color: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
    width: 48px;
    display: grid;
    place-content: center;
    border-radius: 2px;
    transition: 0.3s ease;
}

.bs-block.search-block form button:hover {
    background-color: var(--dark-navy-blue);
    border-color: var(--dark-navy-blue);
}

.bs-block .thumb-post {
    position: relative;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 4px;
}

.bs-block .thumb-post .post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to top, #000000ba, transparent);
}

.bs-block .thumb-post .post-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.post-meta .category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.post-meta {
    display: flex;
    align-items: center;
    background-color: white;
    gap: 26px;
    margin-top: -17px;
    padding: 12px 24px 0;
}

.post-meta>div:not(:last-of-type)::after {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #c3ab6d;
    content: '';
    border-radius: 50%;
    margin-left: 21px;
}

[dir=rtl] .post-meta>div:not(:last-of-type)::after {
    margin-left: 0;
    margin-right: 21px;
}

.bs-block .thumb-post .post-content .post-meta {
    display: flex;
    align-items: center;
    font-size: 13px;
    gap: 14px;
    color: white;
}

.bs-block .thumb-post .post-content .post-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
    color: white;
    display: block;
    margin-bottom: 4px;
    transition: 0.3s ease;
}

.bs-block .thumb-post .post-content .post-title:hover {
    text-decoration: underline;
}

.bs-block .thumb-post .post-content .post-meta .meta-author a {
    text-decoration: underline;
}

.media-post {
    display: flex;
    margin-bottom: 16px;
    align-items: center;
}

.footer .media-post {
    align-items: start
}

.media-post .post-image {
    flex-shrink: 0;
    margin-right: 16px;
}

[dir=rtl] .media-post .post-image {
    margin-right: 0;
    margin-left: 16px;
}

.media-post .post-content {
    flex-grow: 1;
}

.media-post .post-content .post-title {
    font-size: 15px;
    display: block;
    line-height: 20px;
    font-weight: 500;
    transition: 0.3s ease;
}

.media-post .post-content .post-meta {
    font-size: 12px;
}

.media-post .post-content .post-title:hover {
    color: var(--main-color);
}

.media-post .post-image img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.bs-block.categories .nav-link {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #e8e5e5;
    transition: 0.3s ease;
}

.bs-block.categories .nav-link:hover {
    color: var(--main-color);
}

.bs-block.categories .nav .nav-item:last-of-type .nav-link {
    border: none;
}

.blog-page .blog-card {
    background-color: white;
    height: 100%;
    position: relative;
    z-index: 1;
}

.bs-block .social-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

@media (min-width:540px) and (max-width: 992px) {
    .bs-block .social-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bs-block .social-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;
    background-color: red;
    padding: 16px 16px;
    color: white;
    border-radius: 3px;
    transition: 0.3s ease;
}

.bs-block .social-list .facebook a {
    background-color: #1877F2;
}

.bs-block .social-list .twitter a {
    background-color: #1DA1F2;
}

.bs-block .social-list .youtube a {
    background-color: #1DA1F2;
}

.bs-block .social-list .instagram a {
    background-color: #E4405F;
}

.bs-block .social-list .linkedin a {
    background-color: #0A66C2;
}

.bs-block .social-list a:hover {
    background-color: var(--dark-navy-blue);
}

.single-post-content h1 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 41px;
}

@media (max-width: 450px) {
    .single-post-content h1 {
        font-size: 24px;
    }
}

.single-post-content .post-image-preview {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 26px;
}

.single-post-content .article-meta {
    display: flex;
    align-items: center;
    margin: 24px 0;
    font-size: 16px;
}

.single-post-content {
    font-size: 17px;
}

.single-post-content .article-meta .author img {
    width: 38px;
    border-radius: 50%;
    margin-right: 12px;
}

.single-post-content .article-meta .author a {
    text-decoration: underline;
    margin-left: 2px;
    font-weight: 500;
    text-transform: capitalize;
}

.single-post-content .article-meta .author a:hover {
    color: var(--main-color);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 24px;
}

@media (max-width: 678px) {
    .single-post-content .article-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .article-meta-item {
        margin-bottom: 9px;
    }

    .article-meta-item img {
        display: none;
    }
}

@media (max-width: 450px) {
    .single-post-content .article-meta {
        display: block;
    }
}

/*  =======================================================================
    ============    Footer    =============================================
*/
.footer {
    color: white;
    background-color: var(--dark-navy-blue);
}

.copy-rights {
    padding: 16px 0;
    background-color: #132b49;
}

.footer-block.about p {
    line-height: 28px;
    margin: 24px 0;
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 0.3px;
    width: 90%;
}

.footer-block.about .socials a:hover {
    border: 1px solid white;
    background-color: transparent;
    color: white;
}

.footer-block h6 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    padding-bottom: 16px;
    margin-bottom: 16px;
    position: relative;
    color: #ffffff;
}

[dir=rtl] .footer-block h6 {
    font-size: 16px;
}

.footer-block.quick-links .nav-link {
    position: relative;
    color: rgb(255 255 255 / 67%);
    padding-left: 3px;
}

.footer-block.quick-links .nav-link:focus {
    color: white;
    opacity: 1;
}

.media-post-meta {
    font-size: 13px;
    opacity: 0.6;
}

.footer-block.quick-links .nav-link:hover {
    color: white;
}

.footer-block.info span {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 3px;
    display: block;
}

.footer-block.info span {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 6px;
    display: block;
    padding: 8px;
}

.footer-block.newsletter form .form-control {
    border-radius: 2px;
    border: none;
    font-size: inherit;
    padding: 12px 16px;
    width: 100%;
    background-color: #ffffff30;
    margin-bottom: 6px;
    color: white;
}

.footer-block.newsletter form {
    position: relative;
    width: 75%;
    margin-top: 16px;
}

.footer-block.newsletter form button {
    position: absolute;
    background-color: transparent;
    border: none;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: rgb(255 255 255 / 50%);
}

.footer-block.newsletter form .form-control::placeholder {
    color: rgb(255 255 255 / 50%);
    font-weight: 300;
}

.footer-block.quick-links .nav-link::before {
    content: '';
    display: inline-block;
    border: 1px solid white;
    width: var(--size);
    height: var(--size);
    transform: rotate(45deg);
    margin-right: 13px;
    --size: 6px;
    border-color: white white transparent transparent;
    vertical-align: middle;
}

[dir=rtl] .footer-block.quick-links .nav-link::before {
    margin-right: 0;
    margin-left: 16px;
    border-color: transparent transparent white white;
}

.footer-block h6::after {
    content: '';
    position: absolute;
    width: 15%;
    height: 1px;
    left: 0;
    background-color: var(--main-color);
    bottom: 0;
}


.footer-block h6::before {
    content: '';
    position: absolute;
    width: 10%;
    height: 1px;
    left: 0;
    background-color: var(--main-color);
    bottom: -3px;
}

[dir=rtl] .footer-block h6::before {
    right: 0;
    left: auto;
}

[dir=rtl] .footer-block h6::after {
    left: auto;
    right: 0;
}

.footer-column {
    padding: 48px 20px;
}

@media (max-width: 678px) {
    .footer-inner {
        padding: 24px 0;
    }

    .footer-column {
        padding: 0 20px;
        border-bottom: 1px solid #ffffff3b;
    }
}

.footer-block.quick-links .nav-link:hover::before {
    border-color: orange orange transparent transparent;
}

[dir=rtl] .footer-block.quick-links .nav-link:hover::before {
    border-color: transparent transparent orange orange;
}

.footer .media-post .post-image img {
    width: 120px;
    height: 70px;
}

.footer-block .phones .phone-number {
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-block .phones .phone-number svg {
    color: var(--main-color);
}

.footer-block .mail-text {
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-block .mail-text svg {
    color: var(--main-color);
}

.newsletter {
    background-color: #009688;
    padding: 24px;
    color: #ffffff;
}

.newsletter h4 {
    text-transform: capitalize;
    margin-bottom: 6px;
}

.newsletter .icon {
    margin-right: 21px;
    transform: rotate(-45deg);
}

[dir=rtl] .newsletter .icon {
    margin-right: 0;
    margin-left: 21px;
}

.newsletter form {
    display: flex;
    gap: 6px;
}

.newsletter form button {
    background-color: #0f2239;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    color: white;
    width: 150px;
    justify-content: center;
    transition: 0.3s ease;
}

.newsletter form button:hover {
    background-color: var(--main-color);
}

.newsletter form input {
    border-radius: 4px;
    background-color: rgb(255 255 255 / 27%);
    border: none;
    color: #ffffff;
    padding-left: 23px;
}

.newsletter form input::placeholder {
    color: #ffffff9e;
}

/*  =======================================================================
    ============    Bootstrap Modifications    ============================
*/
.form-control,
.form-select {
    border-radius: 2px;
    line-height: 30px;
    font-size: inherit;
}

.form-control:focus,
.form-select:focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--main-color) !important;
}

.form-check-input:checked {
    background-color: #c3ab6d;
    border-color: #ffffff;
}

.form-check-input:focus {
    border-color: #c2aa6d;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(195 171 109 / 22%);
}

.form-label {
    text-transform: capitalize;
}

/* Dropdown */
@media (min-width: 992px) {
    .dropdown {
        cursor: pointer;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        z-index: 99999;
        border-radius: 4px;
    }

    [data-bs-toggle="dropdown"] {
        pointer-events: none;
    }

    .dropdown-menu {
        width: max-content;
        opacity: 0;
        padding: 0;
        border: none;
        display: block;
        visibility: hidden;
        font-size: inherit;
        transition: 0.3s ease;
        transform: translateY(20px);
        box-shadow: 0 10px 40px rgb(0, 0, 0, 0.08);
        border-radius: 4px;
        padding: 6px 0;
    }
}

.dropdown-item {
    transition: 0.3s ease;
    padding: 10px 16px;
    border: none;
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 4px;
}

.navbar .dropdown-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--dark-navy-blue);
    text-decoration: none;
    background-color: #f1f5f9;
}

/* Button */
.btn {
    color: inherit;
    z-index: 1;
    font-weight: 500;
    position: relative;
    border-radius: 3px;
    text-transform: capitalize;
}

[class^="btn-"],
[class*=" btn-"] {
    color: white;
}

.btn-warning,
.btn:focus-visible {
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.btn-warning:hover {
    color: inherit;
    background-color: transparent;
    border: 1px solid var(--main-color);
}

.btn-dark {
    border-color: var(--dark-navy-blue);
    background-color: var(--dark-navy-blue);
}

.btn-dark:hover {
    color: inherit;
    background-color: transparent;
    border: 1px solid var(--dark-navy-blue);
}

.double-text-effect {
    overflow: hidden;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px !important;
}

[dir=rtl] .double-text-effect {
    font-size: 14px !important;
}

[dir=rtl] .double-text-effect svg {
    transform: rotateY(180deg);
}

.double-text-effect span {
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: opacity .65s, transform .85s;
    transition-timing-function: cubic-bezier(.15, .85, .31, 1);
}

.double-text-effect span::after {
    content: attr(data-text);
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    top: 50%;
    opacity: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    transition: opacity .5s, transform .8s;
    transition-timing-function: cubic-bezier(.15, .85, .31, 1);
}

.double-text-effect:active span::after,
.double-text-effect:hover span::after {
    transform: translate(-50%, 150%);
    opacity: 1;
}

.double-text-effect:active span,
.double-text-effect:hover span {
    transform: translateY(-200%);
}

.btn-outline-dark {
    color: var(--dark-navy-blue);
}

.btn-outline-dark:hover {
    color: white;
    background-color: var(--dark-navy-blue);
    border-color: var(--dark-navy-blue);
}

@keyframes rotateInfinite {
    0% {
        transform: rotate(0deg);
    }

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

.rotate {
    animation: rotateInfinite 10s linear infinite;
}


.modal:not(.hero-preview-video) .modal-dialog {
    max-width: max-content;
}

.modal-backdrop {
    --bs-backdrop-opacity: 0.85;
}

.pagination {
    justify-content: end;
}

.page-link,
.page-link:hover {
    font-size: 13px;
    border: none;
    border-radius: 4px;
    margin-left: 8px !important;
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-content: center;
    color: var(--dark-navy-blue)
}

.page-link:hover {
    background-color: var(--dark-navy-blue);
    color: white;
}

.page-link:focus {
    box-shadow: none;
}

.sticky-lg-top {
    z-index: 9 !important;
}

.btn-primary {
    background-color: #c3ab6d;
    border-color: #c3ab6d;
}

.btn-primary:hover {
    background-color: #212020;
    border-color: #212020;
}

.btn {
    font-weight: 400;
    text-transform: uppercase;
    line-height: 28px;
}

.popular-course-card .card-details .btn {
    width: 100%;
    justify-content: center;
    border-color: var(--main-color);
    padding: 6px;
    margin-top: auto;
}


.popular-course-card .card-details .btn:hover {
    background-color: var(--main-color);
}

.breadcrumb-item {
    text-transform: capitalize;
}

/*  =======================================================================
    ============    Page Header    =======================================
*/
.page-header h3 {
    margin-bottom: 12px;
    text-transform: capitalize;
}

.page-header a {
    font-size: 14px;
    opacity: 0.5;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    opacity: 0.5;
    font-size: 8px;
    display: inline-block;
}

.page-header .breadcrumb-item+.breadcrumb-item {
    display: flex;
    align-items: center;
}

.page-header .breadcrumb-item+.breadcrumb-item.active {
    font-size: 14px;
    color: #009688;
    text-decoration: underline;
}

/*  =======================================================================
    ============    Courses Page    =======================================
*/
.page-header {
    background-image: url("./../images/others/page-header.png");
    height: 190px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

[dir=rtl] .page-header {
    background-image: url("./../images/others/page-header-ar.png");
}

@media (max-width: 768px) {
    .page-header {
        background-size: cover;
        height: auto;
        padding: 24px 0;
    }

    .page-header h3 {
        font-size: 18px;
    }

    .page-header nav {
        display: none;
    }
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: white;
    content: var(--bs-breadcrumb-divider, "/");
}

.preview-toolbar .inner {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    margin: 32px 0;
    border-bottom: 1px solid #e2e8f0;
}

.preview-toolbar .inner form {
    margin-left: auto;
    position: relative;
}

.preview-toolbar .inner form svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    opacity: 0.15;
}

.preview-toolbar .inner form .form-control {
    font-size: inherit;
    border: none;
    border-radius: 0;
    width: 240px;
}

.preview-toolbar .inner form .form-control::placeholder {
    color: #d0d0d0;
}

.preview-toolbar .inner .d-flex {
    align-items: center;
    gap: 6px;
}

/*  =======================================================================
    ============    Preloader    ==========================================
*/
.preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 9999;
}

.loader {
    width: 40px;
    height: 40px;
    --c: no-repeat linear-gradient(var(--main-color) 0 0);
    background: var(--c), var(--c), var(--c), var(--c);
    background-size: 21px 21px;
    animation: l5 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes l5 {
    0% {
        background-position: 0 0, 100% 0, 100% 100%, 0 100%
    }

    33% {
        background-position: 0 0, 100% 0, 100% 100%, 0 100%;
        width: 60px;
        height: 60px
    }

    66% {
        background-position: 100% 0, 100% 100%, 0 100%, 0 0;
        width: 60px;
        height: 60px
    }

    100% {
        background-position: 100% 0, 100% 100%, 0 100%, 0 0
    }
}

/*  =======================================================================
    ============    Back To Top    ========================================
*/
.back-to-top {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 45px;
    height: 45px;
    background-color: #009688;
    color: white;
    border-radius: 5px;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: grid;
    place-content: center;
}

.back-to-top:hover {
    background-color: #00796b;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #1b201f;
    animation: shake 0.4s;
    color: white;
}

@keyframes shake {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 0);
    }

    40% {
        transform: translate(2px, 0);
    }

    60% {
        transform: translate(-2px, 0);
    }

    80% {
        transform: translate(2px, 0);
    }

    100% {
        transform: translate(0);
    }
}

/*  =======================================================================
    ============    Single Course    ======================================
*/
.sideblock {
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 4px;
    margin-bottom: 32px;
}

.sideblock h6 {
    font-size: 18px;
    text-transform: capitalize;
    margin: 10px 0;
}

.sideblock ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sideblock ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px dashed #e2e8f0;
    position: relative;
}

.sideblock.material ul li {
    align-items: start;
}

.sideblock.material ul li::before {
    content: '✔';
    color: var(--main-color)
}

.sideblock ul li:last-of-type {
    border: none;
}

.sideblock ul li span:last-of-type {
    margin-left: auto;
    font-weight: 500;
}

.sideblock video {
    width: 100%;
}

.sideblock img {
    width: 100%;
    border-radius: 4px;
    height: 170px;
    object-fit: cover;
    object-position: top;
}

.sideblock .btn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
}

.btn-outline-warning {
    color: #000;
    border-color: var(--main-color);
}

.btn-outline-warning:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: white;
}

.share-modal h6 {
    font-weight: 300;
    margin-bottom: 8px;
    font-size: 14px;
}

.share-modal input {
    border-radius: 4px;
    padding: 13px 16px;
    margin-bottom: 8px;
}

.share-modal input:hover {
    background-color: whitesmoke;
}

.share-modal .share a {
    display: inline-grid;
    place-content: center;
    width: 50px;
    background-color: red;
    padding: 7px;
    border-radius: 4px;
    color: white;
}

.share-modal .share a:hover {
    background-color: black !important;
}

.share-modal .share a.facebook {
    background-color: #1877F2;
}

.share-modal .share a.twitter {
    background-color: #1DA1F2;
}

.share-modal .share a.linkedin {
    background-color: #0A66C2;
}

.copied-span-lable {
    display: none;
    background: #e5f7ff;
    color: #2196F3;
    font-size: 13px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.sideblock.tags a {
    background-color: #f1f5f9;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 14px;
    border-radius: 3px;
    transition: 0.3s ease;
}

.sideblock.tags a:hover {
    background-color: var(--dark-navy-blue);
    color: white;
}

.course-single-top {
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 4px;
}

.course-single-top .course-meta {
    display: flex;
    align-items: center;
    margin-top: 12px;
    gap: 24px;
}

.course-single-top .course-meta>div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-single-top .course-meta>div svg {
    color: var(--main-color);
}

.course-single-top h1 {
    font-size: 32px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 16px;
}

.course-single-meta {
    display: flex;
    align-items: center;
    gap: 32px;
}

.course-single-meta .meta-author {
    display: flex;
    align-items: center;
}

.course-single-meta .meta-author img {
    width: 38px;
    border-radius: 50%;
    margin-right: 16px;
}

.course-single-meta>div {
    border-right: 1px solid #e1e1e1;
    padding-right: 26px;
    width: 50%;
}

@media (max-width: 992px) {
    .course-single-meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .course-single-meta>div {
        border-right: none;
        padding-right: 6px;
        margin-bottom: 16px;
    }

    .course-single-meta>div span {
        font-size: 13px;
    }

    .course-single-meta>div h6 {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .course-single-meta {
        display: block;
        overflow: hidden;
    }

    .course-single-meta>div {
        padding-right: 0;
        margin-bottom: 16px;
        width: 50%;
        float: left;
    }

    .course-single-meta>div img {
        display: none;
    }
}

.course-single-meta>div:last-of-type {
    border: none;
}

.course-single-bottom {
    border: 1px solid #e2e8f0;
    margin-top: 32px;
    border-radius: 4px;
    overflow: hidden;
    padding: 24px;
}

.course-single-bottom .nav-tabs .nav-item {
    width: 33.33%;
}

.course-single-bottom .nav-tabs .nav-item .nav-link {
    width: 100%;
    border-radius: 0;
    background-color: #f1f5f9;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
    justify-content: center;
    border: 0;
    border-top: 5px solid transparent;
    height: 100%;
    gap: 6px;
}

.course-single-bottom .nav-tabs .nav-item .nav-link.active {
    border-top: 5px solid var(--teal);
    color: var(--teal);
    background-color: white;
}

.tab-content {
    padding: 24px;
    border-top: none;
}

.nav-tabs {
    border-bottom: 1px solid #fff;
}

.course-single-bottom .nav-tabs .nav-item .nav-link:hover {
    background-color: var(--dark-navy-blue);
    color: white;
    border-top: 5px solid var(--teal);
}

.course-description h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--main-color);
}

.course-description h6 {
    margin-top: 30px;
}

.course-description strong {
    font-weight: 500;
}

.course-description p {
    line-height: 30px;
    text-align: justify;
    margin-bottom: 16px;
    font-size: 16px;
}

.course-description li {
    margin-bottom: 12px;
    font-weight: 500;
}

.course-author-box {
    padding: 32px;
    display: flex;
}

.course-author-box .auhtor-img {
    flex-shrink: 0;
    margin-right: 24px;
    align-self: center;
}

.course-author-box .auhtor-img img {
    border-radius: 6px;
}

.course-author-box .media-body {
    background-color: #f8fafc;
    flex-grow: 1;
    padding: 64px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border-radius: 12px;
}

.course-author-box .media-body a {
    font-size: 24px;
    text-transform: capitalize;
}

.course-author-box .media-body .th-social a {
    display: inline-grid;
    place-content: center;
    background-color: white;
    width: 46px;
    height: 36px;
    border-radius: 3px;
    color: var(--main-color)
}

.course-author-box .media-body .th-social a:hover {
    color: white;
    background-color: var(--dark-navy-blue);
}

.course-author-box .media-body .author-meta {
    margin: 12px 0;
}

.course-author-box .media-body .author-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 24px;
}

.course-author-box .media-body .author-meta span svg {
    color: var(--main-color);
}

.tutor-review-summary-rating {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.tutor-review-summary-rating .progress {
    flex-grow: 1;
    height: 6px;
}

.tutor-ratings {
    display: flex;
    align-items: center;
    width: 48px;
    gap: 2px;
    font-size: 16px;
}

.tutor-review-summary-rating .progress .progress-bar {
    background-color: var(--main-color);
}

.tutor-ratings svg {
    color: #ffb736;
}

.tutor-fs-6.tutor-color-secondary.tutor-individual-star-rating {
    padding: 0 16px;
}

.tutor-review-summary-average-rating {
    font-size: 72px;
    font-weight: 600;
}

.comment-item {
    background-color: #f8fafc;
    padding: 22px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.comment-author {
    flex-shrink: 0;
    margin-right: 24px;
}

.comment-author span {
    width: 64px;
    height: 64px;
    place-content: center;
    display: inline-grid;
    background-color: var(--teal);
    color: white;
    font-size: 28px;
    border-radius: 6px;
}

.comment-item p {
    font-size: 15px;
    margin-top: 10px;
    line-height: 24px;
}

.comment-item .date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-size: 14px;
    opacity: 0.65;
}

.comment-details h6 {
    font-size: 22px;
}

@media (max-width: 768px) {
    .comment-item {
        display: block;
    }
}

/*  =======================================================================
    ============    Contact Form    =======================================
*/
.contact-form {
    background-color: white;
    padding: 48px;
    position: relative;
}

.contact-form h6 {
    font-size: 17px;
    margin-bottom: 8px;
}

.contact-form h4 {
    margin-bottom: 10px;
    font-size: 38px;
    font-weight: 700;
    /* color: var(--main-color); */
}

.contact-form p {
    line-height: 24px;
    margin-bottom: 16px;
}

.contact-form .form-control {
    border-radius: 0;
    border-color: transparent;
    font-size: inherit;
    padding: 18px 24px;
    width: 100%;
    color: var(--main-color);
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
}

.contact-form .form-group svg {
    position: absolute;
    top: 22px;
    right: 36px;
    opacity: 0.25;
}

[dir=rtl] .contact-form .form-group svg {
    left: 36px;
    right: auto;
}

.contact-form form .btn {
    width: 100%;
    justify-content: center;
}

.google-map-location {
    margin-top: -200px;
}

.contact-info-details {
    margin-top: 48px;
}

.contact-info-details h6 {
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-details .phones span {
    position: relative;
}

.contact-info-details .phones span:not(:first-child)::before {
    content: '//';
    display: inline-block;
    margin: 0 6px 0 12px;
    font-size: 11px;
    vertical-align: 2px;
}

/*  =======================================================================
    ============    About Page    =========================================
*/
.bouncing-animate {
    display: inline-block;
    animation: bounceUpDown 2s ease-in-out infinite;
}

@keyframes bounceUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.service-feat-card {
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-feat-card .icon {
    position: relative;
    width: 64px;
    height: 64px;
    background-color: #c3ab6d;
    z-index: -1;
    place-content: center;
    display: grid;
    border-radius: 50%;
    margin-bottom: 12px;
    color: white;
}

.service-feat-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-feat-card p {
    line-height: 26px;
}

.business-info-row.row {
    margin: 20px 0;
}

.bir-item {
    display: flex;
    align-items: center;
    border: 1px solid var(--main-color);
    background-color: #d7d7d726;
    padding: 16px;
    box-shadow: 5px 4px 0 0 var(--main-color);
    border-radius: 4px;
    height: 100px;
}

.bir-item .icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    background-color: var(--main-color);
    border-radius: 6px;
    margin-right: 16px;
    color: white;
}

[dir=rtl] .bir-item .icon {
    margin-right: 0;
    margin-left: 16px;
}

[dir=rtl] .bir-item h6 {
    margin-bottom: 6px;
}

.about-nav-pills {
    margin-top: 36px;
    border-bottom: 1px solid #e8e5e5;
    padding-bottom: 12px;
    gap: 16px;
}

.about-nav-pills .nav-link {
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 14px;
    text-transform: capitalize;
}

.about-nav-pills .nav-link.active {
    background-color: var(--dark-navy-blue);
}

.about-tab-content {
    padding: 10px 3px;
    text-align: justify;
    line-height: 24px;
}

.ceo-founder {
    display: flex;
    align-items: center;
    margin-top: 28px;
}

img.ceo-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin-right: 16px;
}

[dir=rtl] img.ceo-avatar {
    margin-left: 16px;
    margin-right: 0;
}

.signture img {
    margin-left: 32px;
    padding-left: 32px;
    border-left: 1px solid #e8e5e5;
}

[dir=rtl] .signture img {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    margin-right: 32px;
    padding-right: 32px;
    border-right: 1px solid #e8e5e5;
}

/*  =======================================================================
    ============    Login // Register   ===================================
*/
.login-box {
    max-width: 400px;
    margin: 80px auto;
    padding: 30px;
    background-color: #fff;
}

.logo {
    display: block;
    width: 80px;
    margin: 0 auto 20px;
}

.login-box .forget-password-link {
    font-size: 13px;
}

.login-box .forget-password-link:hover {
    text-decoration: underline;
    font-size: 13px;
}

.form-control.is-invalid+.toggler-password {
    top: 33%;
    right: 32px;
}

.form-control+.toggler-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}

.auth-form .logo .icon {
    display: inline-grid;
    place-content: center;
    background: linear-gradient(45deg, #CDDC39, #4CAF50);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.register-box {
    width: 680px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.toggle-password {
    background-color: transparent;
    display: grid;
    place-content: center;
    border: none;
    position: absolute;
    top: 21px !important;
    right: 10px;
    color: #797979;
}

.is-invalid+.toggle-password {
    right: 15px !important;
}

.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}

.text-main {
    color: #c3ab6d;
}

.active>.page-link,
.page-link.active {
    background-color: var(--teal);
    border-radius: 4px !important;
    color: white;
}

span.page-link {
    border-radius: 0 !important;
}

.underline:hover {
    text-decoration: underline;
}

.content-wrap {
    background-color: #f8fafc;
    padding-top: 48px;
}

.contact-info-details h2 {
    font-family: serif;
    font-weight: 700;
    font-size: 52px;
    margin-bottom: 32px;
}

[dir=rtl] .contact-info-details h2 {
    font-size: 38px;
}

.comment-item:hover {
    background-color: rgba(0, 0, 0, .03);
}

.avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.btn-reply {
    position: absolute;
    top: .5rem;
    inset-inline-start: .5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
    z-index: 1;
}

.comment-item:hover .btn-reply {
    opacity: 1;
    visibility: visible;
}

.is-reply {
    border-inline-start: 3px solid rgba(0, 0, 0, .1);
    padding-inline-start: 1rem;
}

.share-buttons {
    border-top: 1px solid;
    padding-top: 12px;
    display: flex;
    gap: 4px;
    margin-top: 16px;
}

@media (max-width: 678px) {
    .share-buttons {
        display: block;
    }

    .share-buttons span {
        display: block;
    }

    .share-buttons a {
        margin-top: 7px;
    }
}

.share-buttons span {
    font-weight: 600;
    text-transform: uppercase;
}

.share-buttons a {
    font-size: 14px;
    background-color: #f1f5f9;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    transition: 0.3s ease;
}

.share-buttons a:hover {
    background-color: black;
    color: white;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #c3ab6d;
    background-color: #2a4a59;
    border-color: #c3ab6d;
}

.position-relative.register .toggle-password {
    top: 50% !important;
    transform: translateY(-50%);
}

/*  ============================================================= COURSES PAGE */
.csb-block {
    background-color: white;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 24px;
    border: 1px solid #f1f5f9;
}

.csb-block .csb-block-header h5 {
    position: relative;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 16px;
    padding-bottom: 9px;
    text-transform: capitalize;
    font-size: 17px;
}

.csb-block .csb-block-header h5::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 45px;
    height: 2px;
    background-color: var(--main-color);
}

.csb-block .csb-block-header h5::before {
    content: '';
    position: absolute;
    border: 5px solid;
    border-color: var(--main-color) transparent transparent transparent;
    bottom: -10px;
    left: 0px;
}

.csb-block .csb-block-body form {
    display: flex;
}

.csb-block .csb-block-body form button {
    border: none;
    width: 54px;
    display: inline-grid;
    place-content: center;
    background-color: var(--main-color);
    color: white;
    border-radius: 4px;
    margin-left: 2px;
}

.csb-block .csb-block-body form input {
    border-radius: 4px;
}

.csb-block .csb-block-body form input::placeholder {
    color: #86909d;
    font-weight: 300;
}

.card-no-border .card-details {
    border: none;
}

.filter-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.filter-list .filter-list-item label {
    padding: 9px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-list .filter-list-item label:hover {
    color: var(--main-color);
}

.filter-list .filter-list-item label:hover input {
    border-color: var(--main-color);
}

.filter-list .filter-list-item .form-check-input[type=checkbox] {
    width: 19px;
    height: 19px;
    border-radius: 0;
    margin: 0;
}

.courses-page {
    padding: 80px 0;
    background-color: #f8fafc;
}

.skeleton-card {
    border: 1px solid #f1f5f9;
}

.skeleton {
    background: #f1f5f9;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    height: 100%;
    width: 150px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.2s infinite;
}

@keyframes loading {
    100% {
        left: 100%;
    }
}

/*  ============================================================= SINGLE COURSE PAGE */
.single-course-page {
    padding: 64px;
}

.single-post-content ul,
.single-post-content ol {
    margin: 0;
}

.single-post-content h4 *,
[dir=rtl] .single-post-content h4 * {
    color: var(--main-color) !important;
}

.single-course-header {
    background-color: #f1f5f9;
    padding: 32px;
    border-radius: 12px;
}

.course-cover-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.meet-link {
    user-select: none;
}
