/* Style For New UI 16-3-2024 */
:root {
    --primary-color: #086DBB;
    --Secondary-color: #EFB051;
    --third-color: #003760;
    --muted-color: #939393;
    --muted-color-02: #606060;
}

.not-pointer {
    pointer-events: none;
    user-select: none;
    cursor: none;
}

/* Start Ready CLasess */
/* Fixed Header */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-animation: sticky 1s;
    animation: sticky 1s;
    -webkit-box-shadow: 2px 4px 8px rgba(33, 40, 50, 0.15);
    box-shadow: 2px 4px 8px rgba(33, 40, 50, 0.15);
    background-color: #fff;
    padding: 10px;
}

/* Fixed Header */
/* Start Spacing */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.section-padding-02 {
    padding-top: 40px;
}

@media only screen and (max-width: 767px) {
    .section-padding-02 {
        padding-top: 20px;
    }
}

/* End Spacing */
/* Sign Button */
.primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    transition: all .3s linear;
}

.secondary-btn {
    color: var(--primary-color);
    background-color: var(--Secondary-color);
    padding: 14px 20px !important;
    border-radius: 6px;
    transition: all .3s linear;
    border: 1px solid var(--Secondary-color);
}

.third-btn {
    color: #ffffff;
    background-color: var(--third-color);
    border-radius: 6px;
    transition: all .3s linear;
    border: 1px solid var(--third-color);
}

.primary-btn:hover {
    background-color: #fff !important;
    color: var(--primary-color) !important;
}

.secondary-btn:hover {
    background-color: transparent;
    color: var(--Secondary-color);

}

.third-btn:hover {
    background-color: transparent;
    color: var(--third-color);

}


/* text colot  */
.text-color-primary {
    color: var(--primary-color) !important;
}

.text-color-secondary {
    color: var(--Secondary-color) !important;
}

.text-color-third {
    color: var(--third-color) !important;
}

.text-color-muted {
    color: var(--muted-color) !important;
}

.text-color-muted-02 {
    color: var(--muted-color-02);
}

/* Background */
.bg-color-third {
    background-color: var(--third-color);
}

.bg-color-primary {
    background-color: var(--primary-color);
}

/* Border */
.prim-border {
    border: 1px solid #F1F1F1;
}

/* Shadow */
.third-shadow-hover:hover {
    box-shadow: 6px 8px 2px rgba(44, 126, 179, 0.5);
    transition: all .3s linear;
}

/* main title */
.title-div {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 2.5rem;
}

.title-div .image {
    max-width: 50px;
}

.title-div h2 {
    font-size: clamp(15px, 20px, 4vw);
    font-weight: bold;
}

.title-div h2::after {
    content: "";
    position: absolute;
    width: calc(100% + 30px);
    height: 5px;
    bottom: -7px;
    border-bottom: 2px dashed var(--third-color);
    right: -16px;
}

/* End Ready CLasess */
/* Start Breadcrumb */
.breadcrumb-item.active {
    color: var(--third-color);
}

/* End Breadcrumb */
/* Start Flex Layout Screen Large */
.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

main#main-content {
    flex: 1 1 0%;
}

/* End Flex Layout Screen Large */
/* Start Header---------- */
@media (min-width: 991px) {
    .main-header.sticky {
        background-color: rgb(255 255 255 / 95%);
    }
}

.main-menu .menu_item .menu_link {
    font-size: clamp(15px, 20px, 4vw) !important;
}

@media (min-width: 1200px) {
    .main-menu .menu_item .menu_link.active {
        position: relative;
        color: var(--primary-color) !important;
        font-weight: 700;
    }

    .main-menu .menu_item .menu_link.active::after {
        content: "";
        position: absolute;
        background-color: var(--primary-color);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% + 15px);
        height: 12px;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        z-index: -5;
    }
}

.main-menu .menu_item .sign-btn {
    background-color: var(--primary-color);
    color: #ffffff;
}

.main-menu .menu_item .join-btn {
    color: var(--primary-color);
}

.main-menu .menu_item .join-btn,
.main-menu .menu_item .sign-btn {
    border: 1px solid var(--primary-color);
    padding: 12px 14px;
    border-radius: 6px;
    transition: all .3s linear;
}

@media (max-width: 768px) {

    .main-menu .menu_item .join-btn,
    .main-menu .menu_item .sign-btn {
        padding: 7px 5px;
        font-size: 10px;
    }

    .title-div h2 {
        font-size: clamp(15px, 20px, 4vw);
    }

}

.main-menu .menu_item .join-btn:hover,
.main-menu .menu_item .sign-btn:hover {
    background-color: var(--Secondary-color);
    color: var(--primary-color);
}

/* End Header---------- */
/* Start Hero section --------- */
.hero {
    max-height: 80dvh !important;
}

.hero-section {
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    padding: 4rem 0;
}

.swiper-homePage .bg-hero-image {
    width: 100%;
    object-fit: cover;
}

.swiper-homePage .hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    margin: 0 4.5rem;
}

.swiper-homePage .hero-content .hero-image {
    position: relative;
    align-content: flex-end;
}

