@font-face {
    font-family: "bold";
    src: url(../fonts/bold.ttf);
}
@font-face {
    font-family: "light";
    src: url(../fonts/light.ttf);
}
@font-face {
    font-family: "regular";
    src: url(../fonts/regular.ttf);
}
:root {
    --main-color: #00aeef;
    --gray-color: #6b7280;
    --light-gray: #9ca3af;
    --black-color: #111827;
    --sec-bg: #fef2f2;
    --black: #000;
    --dark-gray: #232f3e;
    --bg-gray: #f5f5f5;
    --white-color: #fff;
    --sec-orange: #fff7ed;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "regular";
    background-color: var(--bg-gray);
    min-height: 100vh;
    position: relative;
    padding-bottom: 90px;
}
.rtl *,
[dir="rtl"] * {
    text-align: right;
    direction: rtl;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
}
h2 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 800;
}
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-blue {
    background: var(--main-color);
    color: var(--white-color);
}
.btn-main {
    border: 1px solid rgb(29 63 101);
    background: linear-gradient(
        109.6deg,
        rgb(36, 45, 57) 11.2%,
        rgb(29 63 101) 51.2%,
        rgb(0, 0, 0) 98.6%
    );
    color: var(--white-color);
    transition: 0.3s;
}

.brn-revese-main,
.btn-main:hover {
    border: 1px solid rgb(29 63 101);
    color: var(--black-color);
    background-color: var(--white-color);
}
.main-padding {
    padding: 40px 0;
    position: relative;
}
.custome-sidebar {
    position: fixed;
    top: 75px;
    left: 0;
    height: 100%;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
    background: #fff;
    transition: 0.31s;
}
.custome-sidebar:not(.active) {
    width: 0;
}
.custome-sidebar.active {
    z-index: 8;
    padding: 10px 10px 0px;
    box-shadow: 0 0 2px 1px #ccc;
    overflow-y: scroll;
    padding-bottom: 110px;
}
.custome-sidebar .toggle-sidebar {
    font-size: 30px;
    text-align: right;
    cursor: pointer;
}
.custome-sidebar .toggle-sidebar a {
    text-decoration: none;
}
.toggle-sidebar {
    display: none;
}
.custome-sidebar.active::-webkit-scrollbar {
    display: none;
}
.custome-sidebar .g-search {
    position: sticky;
    top: 0;
}
.custome-sidebar input[type="text"] {
    width: 100%;
    border: 1px solid var(--main-color);
    height: 50px;
    border-radius: 10px;
}
.custome-sidebar label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 18px;
    padding: 5px 15px;
}
.custome-sidebar input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--main-color);
}
.custome-sidebar .submit-wrapper {
    position: sticky;
    bottom: 0;
    background-color: var(--white-color);
    padding: 10px 0;
}
.custome-sidebar .submit {
    display: block;
    width: 60%;
    padding: 10px;
    margin: 10px auto;
    color: var(--white-color);
    /* background: linear-gradient(
        109.6deg,
        rgb(36, 45, 57) 11.2%,
        rgb(29 63 101) 51.2%,
        rgb(0, 0, 0) 98.6%
    ); */
    background-color: var(--black-color);
    text-align: center;
    border: 0;
    border-radius: 10px;
}
/* start header */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--black);
}
.header .navbar-toggler img {
    width: 50px;
}
.header .navbar-toggler:focus-visible,
.header .navbar-toggler:focus {
    border: 0;
    box-shadow: none;
    outline: 0;
}
.header .navbar-toggler span {
    width: 42px;
    height: 4px;
    transition: 0.3s;
    background-color: var(--white-color);
    display: block;
    margin-bottom: 7px;
}
.header .dropdown-toggle,
.header .nav-link {
    color: var(--white-color);
    font-size: 17px;
    text-transform: uppercase;
}
.cart-count {
    position: relative;
}
.cart-count::after {
    content: attr(data-cart-count);
    position: absolute;
    top: -6px;
    right: -14px;
    background: var(--main-color);
    width: fit-content;
    padding: 2px;
    border-radius: 15px;
    min-width: 26px;
    height: 26px;
    text-align: center;
    border: 1px solid #fff;
    line-height: 21px;
    font-size: 13px;
}
.st-menu {
    padding: 10px 20px;
}
.navbar-brand img {
    width: 100px;
    max-width: 90%;
    margin: 0 10px;
}
.st-menu form {
    width: 100%;
}
.st-menu input {
    width: 100% !important;
    background-color: #eef2f5;
    height: 45px;
    border-radius: 10px;
    border: none;
}
.st-menu input:focus,
.st-menu input:active {
    border: none;
    box-shadow: none;
    outline: none;
}
.st-menu .navbar-nav {
    justify-content: end;
}
.st-menu .navbar-nav li {
    margin: 0 5px;
}
.st-menu .navbar-nav li a {
    padding: 0 5px;
}