.swiper-homePage .hero-content .hero-image .animation-div {
    background-image: url(../images/newimages/Figure-11.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 200px;
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: flipmation-ar 1.3s infinite ease-in-out;
}

html[dir="ltr"] .swiper-homePage .hero-content .hero-image .animation-div {
    background-image: url(../images/newimages/Figure-11\ -\ en.png);
    animation: flipmation-en 1.3s infinite ease-in-out;

}

.swiper-homePage .hero-content .hero-image .animation-div::after {
    content: "Hola!";
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 48px;
    background: linear-gradient(180deg, #0071C6 0%, #003760 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-changes 2S infinite step-end;
}

@keyframes text-changes {

    25% {
        content: "Hola!";
    }

    70% {
        content: "Hello";
    }

}

@keyframes flipmation-ar {

    0%,
    100% {
        /* translate: 0 0; */
        right: 100px;
        top: 65px;
        transform: rotateY(0deg);
    }

    25% {
        /* translate: -220px 50px; */
        right: 52%;
        top: 51%;
        transform: rotateY(140deg);
    }

    75% {
        /* translate: 0 0; */
        right: 100px;
        top: 65px;
        transform: rotateY(0deg);
    }
}

@keyframes flipmation-en {

    0%,
    100% {
        /* translate: 0 0; */
        left: 100px;
        top: 65px;
        transform: rotateY(0deg);
    }

    25% {
        /* translate: -220px 50px; */
        left: 52%;
        top: 51%;
        transform: rotateY(90deg);
    }

    75% {
        /* translate: 0 0; */
        left: 100px;
        top: 65px;
        transform: rotateY(0deg);
    }
}

.swiper-homePage .hero-content .hero-image .image {
    position: relative;
}

.swiper-homePage .hero-content .hero-image .image img {
    aspect-ratio: 15 / 12;
    object-fit: cover;
    position: relative;
    z-index: 55;
}

html[dir="ltr"] .swiper-homePage .hero-content .hero-image img {
    transform: rotateY(180deg);
}

.swiper-homePage .home-content {
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 15px;
    max-width: 550px;
}



.swiper-homePage .home-title {
    color: #fff;
    font-size: clamp(1.5rem, 1.9rem, 4vw);
    font-weight: bold;
}

.swiper-homePage .home-content p {
    margin: 10px 0;
    line-height: 1.6;
    font-size: clamp(1rem, 1.3rem, 4vw);
}

.swiper-homePage .hero-content .banerRegisterBTN {
    color: var(--primary-color);
    background-color: #fff;
    padding: 14px 45px !important;
    border-radius: 6px;
    transition: all .3s linear;
    border: 1px solid #fff;
    font-size: clamp(.8rem, 1.1rem, 4vw);
}

.swiper-homePage .hero-content .banerRegisterBTN:hover {
    color: #fff;
    background-color: var(--primary-color);
}

.hero-section .image {
    max-width: 350px;
    max-height: 350px;
}

.hero-section .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1360px) {
    .swiper-homePage .bg-hero-image {
        max-height: 70dvh;
    }

    .swiper-homePage .home-content {
        gap: 35px;
    }
}

@media (max-width: 1200px) {
    .swiper-homePage .hero-content {
        flex-direction: column;
        gap: 10px;
        margin: 0 10px;
        justify-content: flex-end;
    }

    .swiper-homePage .home-content {
        gap: 3px;
        text-align: center;
        padding-top: 25px;
    }

    .swiper-homePage .hero-content .hero-image .animation-div {
        width: 150px;
        height: 120px;
    }

    .swiper-homePage .hero-content .hero-image .animation-div::after {
        font-size: 25px;
    }

    .swiper-homePage .hero-content .hero-image {
        align-self: center;
    }

    .swiper-homePage .header-text {
        padding-top: 0.7rem;
    }

    .swiper-homePage .header-text p {
        margin: 5px 0;
    }

    .swiper-homePage .home-content .banerRegisterBTN {
        padding: 8px 12px !important;
    }

    .swiper-homePage .bg-hero-image {
        min-height: 95dvh;
    }

    .hero-section .image {
        max-width: 170px;
        max-height: 170px;
    }
}

@media (max-width: 420px) {
    .swiper-homePage .hero-content .hero-image .animation-div {
        width: 100px;
        height: 75px;
    }

    .swiper-homePage .bg-hero-image {
        min-height: 75dvh;
    }
}

.swiper-homePage .swiper-button-next:after,
.swiper-homePage .swiper-button-prev:after {
    font-size: 20px
}

/* End Hero section --------- */
/* Start Social Media Fixed */
.fixed-social {
    position: fixed;
    background-color: rgba(6, 6, 6, 0.02);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border: 1px solid #06060614;
    backdrop-filter: blur(5px);
    width: 35px;
    padding: 5px;
    left: 0;
    top: 270px;
    z-index: 555;
}

.fixed-social ul {
    text-align: center;
    color: #000;
    gap: 5px;
    font-size: 10px;
}

.fixed-social ul li a i {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
}

/* End Social Media Fixed */
/* Start Statistics */
#statistics {
    position: relative;
    background: linear-gradient(180deg, #E6F3FC 0%, #FFFFFF 116.79%);
    box-shadow: inset 0px 4px 4px #AFD5F1;
    overflow: hidden;
}

#statistics::after,
#statistics::before {
    content: "";
    position: absolute;
    background-image: url(../images/newimages/side-image.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    height: 100px;
}

#statistics::after {
    right: 0;
    top: -15px;
}

#statistics::before {
    left: 0;
    bottom: 0;
    transform: rotate(180deg);
}


#statistics .box {
    transition: all .4s linear;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#statistics .box .image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

#statistics .box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#statistics .box .info h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: clamp(18px, 22px, 5vw);
}

#statistics .box .info p {
    color: var(--muted-color);
    font-weight: 500;
    font-size: clamp(14px, 18px, 5vw);
    padding-top: 5px;
}

#statistics .box .info p span {
    font-weight: 700;
    color: var(--third-color);
}

@media (max-width: 776px) {
    #statistics .box {
        flex-direction: column;
        text-align: center;
    }
}

/* End Statistics */
/* Start services */
#services .services-content .services-info .image {
    width: 90px;
    height: 90px;
}

#services .services-content .services-left-image img,
#services .services-content .services-info .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

html[dir="ltr"] #services .services-content .services-left-image img {
    transform: rotateY(180deg);
}

#services .services-content .services-left-image {
    width: 400px;
    height: 500px;
    position: relative;
}

/* End services */
/* Start Latest Courses Section */
.filter-modal {
    overflow: hidden;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 0;
    transition: height .3s linear;
}

.filter-modal.show {
    overflow: visible;
    height: 270px;
}

#latest-courses,
#page-courses .filter-form-body .filter-head,
#lecturer-page .filter-form-body .filter-head {
    position: relative;
    background-color: #005393eb;
    padding-top: 120px;
}

#lecturer-page .filter-head form.form-search-by-title,
#page-courses .filter-form-body .filter-head form.form-search-by-title {
    overflow: hidden;
    width: 0;
    transition: width .3s linear;
}

#lecturer-page .filter-head form.form-search-by-title.show,
#page-courses .filter-form-body .filter-head form.form-search-by-title.show {
    overflow: visible;
    width: 300px;
}

#lecturer-page .filter-form-body #event-box,
#page-courses .filter-form-body #event-box {
    position: relative;
}

#lecturer-page .filter-form-body #event-box::after,
#page-courses .filter-form-body #event-box::after {
    content: "";
    position: absolute;
    width: 1px;
    background-color: #fff;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#lecturer-page .filter-form-body #search-btn-event,
#lecturer-page .filter-form-body #close-filter-modal,
#page-courses .filter-form-body #search-btn-event,
#page-courses .filter-form-body #close-filter-modal {
    background-color: transparent;
    border-radius: 8px;
    transition: all .3s linear;
    padding: 5px 10px;
    color: #fff;
}

#lecturer-page .filter-form-body #search-btn-event:hover,
#lecturer-page .filter-form-body #close-filter-modal:hover,
#page-courses .filter-form-body #search-btn-event:hover,
#page-courses .filter-form-body #close-filter-modal:hover {
    background-color: #fff;
    color: var(--primary-color);
}

#lecturer-page .filter-form-body .filter-head .category-link,
#page-courses .filter-form-body .filter-head .category-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}

#lecturer-page .filter-form-body .filter-head .category-link li a,
#page-courses .filter-form-body .filter-head .category-link li a {
    padding-bottom: 20px;
    color: #fff;
    display: block;
    cursor: pointer;
}

#lecturer-page .filter-form-body .filter-head .category-link li a label,
#page-courses .filter-form-body .filter-head .category-link li a label {
    cursor: pointer;
}

#lecturer-page .filter-form-body .filter-head .category-link li a.active,
#page-courses .filter-form-body .filter-head .category-link li a.active {
    position: relative;
}

#lecturer-page .filter-form-body .filter-head .category-link li a.active::after,
#page-courses .filter-form-body .filter-head .category-link li a.active::after {
    content: "";
    position: absolute;
    width: 124px;
    height: 14px;
    border-radius: 24px 24px 0px 0px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    transition: all .3s linear;
}

#lecturer-page .filter-form-body .filter-head .time-create-event,
#page-courses .filter-form-body .filter-head .time-create-event {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
}

#lecturer-page .filter-form-body .filter-head .time-create-event a,
#page-courses .filter-form-body .filter-head .time-create-event a {
    padding: 0px 15px;
    cursor: pointer;
    color: #939393;
    background-color: #fff;
    font-size: 19px;
    transition: all .3s ease-in;
}

#lecturer-page .filter-form-body .filter-head .time-create-event a.active,
#page-courses .filter-form-body .filter-head .time-create-event a.active {
    background-color: var(--third-color);
    color: #fff;
}

#latest-courses .bg-image-course,
#page-courses .filter-form-body .filter-head .bg-image-course,
#lecturer-page .filter-form-body .filter-head .bg-image-course {
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: repeat;
    background-size: 30%;
    width: 100%;
    z-index: -1;
    height: 100%;
    background-position: 0% 20%;
    opacity: 40%;
}

#latest-courses .bg-image-course,
#page-courses .filter-form-body .filter-head .bg-image-course {
    background-image: url(../images/newimages/courses-bg-image.jpg);
}

#latest-courses .swiper-grid-column>.swiper-wrapper {
    flex-direction: unset;
    align-items: flex-end;
}

.courses-content .single-courses .item-courses {
    position: relative;
    padding: 16px;
    border-radius: 16px;
    background-color: #fff;
    transition: all .3s linear;
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.courses-content .single-courses .item-courses .courses-content .course-title {
    font-size: clamp(16px, 20px, 5vw);
}

.single-page-hero-section .category,
.courses-content .single-courses .item-courses .category {
    position: absolute;
    color: #fff;
    width: 122px;
    height: 35px;
    text-align: center;
    font-size: 18px;
    overflow: hidden;
}

.courses-content .single-courses .item-courses .category {
    top: 10px;
    right: -1px;
}

.single-page-hero-section .category {
    top: 0;
    left: -15px;
}

html[dir="rtl"] .single-page-hero-section .category .icon {
    transform: rotateY(180deg);
}

html[dir="ltr"] .single-page-hero-section .category {
    right: -15px;
    left: unset;
}

html[dir="ltr"] .courses-content .single-courses .item-courses .category {
    right: unset;
    left: 0px;
}

html[dir="ltr"] .courses-content .single-courses .item-courses .category .icon {
    transform: rotateY(180deg);
}

.single-page-hero-section .category .cate-title,
.courses-content .single-courses .item-courses .category .cate-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.single-page-hero-section .category.new .icon svg path,
.courses-content .single-courses .item-courses .category.new .icon svg path {
    fill: #48D64F;
}

.single-page-hero-section .category.recorded .icon svg path .courses-content .single-courses .item-courses .category.recorded .icon svg path {
    fill: #D67F48;
}

.single-courses .courses-images {
    flex-shrink: 0;
    width: 244px;
    height: 228px;
    margin: 0 auto;
}

.single-page-hero-section .card-body .teachers-image img,
.single-page-hero-section .info-item .teachers-image img,
.courses-content .single-courses .item-courses .info .info-item .teachers-image img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.single-page-hero-section .info .info-item .course-sign,
.courses-content .single-courses .item-courses .info .info-item .course-sign {
    padding: 5px 20px;
    font-size: clamp(17px, 20px, 5vw);
}

.single-courses .courses-images a img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    border-radius: 12px !important;
}

@media (max-width: 1200px) {
    .courses-content .single-courses .item-courses .info .info-item .course-sign {
        padding: 5px 15px;
    }
}

@media (max-width: 768px) {
    .courses-content .single-courses .item-courses {
        flex-direction: column;
        text-align: center;
    }

    .single-courses .courses-images {
        width: 100%;
    }

    .courses-content .single-courses .item-courses {
        max-width: 450px;
        margin: auto;
    }
}

.swiper-latestcourses .swiper-pagination-bullet {
    background-color: #fff;
    opacity: .6;
}

.swiper-latestcourses .swiper-pagination-bullet-active {
    opacity: 1;
    outline: 1px solid #fff;
    outline-offset: 2px;
}

/* Category */
.categories .item-categ {
    color: var(--primary-color);
    background-color: transparent;
    border: none;
    border-radius: 0px;
    border-bottom: 2px solid transparent;
    transition: all .3s linear;
}

.categories .item-categ.active {
    color: var(--primary-color);
    font-weight: bold;
    border-bottom: 2px solid var(--Secondary-color);
    border-radius: 0px;
    text-align: center;
}

.swiper-action .swiper-prev,
.swiper-action .swiper-next {
    color: var(--muted-color);
    margin-right: -10px;
    margin-left: -10px;
}

/* start coustm style for courses page */
#page-courses .single-courses .item-courses {
    box-shadow: 0px 2px 12px #00000014;
    border: 1px solid #f1f1f1;
}

#page-courses .single-courses .item-courses .courses-content {
    display: grid;
    place-content: stretch;
}

@media (max-width: 1199px) {
    .courses-content .single-courses .item-courses {
        flex-direction: column;
        text-align: center;
    }

    #page-courses .single-courses .courses-images {
        width: 100%;
    }
}

/* end coustm style for courses page */
/* End Latest Courses Section */
/* Start Teachers Section */
.teachers-active .teacher-box .teachers-image {
    width: 100%;
    height: 180px;
    margin: auto;
}

.teacher-box .teachers-image>img {
    border-radius: 28px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teachers-active .teacher-box .teacher-info {
    border-radius: 16px;
    padding: 15px 15px 10px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
}

.teachers-active .teacher-box .teacher-info .top-info {
    min-height: 60px;
}

.teachers-active .teacher-box .teacher-info .top-info a {
    color: var(--primary-color);
    font-weight: 600;
}

.homepageLecturer {
    background-color: #f5f5f9;
}

.homepageLecturer #team-members {
    position: relative;
    background-image: url(../images/newimages/traimers-background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
}

.homepageLecturer #team-members::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
    background-color: var(--primary-color);
}

.homepageLecturer .swiper-slide .teacher-box {
    background-color: #fff;
    border-radius: 28px;
    min-height: 310px;
    box-shadow: 0px 2px 12px#05124214;

}


#team-members .teachers-active .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 43px;
    height: 22px;
}

#team-members .teachers-active .swiper-action-teacher {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 55;
}