/* start footer */
footer {
    background-color: var(--black);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}
footer > div {
    padding: 30px 0;
}
footer .footer-logo {
    width: 100px;
}
footer p {
    color: #c3bfbf;
}
footer .h5 {
    color: var(--white-color);
}
footer ul {
    display: flex;
}
footer .contact-us-list li {
    margin-right: 15px;
}

footer .contact-us-list img {
    border-radius: 50%;
    width: 30px;
}
.breadcrumb {
    background-color: transparent;
}
.breadcrumb a {
    color: var(--gray-color);
}
.breadcrumb-item.active {
    color: var(--black-color);
}
.pagination .page-item {
    margin: 0 3px;
}
.pagination .page-link {
    color: var(--gray-color);
    border-radius: 5px;
}
.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    color: var(--main-color);
    border-color: var(--main-color);
    background-color: transparent;
}
.carousel-item * {
    text-align: start;
}
.carousel-item {
    height: 100%;
}
.carousel-item img {
    min-height: 100%;
    min-width: 100%;
}
.main-carousel .carousel-inner {
    height: 415px;
    max-height: 100vh;
    background-image: linear-gradient(90deg, black, transparent);
}
.main-carousel .carousel-item {
    position: relative;
}
.main-carousel .carousel-item * {
    font-weight: bold;
}
.main-carousel .carousel-item .content {
    background: transparent;
    position: absolute;
    top: 50%;
    left: 10%;
    max-width: 400px;
    transform: translateY(-50%);
}
.main-carousel .carousel-item .content h2 {
    color: var(--main-color);
}
.main-carousel .carousel-item .content p {
    color: var(--white-color);
}
.main-carousel .carousel-item .content a {
    color: var(--bg-gray);
    background-color: var(--main-color);
    width: 150px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
}
.main-carousel .carousel-control-prev-icon,
.main-carousel .carousel-control-next-icon {
    background: var(--gray-color);
    padding: 30px;
    position: relative;
    border-radius: 5px;
}
.main-carousel .carousel-control-prev-icon::after,
.main-carousel .carousel-control-next-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 20px;
}
.main-carousel .carousel-control-prev-icon::after {
    background-image: url(../img/assets/left-carousel-arrow.png);
    background-size: 10px;
}
.main-carousel .carousel-control-next-icon::after {
    background-image: url(../img/assets/right-carousel-arrow.png);
    background-size: 10px;
}