#team-members .teachers-active .swiper-action-teacher .swiper-prev,
#team-members .teachers-active .swiper-action-teacher .swiper-next {
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    transition: all .3s ease-in-out;
}

#team-members .teachers-active .swiper-action-teacher .swiper-prev.swiper-button-disabled,
#team-members .teachers-active .swiper-action-teacher .swiper-next.swiper-button-disabled {
    opacity: .5;
}

#team-members .teachers-active .swiper-action-teacher .swiper-prev:not(.swiper-button-disabled):hover,
#team-members .teachers-active .swiper-action-teacher .swiper-next:not(.swiper-button-disabled):hover {
    background-color: #fff;
    color: var(--primary-color);
}

#team-members .teachers-active .swiper-pagination-bullet-active {
    outline: 1px solid var(--third-color);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .teacher-box {
        text-align: center;
    }

    .teacher-box .bottom-info {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

}

/* End Teachers Section */
/* Start How We Work */
#how-work {
    position: relative;
}

#how-work::before,
#how-work::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    width: 200px;
    height: 200px;
}

#how-work::before {
    background-image: url(../images/newimages/ball-icon.svg);
    top: 0;
    right: 10%;

}

#how-work::after {
    background-image: url(../images/newimages/star-group.svg);
    bottom: 20px;
    z-index: -1;
    left: 20%;
}

html[dir="ltr"] #how-work::before {
    left: 10%;
    right: unset;
}

html[dir="ltr"] #how-work::after {
    left: unset;
    right: 15%;
    transform: rotateY(180deg);
}

#how-work .content .boxes {
    padding: 5px;
    overflow: hidden;
}

#how-work .content .boxes .box {
    min-height: 436px;
    border-radius: 28px;
    padding: 10px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

#how-work .content .boxes .box .reactan {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 55;
}

#how-work .content .boxes .box .reactan span {
    display: block;
    width: 90px;
    height: 20px;
    border-radius: 80px;
    background-color: #fff;
}



@media (min-width: 992px) {
    html[dir="rtl"] #how-work .content .boxes .box.box-0 .reactan {
        left: -55px;
    }

    html[dir="ltr"] #how-work .content .boxes .box.box-0 .reactan {
        right: -55px;
    }

    html[dir="rtl"] #how-work .content .boxes .box.box-1 .reactan {
        left: -55px;
    }

    html[dir="ltr"] #how-work .content .boxes .box.box-1 .reactan {
        right: -55px;
    }

    #how-work .content .boxes .box.box-2 .reactan {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    html[dir="rtl"] #how-work .content .boxes>div:nth-child(odd) .box .reactan {
        align-items: flex-end;
        left: -55px;
    }

    html[dir="rtl"] #how-work .content .boxes>div:nth-child(even) .box .reactan {
        align-items: flex-start;
        left: 55px;
    }

    html[dir="ltr"] #how-work .content .boxes>div:nth-child(odd) .box .reactan {
        align-items: flex-end;
        left: 55px;
    }

    html[dir="ltr"] #how-work .content .boxes>div:nth-child(even) .box .reactan {
        align-items: flex-start;
        left: -55px;
    }
}

@media (max-width: 767px) {
    #how-work .content .boxes>div:last-child .box .reactan {
        display: none;
    }

    #how-work .content .boxes>div .box .reactan {
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }

    #how-work .content .boxes>div .box .reactan span {
        width: 20px;
        height: 90px;

    }

    #how-work .content .boxes>div:nth-child(odd) .box .reactan {
        align-items: flex-end;
        bottom: -55px;
        left: 50%;
    }

    #how-work .content .boxes>div:nth-child(even) .box .reactan {
        align-items: flex-end;
        bottom: -55px;
        left: 50%;
    }

    #how-work::before,
    #how-work::after {
        display: none;
    }
}


#how-work .content .boxes .box .image img {
    width: 250px;
    height: auto;
    object-fit: contain;
}
#how-work .content .boxes .box .text {
    margin-top: 35px;
    max-width: 300px;
    text-align: center;
    line-height: 1.6;
    font-size: clamp(16px, 20px, 5vw);
}

#how-work .content .boxes .box.box-0 {
    color: #E58D0A;
    background-color: #FCECD4;
}

#how-work .content .boxes .box.box-0 .text * {
    color: #E58D0A !important;
}

#how-work .content .boxes .box.box-1 {
    color: #086DBB;
    background-color: #D0E7F8;
}

#how-work .content .boxes .box.box-1 .text * {
    color: #086DBB !important;
}

#how-work .content .boxes .box.box-2 {
    color: #5909CA;
    background-color: #E2D1FA;
}

#how-work .content .boxes .box.box-2 .text * {
    color: #5909CA !important;
}

#how-work .content .boxes .image {
    width: 175px;
    height: 160px;
}

#how-work .content .boxes .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* End How We Work */
/* Start Testimonials Section */
.testimonial-sign {
    position: relative;
}

.testimonial-sign::after,
.testimonial-sign::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 25px;
    background-image: url(../images/newimages/name-sign-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
}

.testimonial-sign::after {
    bottom: 80%;
}

.testimonial-sign::before {
    top: 80%;
    transform: rotate(180deg);
}

.testimonial-wrapper .testimonial-slide .testimonial-item {
    padding: 35px 20px 75px;
    max-width: 570px;
    margin: auto;
    position: relative;
}

.testimonial-wrapper .testimonial-slide .testimonial-author {
    box-shadow: 0px 4px 4px #22222229;
    display: flex;
    justify-content: space-around;
    padding: 25px 35px;
    gap: 30px;

}

.testimonial-wrapper .testimonial-slide .testimonial-item .chat-icon {
    position: absolute;
    top: 0;
    left: -40px;
    width: 100%;
    height: 100%;
}

@media (max-width: 465px) {
    .testimonial-wrapper .testimonial-slide .testimonial-item {
        padding: 20px 5px 65px;
    }

    .testimonial-wrapper .testimonial-slide .testimonial-item .chat-icon {
        left: 0;
    }

}

.testimonial-wrapper .testimonial-slide .testimonial-item .chat-icon svg {
    width: 100%;
    height: 100%;
}

html[dir="ltr"] .testimonial-wrapper .testimonial-slide .testimonial-item .chat-icon {
    left: 40px;
    transform: rotateY(180deg);
}

.testimonial-wrapper .testimonial-author .author-thumb::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 60px;
    top: -30px;
    right: 28px;
    background-image: url(../images/newimages/Vector-sh.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.testimonial-wrapper .testimonial-author .author-thumb {
    flex-shrink: 0;
    position: relative;
}

.testimonial-wrapper .testimonial-author img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    transform: rotate(-15deg);
}



.testimonial-wrapper .testimonial-box {
    max-width: 300px;
}

.testimonial-wrapper .testimonial-box .testimonial-content {
    min-height: 180px;
    font-size: clamp(15px, 23px, 5vw);
}

.testimonial-active .swiper-pagination {
    height: 22px !important;
    position: relative;
    margin-top: 30px;
}

.testimonial-wrapper .swiper-pagination-bullet-active {
    outline: 1px solid #086DBB;
    outline-offset: 2px;
}

@media (max-width: 390px) {
    .testimonial-wrapper .testimonial-slide .testimonial-author {
        flex-direction: column;
    }

    .testimonial-wrapper .testimonial-slide .testimonial-item .chat-icon {
        display: none;
    }

    .testimonial-wrapper .testimonial-author .author-thumb {
        margin: auto;
    }
}

/* End Testimonials Section */
/* Strat Partners Section */
.brand-logo .brand-item {
    background-color: white;
    border: 1px solid #06060614;
    box-shadow: 2px 5px 12px #05124214;
    padding: 20px 10px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.brand-logo .brand-item .image {
    margin: auto;
    width: 135px;
    height: 100px;
}

.brand-logo .brand-item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 991px) {

    .brand-logo .swiper-next,
    .brand-logo .swiper-prev {
        margin: 0px -20px;
    }
}

/* End Partners Section */
/* Start Lecturers Page---------------------- */
.teacher-box .teachers-image-profile img {
    width: 160px;
    height: 160px;
    object-fit: cover;
}
#lecturer-page .filter-form-body .filter-head .bg-image-course {
    background-image: url(../images/newimages/about-us-imag-front.png);
}

.form-check-input:checked {
    background-color: var(--third-color) !important;
    border-color: var(--third-color) !important;
}

.form-search-by-name .search-box,
.form-search-by-title .search-box {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    background-color: #ffffff;
}

.form-search-by-name .search-box:first-child>*,
.form-search-by-title .search-box:first-child>* {
    padding: 10px;
}

.form-search-by-name .search-box .search-btn,
.form-search-by-title .search-box .search-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: clamp(16px, 20px, 5vw);
    padding-left: 14px;
    padding-right: 14px;
}

.filter-body .select-item {
    border-radius: 8px;
    color: var(--muted-color);
    padding: 12px;
    font-size: 15px;
}

.filter-body .tab-filter li {
    width: 100%;
}

.filter-body .tab-filter label,
.filter-body label.dropdown-item {
    padding: 5px !important;
    height: 35px !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

#countryAccordion #countryContent {
    max-height: 250px;
    overflow-y: scroll;
}

#lecturer-page .teacher-box {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    position: relative;
}

#lecturer-page .teacher-box .teachers-image {
    width: 300px;
    height: 320px;
    position: relative;
}

#lecturer-page .teacher-box .teachers-image .data-rating {
    position: absolute;
    width: 90px;
    height: 43px;
    background-color: #fff;
    border-radius: 40px;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#lecturer-page .teacher-box .teachers-image .data-rating span {
    font-size: 16px;
}

html[dir="rtl"] #lecturer-page .teacher-box .teachers-image .data-rating {
    top: 10px;
    right: 10px;
}

html[dir="ltr"] #lecturer-page .teacher-box .teachers-image .data-rating {
    top: 10px;
    left: 10px;
}

#lecturer-page .teacher-box .reactan {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 50%;
    gap: 60px;
    z-index: 5;
}

html[dir="rtl"] #lecturer-page .teacher-box .reactan {
    left: 50%;
    transform: translate(-50%, -50%);
}

html[dir="ltr"] #lecturer-page .teacher-box .reactan {
    right: 50%;
    transform: translate(50%, -50%);
}

#lecturer-page .teacher-box .reactan span {
    display: block;
    background-color: #fff;
    width: 70px;
    height: 20px;
    border-radius: 80px;
    border: 1px solid #E7E7E7;
}

#lecturer-page .teacher-box .teachers-image img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#lecturer-page .teacher-box .teacher-info {
    width: 300px;
    height: 320px;
    border-radius: 12px;
    padding: 20px 35px;
    display: grid;
    gap: 10px;
}

#lecturer-page .teacher-box .teacher-info-div-0 {
    background-color: #FCECD4;
}

#lecturer-page .teacher-box .teacher-info-div-2 {
    background-color: #D0E7F8;
}

#lecturer-page .teacher-box .teacher-info-div-1 {
    background-color: #D0E7F8;
}
@media (max-width: 455px) {
    #lecturer-page .teacher-box {
        align-items: center;
        flex-direction: column;
    }

    #lecturer-page .teacher-box .reactan {
        flex-direction: row;
    }

    #lecturer-page .teacher-box .reactan span {
        width: 20px;
        height: 70px;
    }
}
/* End Lecturers Page------------------------ */
/* Start Single Course Page------------------------ */
/* start hero section */
.single-page-hero-section {
    padding: 3rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.single-page-hero-section .info-item button.like-btn {
    background-color: transparent;
    transition: all .3s linear;
}

.single-page-hero-section .info-item button.like-btn:hover svg path {
    fill: var(--primary-color);
}

.single-page-hero-section .content {
    border: 1px solid #F1F1F1;
    box-shadow: 0px 1px 12px #00000014;
}

.single-page-hero-section .content .course-info {
    height: 100%;
    display: grid;
    gap: 30px;
}

.content .course-info .text-desc {
    max-width: 550px;
}

.single-page-hero-section .image {
    width: 400px;
    height: 300px;
}

.single-page-hero-section .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-page-hero-section .content .reviews-box {
    display: flex;
    align-items: center;
    gap: 25px;
}

.single-page-hero-section .content .reviews-box .reviews-icon img {
    width: 60px;
    height: 60px;
}

/* end hero section */

.card-course .tools-list {
    list-style: disc;
}

.card-course .ctf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#privet-lesson .card-course .teachers-image,
#course-curriculum .card-course .teachers-image {
    width: 80px;
    height: 80px;
    position: relative;
}

#privet-lesson .card-course .teachers-image img,
#course-curriculum .card-course .teachers-image img {
    width: 100%;
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
}

#privet-lesson .card-course .teachers-image::after,
#course-curriculum .card-course .teachers-image::after {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    background-image: url(../images/verified.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
}

#course-registration .card-course .img-login img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.single-page-hero-section img.img-video {
    aspect-ratio: 16 /7;
    width: 100%;
    object-fit: cover;
}

.single-page-hero-section .content .similar-img img {
    width: 112px;
    height: 112px;
    border-radius: 12px;
    object-fit: cover;
}

/* suggested courses */
.suggested-courses .suggested-courses-item:not(:last-child) {
    border-bottom: 1px solid #BBBBBB;
}

/* suggested courses */
/* End Single Course Page------------------------ */
/* Start Blog Page --------------------------------*/
.header-blog {
    background-color: var(--third-color);
    padding: 30px 0;
}

.header-blog .menu-blog li a {
    color: #ffffff;
    font-size: clamp(17px, 20px, 5vw);
}