.switch-action a:hover {
    text-decoration: none;
}
.switch-action a.active img {
    padding: 5px;
    background-color: var(--main-color);
}
.switch-action img {
    width: 35px;
    border-radius: 5px;
    transition: 0.2s;
}
/* .list-grid * {
    text-transform: capitalize;
} */
.list-grid .card {
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
}
.list-grid:not(.grid) .card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.list-grid .card-img {
    position: relative;
    aspect-ratio: 1 /1;
    width: 200px;
    box-shadow: 0 0 5px 0px #ccc;
    border-radius: 10px;
    overflow: hidden;
}
.list-grid .card-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}
.list-grid .card-content {
    padding: 10px 20px;
    position: relative;
    text-align: start;
    flex-grow: 1;
}
.list-grid.grid .card-content {
    padding-bottom: 30px;
}
.list-grid .card-content h5 {
    font-weight: bold;
}
.list-grid .course-pricing {
    position: absolute;
    bottom: 0px;
    color: var(--main-color);
    left: 20px;
    max-width: 90%;
    font-size: 20px;
}
.list-grid .status {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 15px;
    border-radius: 5px;
    transform: translate(10px, 5px);
    color: var(--white-color);
    z-index: 7;
}
.list-grid .dropdown {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
}
.list-grid .card .action {
    display: flex;
    justify-content: end;
    margin-bottom: 10px;
}
.list-grid .card:has(.course-details) {
    overflow: hidden;
}
.list-grid .course-details {
    padding: 10px;
    background: #f0f8fa;
    transform: scaleX(1.08);
    padding: 10px 25px;
    font-size: 14px;
    margin: 20px 0 -20px;
    width: 100%;
}
.list-grid .course-details li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}
.list-grid .course-details li::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: -10px;
    background-image: url(../../../assets/student/img/icons/info.png);
    background-size: cover;
}
.course-recommendation {
    background: #f0f8fa;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 5px;
}
.list-grid .dropdown .btn:focus,
.list-grid .dropdown .btn:focus-visible {
    box-shadow: none;
    outline: 0;
    border: 0;
}
.list-grid .status.new {
    background: #56f000;
}
.list-grid .status.pending {
    background: #ffb302;
}
.list-grid .status.ended {
    background: #a4abb6;
}
.list-grid .status.danger {
    background: #ff3838;
}
.list-grid.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px 15px;
}
/* .list-grid.grid .card {
    margin: 0 5px 15px;
} */
.list-grid.grid .card-img {
    width: 100%;
}
.recommend-card {
    box-shadow: 0 0 5px 0px #ccc;
    border-radius: 7px;
    background-color: var(--white-color);
    margin-bottom: 10px;
    padding: 15px 10px;
}
.recommend-card a {
    text-decoration: none;
    color: var(--main-color);
}
.recommend-card-img {
    position: relative;
    width: 90%;
    aspect-ratio: 3/2;
    margin: 0 auto;
    box-shadow: 0 0 5px 0px #ccc;
    border-radius: 7px;
    overflow: hidden;
}
.recommend-card-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.loader-bg {
    animation-duration: 1.25s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: darkgray;
    background: linear-gradient(
        to right,
        #eeeeee 10%,
        #dddddd 18%,
        #eeeeee 33%
    );
    background-size: 800px 104px;
    position: relative;
}
@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}
.g-form * {
    text-transform: capitalize;
}
.g-form input,
.g-form select,
.g-form textarea {
    text-transform: none;
}
.g-form .g-form-img {
    background: var(--white-color);
    height: 100%;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.g-form .g-form-img img {
    max-width: 80%;
}
.g-form .g-form-content {
    padding-top: 30px;
    margin-bottom: 50px;
    min-height: 55vh;
}
.g-form h1,
.g-form .h1,
.g-form h1 a {
    font-size: 45px;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
}
.g-form h1 a {
    font-size: 35px;
    text-decoration: none;
}
.g-form form {
    margin-bottom: 20px;
}
.g-form .amount {
    color: var(--gray-color);
    font-size: 24px;
    display: flex;
    align-items: center;
}
.g-form .input-container {
    margin-bottom: 18px;
}
.g-form label {
    display: block;
    font-weight: bold;
}
.g-form label span {
    color: #ff0000;
    font-size: 18px;
}
.g-form input,
.g-form select,
.g-form textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    padding: 0 10px;
}
.g-form textarea {
    min-height: 100px;
}
.g-form input:focus-visible {
    border: 1px solid #ccc;
}
.g-form .square-input {
    position: relative;
    padding-top: 100%;
}
.g-form .square-input input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}
.g-form .submit {
    width: 100%;
    padding: 13px;
    margin-top: 20px;
    color: var(--white-color);
    font-size: 20px;
    background: linear-gradient(
        109.6deg,
        rgb(36, 45, 57) 11.2%,
        rgb(29 63 101) 51.2%,
        rgb(0, 0, 0) 98.6%
    );
    text-align: center;
    border: 0;
    border-radius: 10px;
}
.g-form .submit.reverse {
    color: var(--main-color);
    background: var(--sec-orange);
    border: 1px solid var(--main-color);
}
.g-form .submit2 {
    width: 300px;
    max-width: 80%;
    margin: 20px auto;
    display: block;
}
.g-form .sec-button {
    width: 100%;
    padding: 15px 0;
    border-radius: 10px;
    background-color: var(--sec-bg);
    font-size: 20px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.g-form .sec-button img,
.g-form .submit img {
    width: 19px;
    margin: 0 5px;
}
.g-form .g-form-quest {
    text-align: center;
}
.g-form .g-form-quest,
.g-form .g-form-quest a {
    text-decoration: none;
    color: var(--gray-color);
}
.g-form .g-form-quest .bold-link {
    text-decoration: none;
    font-weight: bold;
    color: var(--black-color);
}
.g-form .send-code-h {
    text-align: center;
    color: var(--main-color);
    margin-bottom: 30px;
    font-weight: bold;
}
.g-form .send-code-title {
    font-weight: bold;
}
.g-form .send-code-h span {
    color: var(--gray-color);
    font-weight: 300;
    margin: 0 5px;
}
.g-form .about-us-content {
    color: var(--gray-color);
    line-height: 30px;
}
.g-form .success-msg,
.h4-yellow {
    font-size: 20px;
    color: var(--main-color);
    font-weight: bold;
}
.h4-yellow span {
    font-size: 15px;
    color: var(--gray-color);
}
.g-form .success-content {
    color: var(--gray-color);
}
.g-form ul {
    margin-bottom: 20px;
}
.g-form ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.g-form ul label {
    font-size: 16px;
    color: #6b7280;
}
.g-form ul input[type="radio"] {
    width: 20px;
    height: 20px;
}
.g-form h3 span {
    font-size: 20px;
    font-family: "regular";
    color: var(--gray-color);
}
/* start product details */
.thumbnail-slider {
    position: relative;
}
.thumbnail-slider .owl-prev,
.thumbnail-slider .owl-next {
    position: absolute;
    top: 50%;
    background: rgba(255, 255, 255, 0.722) !important;
    width: 27px;
    height: 35px;
    border-radius: 50%;
}
.thumbnail-slider .owl-prev {
    left: 0%;
}
.thumbnail-slider .owl-next {
    right: 0%;
}
/* .product-details-content */
.product-gallery .master-image,
.product-gallery .thumbnail-slider .item {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}
.product-gallery .master-image img,
.product-gallery .thumbnail-slider .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.product-gallery .master-image img:hover {
    cursor: zoom-in;
}
.product-gallery .thumbnail-slider .item img {
    margin: 10px;
}
.product-details-content .info,
.g-form .g-color {
    color: var(--gray-color);
    font-size: 20px;
    margin-bottom: 16px;
}
.product-details-content .product-option ul {
    margin-bottom: 40px;
}
.product-details-content .product-option p,
.product-details-content .product-option li {
    color: var(--black-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.product-details-content .product-option li {
    position: relative;
    padding: 0 10px;
}
.product-details-content .product-option li:before {
    content: "-";
    top: 10%;
    left: -3px;
    position: absolute;
}
.pay-methods {
    align-items: center;
}
.pay-methods p {
    font-size: 24px;
    color: var(--gray-color);
}
/* gallery */
.filter h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-color);
    background-color: var(--sec-orange);
    padding: 10px;
    font-size: 20px;
}
.filter-button {
    width: 50px;
    padding: 15px 0;
    border-radius: 10px;
    background-color: var(--sec-bg);
    font-size: 20px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    cursor: pointer;
}

.order-summary {
    padding: 38px 5px;
}
.order-summary .summary {
    padding: 10px 0;
    border: 1px solid var(--light-gray);
    border-left: 0;
    border-right: 0;
}
.order-summary .summary div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.order-summary .summary p {
    margin-bottom: 0;
}
.order-summary .summary * {
    color: var(--gray-color);
}
.order-summary .summary.total * {
    color: var(--black-color);
}
.order-summary .summary .price {
    font-size: 24px;
    text-transform: uppercase;
}
.promo-code {
    margin-bottom: 15px;
    position: relative;
}
.promo-code input {
    background-color: #f9fafb;
    border-radius: 5px;
}
.promo-code button {
    color: var(--main-color);
    background: var(--sec-bg);
    border: 1px solid var(--main-color);
    width: 90px;
    height: 40px;
    border-radius: 5px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.payment-methods {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payment-methods div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}
.payment-methods * {
    color: var(--gray-color);
}
.stepper {
    margin: 30px 0;
}
.stepper-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}
.stepper-nav .head {
    border: 1px solid var(--light-gray);
    padding: 9px 0;
    margin: 5px -7px;
    width: 230px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
}
.stepper-nav .head,
.stepper-nav .head.active {
    border-color: #10b981;
    background-color: #10b9812b;
    color: #089466;
}

.stepper-nav .head.active ~ div {
    background-color: var(--white-color);
    color: #089466;
}
.stepper-nav .head .number {
    color: transparent;
    background-size: 26px;
    background-repeat: no-repeat;
    background-image: url(../img/purchases/checked.png);
    border: 1px solid #ccc;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
}

.stepper-nav .head.active ~ div .number,
.stepper-nav .head.active .number {
    background-image: none;
    color: #089466;
}
.stepper-nav .head::after,
.stepper-nav .head::before {
    content: "";
    border: 1px solid var(--light-gray);
    position: absolute;
    top: 6px;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    width: 30px;
    height: 30px;
}
.stepper-nav .head::before {
    left: -14px;
}
.stepper-nav .head::after {
    right: 7px;
}
.stepper-nav .head.active .number,
.stepper-nav .head:first-of-type .number,
.stepper-nav .head.active::after,
.stepper-nav .head:first-of-type::after,
.stepper-nav .head.active::before,
.stepper-nav .head:first-of-type::before {
    border-color: #10b981;
}
.step {
    padding: 15px 0;
    display: none;
}
.step.active {
    display: block;
}
.step h3 {
    color: var(--main-color);
    text-transform: capitalize;
    margin-bottom: 20px;
}
.step h3 span {
    font-size: 15px;
    color: var(--light-gray);
}
.step:first-of-type a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 15px 0;
    background-color: var(--white-color);
    box-shadow: 0 0 3px 1px #ccc;
    border-radius: 10px;
    margin-bottom: 10px;
}
.step:first-of-type .image-container {
    background-color: #ffedd5;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 10px;
}
.step:first-of-type img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.step:first-of-type * {
    color: var(--gray-color);
    text-transform: capitalize;
}
.med-overflow {
    height: 100%;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: scroll;
    z-index: 100;
}
.med-overflow-filter {
    height: 100%;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: scroll;
    z-index: 100;
    padding: 10%;
    min-height: 100vh;
}
.med-overflow-filter::-webkit-scrollbar {
    width: 5px;
}
.med-overflow-filter::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}
.med-overflow-filter::-webkit-scrollbar-track {
    background-color: var(--sec-bg);
}
.overflow-y {
    overflow-y: hidden;
}
.img-zoom-result {
    border: 1px solid #d4d4d4;
    width: 300px;
    height: 300px;
}
.prd-accordion .card-header {
    background-color: #fff;
}
.sub-accordion-check {
    width: 20px !important;
    height: 20px !important;
}
.prd-accordion .card-header,
.prd-accordion .card {
    border: none;
}
.prd-accordion .card-header button {
    display: block;
    width: 100%;
    padding: 0;
    font-size: 23px;
    color: #dc9d3c;
    text-align: left;
    text-decoration: none;
    background: url(../img/assets/left-carousel-arrow.png) no-repeat 100% 50%;
}
.prd-accordion .card-header button:hover {
    color: #dc9d3c !important;
}
.prd-accordion .card-header button.collapsed {
    color: #000;
    background: url(../img/assets/left-carousel-arrow.png) no-repeat 100% 50%;
}
.rtl .custome-sidebar {
    left: auto;
    right: 0;
}
.rtl .custome-sidebar .toggle-sidebar {
    transform: rotateY(180deg);
}
.rtl .product-details-content .product-option li:before {
    left: auto;
    right: -3px;
}
.rtl .thumbnail-slider .owl-prev {
    left: auto;
    right: 0;
}
.rtl .thumbnail-slider .owl-next {
    right: auto;
    left: 0;
}
.rtl .breadcrumb-item + .breadcrumb-item::before {
    padding-left: 0.5rem;
}
.rtl .previous-order .price div {
    margin-right: 0;
    margin-left: 50px;
}
.rtl .previous-order .share {
    position: absolute;
    top: 0;
    right: auto;
    left: 0;
}
.rtl .previous-order .action select {
    margin-left: auto;
    margin-right: 15px;
}
.rtl .promo-code button {
    right: auto;
    left: 10px;
}
.rtl .stepper-nav .head {
    transform: rotateY(180deg);
    flex-direction: row-reverse;
}
.rtl .stepper-nav .head span {
    transform: rotateY(180deg);
}
.rtl .main-carousel .carousel-item .content {
    right: 10%;
    left: auto;
}
.rtl .list-grid .course-pricing {
    left: auto;
    right: 20px;
}
.rtl .list-grid .status {
    right: auto;
    left: 0;
    transform: translate(-10px, 5px);
}
.rtl .hero-section .enrol {
    right: auto;
    left: 0;
}
.rs-scale {
    display: none;
}
.rtl .hero-section ul.social li {
    margin: 0 0 0 10px;
}
.rtl .list-grid .dropdown {
    left: 0;
    right: auto;
}
.rtl .list-grid .course-details li {
    padding-right: 15px;
    padding-left: 0;
}
.rtl .list-grid .course-details li::before {
    right: -10px;
    left: auto;
}
.rtl .pl-0 {
    padding-left: 0.75rem !important;
}
.double-range {
    margin: 50px 0 10px;
}
.hero-section {
    padding: 40px 0;
    background: radial-gradient(
        circle at 10% 20%,
        rgb(0, 0, 0) 0%,
        rgb(64, 64, 64) 90.2%
    );
    position: relative;
}
.hero-section span.category {
    color: var(--main-color);
    font-weight: bold;
}
.hero-section h1 {
    color: var(--white-color);
    margin-bottom: 20px;
}
.hero-section .tags {
    display: flex;
}
.hero-section .tags span {
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 3px 12px;
    border-radius: 100px;
    margin-right: 5px;
}
.hero-section .enrol {
    background: #fff;
    padding: 10px 10px 30px;
    width: 300px;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: 0 0 8px 1px #c7c7c7;
}
.hero-section .enrol * {
    text-transform: capitalize;
}
.hero-section .img-container {
    position: relative;
    aspect-ratio: 3/2;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
}
.hero-section .img-container img {
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-section .enrol button {
    background: var(--main-color);
    text-align: center;
    display: block;
    border-radius: 5px;
    border: 0;
    color: var(--white-color);
    width: 270px;
    padding: 10px;
    margin: 10px auto;
}
ul.course-list img {
    width: 15px;
    margin-right: 10px;
}
.hero-section ul.social {
    display: flex;
    padding: 15px 0;
}
.hero-section ul.social li {
    margin-right: 10px;
}
.hero-section ul.social img {
    border-radius: 50%;
    width: 30px;
    border-radius: 50%;
    width: 30px;
    box-shadow: 0 0 3px 0px var(--main-color);
    padding: 2px;
}
.details-tabs .bg-nav {
    padding: 15px 0;
    background-color: var(--main-color);
}
.details-tabs .nav-tabs {
    border: 0;
}
.details-tabs .nav-link {
    background-color: #ffffff5a;
    outline: 0;
    color: var(--white-color);
    margin-right: 10px;
    border: 1px solid #ffffff91;
    text-transform: capitalize;
}
.details-tabs .nav-link .active {
    background-color: var(--light-gray);
}
.details-tabs .tab-pane {
    padding: 20px 0;
}
.over-view-card {
    padding: 40px 20px;
    background-color: #ccc;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.insturctor-card {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.instructor-content {
    padding: 10px;
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ccc;
}
.instructor-content .shortcut {
    width: 60px;
    height: 60px;
    background: #ccc;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    text-transform: capitalize;
    box-shadow: 0 0 3px;
    margin-bottom: 15px;
}
.instructor-mail {
    padding: 10px;
    text-transform: capitalize;
}
.instructor-mail span {
    color: #bbb;
    font-weight: bold;
}
.custom-collapse {
    margin-bottom: 20px;
}
.custom-collapse .tog-btn {
    background: url(../img/assets/down-carousel-arrowy.png) no-repeat 95% 50%;
    display: block;
    position: relative;
}
.custom-collapse .tog-btn button {
    background-color: #cccccc57;
    padding: 15px;
    width: 100%;
}
.custom-collapse .tog-btn button:focus,
.custom-collapse .tog-btn button:focus-visible {
    outline: 0;
    box-shadow: none;
}
.collapse-head {
    margin-bottom: 5px;
}
.collapse-head span {
    color: var(--main-color);
    margin-right: 5px;
}
table td,
table th {
    text-wrap: nowrap;
    padding: 1em 0.75rem !important;
}
.table-responsive::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}
.table-responsive::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}
@media (min-width: 1200px) {
    .user-card-content {
        margin-left: 15%;
    }
    .rtl .user-card-content {
        margin-left: 0;
        margin-right: 15%;
    }
}