.header-blog .menu-blog li a.active {
    color: var(--Secondary-color);
    position: relative;
}

.header-blog .menu-blog li a.active::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background-color: var(--Secondary-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.swiper-blog .blog-image {
    width: 100%;
    height: 100%;
}

.swiper-blog .blog-image>img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.swiper-blog .details {
    height: 0px;
    overflow: hidden;
    transition: height .3s ease;
}

.swiper-blog .text-absolute {
    position: absolute;
    overflow: hidden;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0px;
    background-color: rgb(255 255 255 / 45%);
    color: var(--primary-color);
    backdrop-filter: blur(5px);
    margin: 0;
    transition: all .3s linear;
}

.swiper-blog .text-absolute:hover .details {
    height: 200px;
}

section.section {
    position: relative;
    background-color: #ffffff;
}

#blog-page {
    min-height: 350px;
    background-color: #00376080;
}

#blog-page .blog-image-hero {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/newimages/blog-header-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

#blog-page .hero-blog-p {
    text-align: center;
    line-height: 1.6;
    font-weight: 400;
    color: #D6D6D6;
    max-width: 950px;
    font-size: clamp(18px, 22px, 5vw);
    padding: 20px 0 100px;
    margin: auto;
}

#blog-page .categories-blog {
    background-color: #fff;
    border-radius: 12px;
    margin: 0px auto -30px;
    display: flex;
    align-items: center;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    max-width: 600px;
}

#blog-page .categories-blog .dropdown {
    flex-basis: 30%;
}

#blog-page .categories-blog .dropdown button.dropdown-toggle {
    border: none;
    font-size: 22px;
    color: var(--third-color) !important;
    font-weight: 600;
}

#blog-page .categories-blog .dropdown .bootstrap-select .dropdown-toggle::before {
    color: var(--third-color);
}

html[dir="ltr"] #blog-page .categories-blog .dropdown .bootstrap-select .dropdown-toggle::before {
    right: 5px;
}

#blog-page .categories-blog .dropdown .bootstrap-select .dropdown-menu li a {
    font-size: 18px;
    color: var(--third-color);
    font-weight: 500;
    padding: 10px;
}

#blog-page .categories-blog .search-box {
    flex: 1 1 0;
    border-inline-start: 1px solid var(--third-color);
    padding: 20px 10px;
}

#blog-page .categories-blog .search-box #blog-search::placeholder {
    color: var(--muted-color);
}

.latestBlog .blog-item>.info-blog {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    border: 1px solid #F1F1F1;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
}

.latestBlog .blog-item .img-blog {
    width: 100%;
    height: 162px;
    margin: 0px auto;
}

.latestBlog .blog-item .img-blog img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.latestBlog .blog-item>.info-blog .widget_item-content .widget_item-title {
    font-size: clamp(18px, 22px, 5vw);
}

.latestBlog .blog-item .type-blog {
    padding: 5px 10px;
    background-color: #2C7EB314;
    color: var(--primary-color);
    font-size: clamp(10px, 14px, 5vw);
}

.latestBlog .blog-item .btn-blog {
    display: flex;
    justify-content: end;
    margin-top: -25px;
    padding: 0px 20px;
}

html[dir="ltr"] .latestBlog .blog-item .btn-blog {
    transform: rotateY(180deg);
}

.latestBlog .blog-item .btn-blog a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--third-color);
    transition: all .4s linear;
}

.latestBlog .blog-item .btn-blog:hover a {
    transform: translateX(-10px);
}

@media (max-width: 768px) {
    #blog-page .categories-blog {
        flex-direction: column-reverse;
        justify-content: center;
        padding: 15px;
    }

    #blog-page .categories-blog .search-box {
        border-inline-start: 0;
        width: 100%;
    }
}

/* End Blog Page -----------------------------------*/
/* Start Single Blog Page -----------------------------------*/
.blog-single-image {
    max-width: 750px;
    height: auto;
    margin: auto;
    text-align: center;
    position: relative;
    padding: 24px;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #E7E7E7;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.04);
}

.blog-single-image .blog-single-title {
    position: absolute;
    top: -20px;
    border-radius: 20px;
    padding: 10px 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 1px solid #E7E7E7;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.04);
}

.blog-single-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* End Single Blog Page -----------------------------------*/
/* Start News Page -----------------------------------*/
.news-hero-text {
    backdrop-filter: blur(3px);
    background-color: rgb(255 255 255 / 45%);
    border-radius: 16px 16px 0px 0px;
    position: absolute;
    width: 100%;
    padding: 20px;
    bottom: 0;
    left: 0;
}

/* End News Page -----------------------------------*/
/* Start About Page */
/* Start About us home Page section */
#about-us-home-page .about-us-pernt {
    display: flex;
    justify-content: center;
    gap: 25px;
}

#about-us-home-page .image-div {
    position: relative;
    margin: auto;
    min-width: 500px;
    min-height: 550px;
}

#about-us-home-page .image-div .image-back,
#about-us-home-page .image-div .image-front {
    /* position: relative; */
}

#about-us-home-page .image-div .image-back::after,
#about-us-home-page .image-div .image-front::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}

#about-us-home-page .image-div .image-back::after {
    z-index: -1;
    border: 2px solid var(--Secondary-color);
    top: 20px;
    left: 27px;
}

#about-us-home-page .image-div .image-front::after {
    border: 2px solid var(--primary-color);
    top: -20px;
    z-index: -1;
}

html[dir="rtl"] #about-us-home-page .image-div .image-front::after {
    left: -35px;
}
html[dir="ltr"] #about-us-home-page .image-div .image-front::after {
    right: -35px;
}


#about-us-home-page .image-div .image-back {
    position: relative;
    width: 450px;
    height: 450px;
    z-index: 2;
}

#about-us-home-page .image-div .image-front {
    top: 35%;
    width: 340px;
    height: 340px;
    z-index: 4;
    position: absolute;
}

html[dir="rtl"] #about-us-home-page .image-div .image-front {
    right: -25%;
}

html[dir="ltr"] #about-us-home-page .image-div .image-front {
    left: -25%;
}

#about-us-home-page .about-us-pernt .info .text h2 {
    color: var(--primary-color);
    font-size: clamp(30px, 39px, 5vw);
    font-weight: 700;
}

#about-us-home-page .about-us-pernt .info .text p {
    color: var(--muted-color-02);
    line-height: 1.6;
    text-align: start;
    font-size: clamp(20px, 25px, 5vw);
}

html[dir="rtl"] #about-us-home-page .image-div .image-back img ,
html[dir="rtl"] #about-us-home-page .image-div .image-back::after {
    border-radius: 0px 8px 200px 8px;
}

html[dir="ltr"] #about-us-home-page .image-div .image-back img ,
html[dir="ltr"] #about-us-home-page .image-div .image-back::after {
    border-radius: 0px 8px 8px 200px;
}

html[dir="rtl"] #about-us-home-page .image-div .image-front img ,
html[dir="rtl"] #about-us-home-page .image-div .image-front::after {
    border-radius: 120px 8px 8px 8px;
}

html[dir="ltr"] #about-us-home-page .image-div .image-front img ,
html[dir="ltr"] #about-us-home-page .image-div .image-front::after {
    border-radius: 8px 120px 8px 8px;
}

#about-us-home-page .image-div .image-back img,
#about-us-home-page .image-div .image-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1440px) {
    #about-us-home-page .image-div .image-back {
        width: 330px;
        height: 330px;
    }

    #about-us-home-page .image-div .image-front {
        width: 300px;
        height: 300px;
        right: 0;
    }

    #about-us-home-page .image-div .image-back,
    #about-us-home-page .image-div .image-front {
        margin: auto;
    }
}

@media (max-width: 991px) {
    #about-us-home-page .about-us-pernt {
        flex-direction: column;
    }

    #about-us-home-page .about-us-pernt .image-div {
        min-width: unset;
        min-height: 450px;
    }
}


@media (max-width: 420px) {
    #about-us-home-page .about-us-pernt .info .text {
        text-align: center;
    }

    #about-us-home-page .image-div .image-back,
    #about-us-home-page .image-div .image-front {
        width: 255px;
        height: 265px;
    }

}

@media (max-width: 320px) {
    #about-us-home-page .about-us-pernt .info .text {
        text-align: center;
    }

    #about-us-home-page .image-div {
        display: none;
    }

}

/* End about us home page section */
/* Start About Page */
#about-us .about-platform {
    padding: 20px 40px;
    border-radius: 20px;
    border: 1px solid #F1F1F1;
    box-shadow: 0 2px 12px rgba(0, 83, 147, 0.08);
    text-align: center;
}

#about-us .about-platform .image img {
    width: 320px;
    height: 320px;
    margin: auto;
    object-fit: contain;
}

#about-us .about-platform>p {
    max-width: 500px;
    line-height: 1.6;
    font-weight: 500;
    font-size: clamp(19px, 21px, 4vw);
}

#about-us .pics-box {
    position: relative;
    background-image: url(../images/newimages/Cool-Shape.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 83, 147, 0.08);
}

#about-us .pics-box .front-img,
#about-us .pics-box .back-img {
    position: absolute;
    padding: 20px;
}

#about-us .pics-box .front-img img,
#about-us .pics-box .back-img img {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#about-us .pics-box .front-img {
    width: 310px;
    height: 320px;
    z-index: 5;
}

#about-us .pics-box .back-img {
    width: 360px;
    height: 375px;
    z-index: 2;
}

html[dir="rtl"] #about-us .pics-box .front-img {
    left: 15px;
    bottom: 15px;
}

html[dir="ltr"] #about-us .pics-box .front-img {
    right: 15px;
    bottom: 15px;
}

html[dir="rtl"] #about-us .pics-box .back-img {
    right: 15px;
    top: 15px;
}

html[dir="ltr"] #about-us .pics-box .back-img {
    left: 15px;
    top: 15px;
}

#about-us .about .bottom-section,
#about-us .about .top-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

#about-us .about .bottom-section .image,
#about-us .about .top-section .image {
    flex-basis: 50%;
    background-color: var(--primary-color);
    position: relative;
}

#about-us .about .top-section .image {
    border-radius: 20px 20px 0px 0px;
    text-align: center;
}

#about-us .about .bottom-section .image {
    border-radius: 0px 0px 20px 20px;
}

#about-us .about .bottom-section .image::after,
#about-us .about .top-section .image::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 200px;
    height: 200px;
    background-image: url(../images/newimages/sun-digital-abot.png);

}

html[dir="rtl"] #about-us .about .top-section .image::after {
    top: -15%;
    left: -15%;
}

html[dir="ltr"] #about-us .about .top-section .image::after {
    top: -15%;
    right: -15%;
}

html[dir="rtl"] #about-us .about .bottom-section .image::after {
    bottom: -15%;
    right: -15%;
}

html[dir="ltr"] #about-us .about .bottom-section .image::after {
    bottom: -15%;
    left: -15%;
}

#about-us .about .bottom-section .image img,
#about-us .about .top-section .image img {
    width: 465px;
    height: 505px;
    object-fit: contain;
    margin-top: auto;
}

#about-us .about .bottom-section .image img {
    transform: rotateY(180deg);
}

#about-us .about .bottom-section .text,
#about-us .about .top-section .text {
    max-width: 500px;
    text-align: center;
    display: grid;
    justify-content: center;
    place-content: center;
    padding: 15px 25px;
    align-items: center;
    margin: auto;

}

#about-us .about .bottom-section .text p,
#about-us .about .top-section .text p {
    line-height: 1.7;
    font-weight: 600;
    color: var(--third-color);
}

#about-us .about .middale-sction {
    position: relative;
    background-color: var(--primary-color);
    min-height: 150px;
}

html[dir="rtl"] #about-us .about .middale-sction {
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

html[dir="ltr"] #about-us .about .middale-sction {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

#about-us .about .middale-sction .right-circle-shape,
#about-us .about .middale-sction .left-circle-shape {
    position: absolute;
    display: flex;
    gap: 20px;
    align-items: center;
}

html[dir="rtl"] #about-us .about .middale-sction .left-circle-shape {
    top: 15px;
    left: 15px;
}

html[dir="ltr"] #about-us .about .middale-sction .left-circle-shape {
    bottom: 15px;
    left: 15px;
}

html[dir="rtl"] #about-us .about .middale-sction .right-circle-shape {
    bottom: 15px;
    right: 15px;
}

html[dir="ltr"] #about-us .about .middale-sction .right-circle-shape {
    top: 15px;
    right: 15px;
}

#about-us .about .middale-sction .right-circle-shape img,
#about-us .about .middale-sction .left-circle-shape img {
    width: 124px;
    height: 124px;
    object-fit: contain;
}

@media (max-width: 992px) {
    #about-us .pics-box {
        min-height: 550px;
    }

    #about-us .about .bottom-section .text,
    #about-us .about .top-section .text {
        max-width: 300px;
        text-align: justify;
    }

    html[dir="rtl"] #about-us .about .top-section .image::after {
        top: -18%;
        left: -25%;
    }

    html[dir="ltr"] #about-us .about .top-section .image::after {
        top: -18%;
        right: -25%;
    }

    html[dir="rtl"] #about-us .about .bottom-section .image::after {
        bottom: -18%;
        right: -25%;
    }

    html[dir="ltr"] #about-us .about .bottom-section .image::after {
        bottom: -18%;
        left: -25%;
    }
}