@media screen and (max-width: 1200px) {
    .header .dropdown-toggle,
    .header .nav-link {
        font-size: 14px;
        /* padding: 0 !important; */
    }
    .g-form h1,
    .g-form .h1,
    .g-form h1 a,
    h1 {
        font-size: 40px;
    }
    .product-gallery .master-image {
        padding-top: 75%;
    }
    .list-grid.grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (min-width: 992px) {
}
@media screen and (max-width: 991px) {
    .navbar-brand img {
        width: 100px;
    }
    .header.med-overflow .navbar-toggler span {
        width: 38px;
    }
    .header.med-overflow .navbar-toggler span:first-of-type {
        transform: rotate(45deg) translate(10px, 8px);
    }
    .header.med-overflow .navbar-toggler span:nth-last-of-type(2) {
        opacity: 0;
    }
    .header.med-overflow .navbar-toggler span:last-of-type {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    .header {
        padding: 15px 0;
    }
    .header .nav-item {
        margin: 0 0 15px !important;
    }
    .st-menu {
        padding-top: 0;
        padding-bottom: 0;
    }
    .st-menu form {
        max-width: 350px;
        margin: 10px 0;
    }
    .custome-sidebar {
        top: 90px;
    }

    .main-carousel .carousel-control-prev-icon,
    .main-carousel .carousel-control-next-icon {
        padding: 25px;
    }
    .g-form h1,
    .g-form .h1,
    .g-form h1 a,
    h1 {
        font-size: 25px;
    }
    .g-form .g-form-img img {
        max-width: 50%;
    }
    .cart-count::after {
        top: -12px;
    }
    .g-form .submit,
    .g-form .sec-button {
        font-size: 15px;
        padding: 10px 0;
    }
    .product-details-content .info {
        font-size: 15px;
    }
    .filter {
        background: #f5f5f5;
        transition: 0.4s;
        padding: 0 30px;
        height: 0;
        display: none;
    }
    .previous-order .product-img {
        padding-top: 0;
        width: 150px;
        height: 150px;
    }
    .stepper-nav {
        flex-direction: column;
    }
    .stepper-nav .head {
        clip-path: none;
        border-radius: 10px;
    }
    .stepper-nav .head::after,
    .stepper-nav .head::before {
        display: none;
    }
    footer > div {
        padding: 15px 0;
    }
    .upper-part .col-md-6 {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }
    .middle-part .col-lg-6:first-of-type {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .middle-part .store-img {
        margin-bottom: 10px;
    }
    .middle-part p {
        text-align: center;
    }
    .middle-part .contact-us-list {
        justify-content: center;
    }
    .lower-part .col-lg-5,
    .lower-part ul {
        display: flex;
        justify-content: center;
    }
    .lower-part li a {
        font-size: 14px;
    }
    .rtl .stepper-nav .head,
    .rtl .stepper-nav .head span {
        transform: rotateY(0deg);
    }
    .hero-section .enrol * {
        color: var(--white-color);
    }
    .hero-section .enrol {
        position: static;
        background: 0;
        margin: 10px 0;
        box-shadow: none;
        width: auto;
    }
    .hero-section .enrol .img-container {
        display: none;
    }
    .hero-section .course-list img {
        display: none;
    }
    .hero-section .enrol button {
        margin: 10px 0;
    }
    .details-tabs .bg-nav,
    .hero-section .social {
        padding: 10px;
    }
    a.toggle-sidebar {
        display: inline-block;
    }
    div.toggle-sidebar {
        display: block;
    }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 767px) {
    .main-carousel .carousel-item .content h2 {
        margin-bottom: 10px;
        font-size: 22px;
    }
    .details-tabs .nav-tabs {
        flex-direction: column;
    }
    .nav-tabs .nav-link {
        width: 100%;
        margin-bottom: 10px;
    }
    .list-grid .course-details {
        transform: scaleX(1.1);
    }
}

@media screen and (max-width: 575px) {
    .switch-action :not(.toggle-sidebar) {
        display: none;
    }
    .list-grid,
    .list-grid.grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .list-grid:not(.grid) .card {
        display: flex;
        flex-direction: column;
    }
    .list-grid .card-img {
        width: 100%;
        aspect-ratio: 3/2;
    }
    .list-grid .card-content {
        padding-bottom: 30px;
    }
}