@media (max-width: 768px) {

    #about-us .pics-box .front-img,
    #about-us .pics-box .back-img {
        width: 250px;
        height: 250px;
    }

    #about-us .about .bottom-section,
    #about-us .about .top-section {
        flex-direction: column;
        justify-content: center;
    }

    #about-us .about .bottom-section .image,
    #about-us .about .top-section .image {
        flex-basis: auto;
    }

    html[dir="rtl"] #about-us .about .top-section .image::after {
        top: -31%;
        left: 30%;
    }

    html[dir="ltr"] #about-us .about .top-section .image::after {
        top: -31%;
        right: 30%;
    }

    html[dir="rtl"] #about-us .about .bottom-section .image::after {
        bottom: -31%;
        right: 30%;
    }

    html[dir="ltr"] #about-us .about .bottom-section .image::after {
        bottom: -31%;
        left: 30%;
    }

    #about-us .about .bottom-section .image img,
    #about-us .about .top-section .image img {
        width: 250px;
        height: 250px;
    }

    #about-us .about .middale-sction {
        display: none;
    }
}

#about-us .founders .founder-item {
    min-height: 250px;
}

#about-us .founders .founder-item .img-founder {
    width: 200px;
    height: 150px;
}

#about-us .founders .founder-item .img-founder img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
}

/* End About Page */
/* Start Login Page */
@media (min-width: 992px) {
    .main-header .menu-container .main-menu .menu_item .menu_link.link-profile {
        border-radius: 12px;
        border: 1px solid #F1F1F1;
        box-shadow: 0px 2px 12px #00000014;
    }

    .main-header .menu-container .dropdown-profile .dropdown-menu {
        border-radius: 12px;
    }
}

.login-bg-image {
    position: absolute;
    opacity: .8;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/newimages/logo-bg-page.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.signup-tab {
    border-radius: 4px;
}

.signup-tab button {
    color: #060606;
    font-weight: 600;
    background-color: transparent;
    border-radius: 4px;
    transition: all .2s linear;
}

.signup-tab button.active {
    background-color: var(--third-color);
    color: #ffffff;
}

.login-img {
    max-height: 550px;
}

.login-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-img-login {
    position: absolute;
    background-color: rgba(254, 254, 254, 0.20);
    backdrop-filter: blur(4px);
    padding: 15px 10px;
    bottom: 0;
    width: 100%;
}

.text-img-login>* {
    color: #ffffff;
}

.blog-swiper-slide {
    height: 350px;
}

#submit_free_reg_btn {
    width: 260px;
    font-size: 17px;
    font-weight: 600;
}

.courseFrontPage .text-colot-primary {
    font-size: 1.25rem;
}

.loginRegisterForm {
    margin: 0 auto;
}

.user-review-image {
    width: 120px !important;
    height: 120px;
}

/* End Login Page */
/* Start Privet Lesson Courses */
.private-lesson-item {
    box-shadow: 0 2px 12px rgba(5, 18, 66, 0.04);
}

/*@media (max-width: 475px) {
    .mobile-table {
        display: flex;
    }

    .mobile-table thead tr,
    .mobile-table tbody tr {
        display: flex;
        flex-direction: column;
    }

    .mobile-table> :not(caption)>*>* {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #ccc;
        height: 75px;
    }
}*/
.mobile-table thead>*>*,
.mobile-table tbody>*>* {
    font-size: clamp(10px, 17px, 4vw);
}

/* End Privet Lesson Courses */
@media (max-width: 768px) {
    .widget_item-notification {
        flex-direction: column;
    }

    #course_row_21 {
        display: flex;
        flex-wrap: wrap;
    }

    #course_row_21>td {
        width: calc(100% / 2);
    }

    .table.table-cart tr td,
    .table.table-cart tr th {
        padding: 10px 5px;
        font-size: 11px;
    }
}

.fixed-social ul li a {
    font-size: 20px;
    color: #2c7eb3;
}

/* Start All Animation Keyframes */
@-webkit-keyframes sticky {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes sticky {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

/* End All Animation Keyfream */
/* Start Privacy Main Menu List */
.privacy-menu {
    padding: 10px;
}

.privacy-menu ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.privacy-menu ul .privacy-item {
    border-radius: 4px;
    padding: 4px 8px;
    font-size: clamp(14px, 20px, 5vw);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .3s linear;
}

.privacy-menu ul .privacy-item .privacy-icon img,
.privacy-menu ul .privacy-item .privacy-icon svg {
    width: 24px;
    height: 24px;
}

.privacy-menu ul .privacy-item.active,
.privacy-menu ul .privacy-item:hover {
    background: rgba(44, 126, 179, 0.12);
    font-weight: 700;
}

.privacy-menu ul .privacy-item:hover a {
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .privacy-menu {
        min-height: 100dvh;
        border-inline-end: 1px solid rgba(5, 18, 66, 0.12);
    }
}

@media (max-width: 991px) {
    .privacy-menu {
        border-block-end: 1px solid rgba(5, 18, 66, 0.12);
        margin-bottom: 15px;
    }

    .privacy-menu ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* End Privacy Main Menu List */
/* Start FAQs Page */
.faq-image-course img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.section-faq .faq-image,
.contact-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.section-faq .faq-image img,
.contact-image img {
    width: 100%;
    height: 315px;
    object-fit: cover;
}

.section-faq .faq-image .text,
.contact-image .text {
    position: absolute;
    background-color: rgba(254, 254, 254, 0.20);
    backdrop-filter: blur(10px);
    padding: 15px 10px;
    bottom: 0;
    width: 100%;
}

.section-faq .widget__item-faq {
    border-bottom: 1px solid var(--primary-color);
}

.section-faq .widget__item-faq .faq-text>* {
    color: var(--muted-color);
}

/* End FAQs Page */
/* Start Contact Page */
.contact-form {
    border: 0;
    border-bottom: 1px solid #d5d5d5;
    padding: 6px 8px;
    transition: all .3s linear;
    width: 100%;
}

.contact-form:focus {
    border-bottom: 1px solid var(--primary-color);
}

/* ENd Contact Page */
.myCourses {
    border-radius: 12px;
    border: 1px solid var(--Secondary-color);
    padding: 0px 10px;
    background-color: var(--Secondary-color);
    color: #fff !important;
    font-size: clamp(12px, 18px, 4vw);
}

.myCourses:hover {
    border: 1px solid var(--Secondary-color);
    background-color: transparent !important;
    color: var(--Secondary-color) !important;
}

/* Start Calendar */
@media (max-width: 420px) {

    #calendar .event-data>* {
        font-size: 10px;
    }

    #calendar .fc-view-harness {
        height: 180px !important;
    }

    .message-body {
        padding: 10px !important;
    }

    .fc .fc-col-header-cell-cushion {
        padding: 2px !important;
    }

    .fc .fc-toolbar {
        flex-direction: column !important;
    }

    .day-number {
        text-align: center !important;
        margin: auto;
    }

    .fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
        min-height: 1.2rem !important;
    }
}

/* End Calendar */
.deletedCourse {
    background-color: #e9e9e9;
}

.deletedCourse .primary-btn {
    background-color: #54555b;
}

.courseType-item-check {
    display: none;

}
