/* Variables */

:root {
    --red: #F14D5D;
    --blue: #2878EB;
    --green: #1DC295;
    --black: #120F2D;
    --transition: all 0.2s ease-in-out 0.000001s;
}


/* End Variables */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

/* General Style */

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
    font-family: 'dana';
    direction: rtl !important;
}

body {
    margin: 0px;
    overflow-x: hidden !important;
}

a {
    text-decoration: none;
    cursor: pointer !important;
}

li {
    list-style: none;
    user-select: none;
}

button {
    border-radius: 5px;
    cursor: pointer !important;
    font-weight: 500;
}

input {
    user-select: none;
}

h2 {
    margin-top: 5px;
    font-size: 26.5px;
}

p,
a {
    font-weight: 400;
}

h4 {
    color: var(--red);
}

h3 a {
    font-weight: 700;
}

img {
    user-select: none;
    border-radius: 10px;
    font-size: 13px;
}

blockquote p {
    color: rgb(37, 37, 37) !important;
}

/* End General Style */


/* Ready Classes */

.container {
    width: 1125px;
    margin: 0 auto;
}

.d-flex {
    display: flex !important;
}

.d-inline-block {
    display: inline-block;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.clear-fix {
    clear: both;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.w-50 {
    width: 50%;
}

.h-50 {
    height: 50%;
}

.text-center {
    text-align: center;
}

.nowrap {
    white-space: nowrap !important;
}

.m-0 {
    margin: 0 !important;
}

.mr-1 {
    margin-right: 10px;
}

.mr-2 {
    margin-right: 20px;
}

.mr-3 {
    margin-right: 30px;
}

.mr-5 {
    margin-right: 50px;
}

.mr-6-5 {
    margin-right: 65px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.pr-5 {
    padding-right: 50px;
}

.active .course-tab {
    color: #05F;
    background-color: #fff;
}

/* User Profile */

.user-profile {
    z-index: 100;
}

.user-profile-content {
    cursor: pointer;
}

.user-profile-name {
    margin-top: -5px;
    font-size: 16px !important;
    font-weight: 600;
    color: #111 !important;
    transition: var(--transition);
}


.user-profile-name:hover {
    color: var(--blue) !important;
}

.user-profile-name i {
    display: inline-block !important;
    margin-left: 5px;
    font-size: 14px;
    font-weight: 600;
}

.user-profile-img {
    margin-right: 10px;
}

.user-profile-img img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.user-profile-dropdown-content {
    top: 85px;
    z-index: 10000000;
    background: aliceblue;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.2s linear 0.0001s;
    width: 185px !important;
    visibility: hidden;
}

.user-profile-dropdown-content-list-item-link {
    transition: var(--transition);
}

.user-profile-dropdown-content-list-item-link:hover {
    color: var(--blue) !important;
}

@keyframes opacityAnimationFirstCondition {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes opacityAnimationSecondCondition {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.user-profile-dropdown-content ul li a {
    font-size: 15px !important;
    color: #111;
    transition: var(--transition);
    font-weight: 500;
}

.user-profile-dropdown-content ul li:last-child a {
    color: var(--red) !important;
}

.user-profile-dropdown-content ul li a:hover {
    color: var(--blue);
}

.flex-basis-75 {
    flex-basis: 75%;
}

.flex-basis-25 {
    flex-basis: 25%;
}

/* End User Profile */

/* Flex */

.justify-content-space-between {
    justify-content: space-between;
}

.justify-flex-end {
    justify-content: flex-end;
}

.align-items-center {
    align-items: center;
}

.flex-direction-column {
    flex-direction: column;
}

.justify-content-center {
    justify-content: center;
}

.d-grid {
    display: grid;
}

/* End Flex */

/* End Ready Classes */



/* Header Section Style */

/* Notification Slider */

.notification-slider {
    height: 300px;
    margin-top: 30px;
}

.slider {
    box-shadow: 10px 5px 30px black;
}

.slider-item img {
    border: 3px solid #eaeaea;
}

.slider-item {
    animation: fadeBanner 0.7s linear;
    display: none;
    position: absolute;
}

@keyframes fadeBanner {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1
    }
}

.arrow {
    color: #FFF;
    font-size: 35px;
    position: absolute;
    z-index: 10000;
    top: 34%;
    transform: translateY(10%);
    cursor: pointer;
}

.left-arrow {
    left: 10px;
    padding: 10px 10px 10px 0px;
}

.right-arrow {
    right: 10px;
    padding: 10px 0px 10px 10px;
}

/* End Notification Slider */

/* Header Top Section */

header .user-profile-container {
    flex-basis: 30%;
}

.header-top-section {
    height: 110px;
    padding: 0px 40px;
}

.alt-menu-logo img {
    width: 150px !important;
    margin-top: -8px;
}

.hamburger-icon {
    display: none;
    margin-right: 15px;
    border: 1px dotted var(--red);
    padding: 3px 5px 0px 5px;
    z-index: 100;
}

.hamburger-icon i {
    font-size: 19px;
    color: var(--red);
}

.alt-menu {
    position: fixed;
    top: 0px;
    right: -290px;
    z-index: 10000 !important;
    background-color: #FFF;
    width: 290px;
    height: 100vh;
    padding: 25px 20px;
    transition: all 0.55s ease-in-out 0.0001s;
    box-shadow: 0 10px 30px 0 rgb(255 165 0 / 0%);
}

.alt-menu-top-section {
    height: 45px;
    margin-bottom: 40px;
}

.alt-menu-top-section .header-logo {
    margin-right: 0px !important;
}

.alt-menu-top-section img {
    width: 160px !important;
    margin-top: -10px !important;
}

.alt-menu ul li {
    margin-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 12px;
}

.alt-menu-close {
    border: 1px solid #00000080;
    padding: 5px 14.5px 0px 14.5px;
    height: 39.5px;
}

.alt-menu-close button {
    color: var(--red);
    border: none;
    background-color: transparent;
    font-size: 17px;
}

.bg-dark-body {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.menu {
    flex-basis: 70%;
}

.header-nav {
    margin-right: 30px;
}

.header-nav>ul {
    top: 5px;
}

.header-menu-item {
    margin-left: 30px;
    color: #111;
    transition: var(--transition);
    font-size: 17px;
    cursor: pointer;
}

.dropdown {
    border-bottom: 3px solid #FFF;
    height: 35px;
}

.dropdown:hover {
    border-bottom-color: var(--blue);
}

#useful-links {
    transition: rotate 0.2s ease-in-out 0.00001s;
}

.dropdown:hover #useful-links {
    rotate: 180deg;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    opacity: 1;
}

.dropdown-content {
    opacity: 0;
    background-color: #FFF;
    padding: 5px 10px;
    right: 0;
    top: 35px;
    transition: all 0.2s ease 0.0001s;
    width: 200px;
    z-index: 1000000;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.dropdown-content li {
    margin-bottom: 10px;
}

.dropdown-content li:hover {
    letter-spacing: 0.5px;
}

.dropdown-content li:last-child {
    margin: 0;
}

.dropdown-content li a {
    font-size: 16px;
}

.header-menu-item i {
    font-size: 14px;
    color: inherit;
}

.header-menu-item:hover {
    color: var(--blue);
}

.header-menu-item-link {
    color: #111;
    transition: var(--transition);
    font-size: 17px;
}

.header-menu-item-link:hover {
    color: var(--blue);
}

.header-actions {
    z-index: 1000;
}

.header-actions a button {
    border-style: none;
    background-color: var(--red);
    color: #fff;
    padding: 13px 35px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.header-actions a:hover button {
    background-color: var(--blue);
}

.header-actions a button i {
    margin-left: 3px;
    transition: var(--transition);
}

/* End Header Top Section */

/* End Header Section Style */


/* Footer Section Style */

#footer {
    margin-top: 250px;
    background-color: var(--black);
}

#footer p {
    color: #B8B7C0;
}

#footer h4 {
    color: #FFF;
}

.footer-main {
    display: flex;
}

.footer-main h4 {
    font-size: 17px;
}

.footer-content {
    padding: 220px 0px 25px;
}

.footer-logo a img {
    width: 300px;
}

.e-namad {
    margin-top: 30px;
}

.e-namad img {
    background-color: #FFF;
    width: 100px;
    height: 100px;
}

.footer-logo-desc p {
    font-size: 13.5px !important;
}

.footer-col {
    width: calc(100% / 3 - 10px);
    justify-content: center;
}

.footer-col:first-child {
    justify-content: stretch;
}

.footer-col:nth-child(3) {
    margin-right: 20px;
}

.footer-col:last-child {
    justify-content: flex-end;
}

.footer-logo-desc {
    margin-top: 20px;
}

.footer-social-media {
    margin-top: 30px;
}

.footer-social-media ul li,
.footer-social-media ul li a {
    color: #FFF;
    font-size: 15px;
}

.footer-quick-access {
    margin-right: 50px;
}


.footer-quick-access-main {
    margin-top: 30px;
}

.footer-quick-access-main ul li {
    margin-bottom: 10px;
}

.footer-quick-access-main ul li a {
    transition: var(--transition);
    color: #B8B7C0;
    font-size: 14px;
}

.footer-quick-access-main ul li a:hover {
    color: #FFF;
    letter-spacing: 0.7px;
}

.footer-contact-info-main ul li span:first-child {
    color: #FFF;
    font-size: 14px;
}

.footer-contact-info-main ul li span:last-child {
    color: #B8B7C0;
    font-size: 14px;
}

.footer-contact-info-main ul li {
    margin-bottom: 20px;
}

.footer-contact-info-main {
    margin-top: 30px;
}

.footer-useful-links {
    width: 130px;
}

.footer-useful-links-main {
    margin-top: 25px;
}

.footer-useful-links-main ul li {
    margin-bottom: 10px;
}

.footer-useful-links-main ul li a {
    color: #B8B7C0;
    font-size: 14px;
    transition: var(--transition);
}

.footer-useful-links-main ul li a:hover {
    color: #FFF;
    letter-spacing: 0.7px;
}

.footer-copyright {
    background-color: #101013;
    padding: 20px 0px;
}

.footer-copyright p {
    color: #FFF !important;
    font-size: 15px !important;
    user-select: none;
    cursor: text;
    line-height: 27px;
}

.footer-col h4 {
    font-size: 19px;
}

/* Newsletter */

.newsletter {
    top: -120px;
    background-image: url("../../images/subscribe-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 70px;
    border-radius: 5px;
}

.newsletter_box {
    justify-content: space-between;
}

.newsletter_box_text {
    flex-basis: 50%;
}

.newsletter_box_text h2 {
    color: #FFFFFF;
    font-weight: 500;
}

.newsletter_box_form {
    flex-basis: 45%;
}

.newsletter_box_form input {
    border-radius: 5px;
    border: 1px solid #FFFFFF;
    padding: 17px 25px;
    font-size: 15px;
}

.newsletter_box_form input:focus {
    border-color: var(--red);
}

.newsletter_box_form button {
    left: 5px;
    top: 6.5px;
    background-color: var(--red);
    color: #FFFFFF;
    font-size: 16px;
    transition: var(--transition);
    padding: 12px 25px;
}

.newsletter_box_form button:hover {
    background-color: var(--blue);
}

.newsletter_box_form button i {
    margin-right: 6px;
    top: 1.25px;
}

.newsletter_box_form p {
    color: rgba(214, 214, 214, 0.861) !important;
    font-size: 18px;
    margin-top: 10px;
}

.newsletter_box_form p i {
    color: var(--red);
    top: 2.5px;
    margin-left: 3px;
}

/* End Newsletter */

/* End Footer Section Style */


/* Responsive Section */

@media screen and (min-width: 992px) {
    nav.alt-menu {
        display: none !important;
    }

    div.bg-dark-body {
        display: none !important;
    }

    /* .arrow {
        top: 35%;
        font-size: 30px;
    } */
}

/* DOM BreakPoint: 1125px */


@media screen and (max-width: 1125px) {
    .container {
        width: 992px;
        padding: 0px 15px;
    }

    .arrows {
        width: calc(100% - 27px) !important;
    }

    .slider-item img {
        width: 962px !important;
    }

    h4 {
        font-size: 14.5px;
    }

    h3 {
        font-size: 17px;
    }

    h2 {
        font-size: 23px;
    }

    h1 {
        font-size: 30px !important;
    }

    .left-arrow {
        left: 25px;
    }

    .right-arrow {
        right: 25px;
    }

    .arrow {
        top: 26%;
    }

    .newsletter {
        padding: 70px 30px;
        top: -105px;
    }

    .newsletter_box_form button {
        padding: 9px 25px;
        font-size: 15px;
    }

    .newsletter_box_form input {
        padding: 14px 25px;
    }

    .footer-content {
        padding-top: 190px;
    }
}

/* DOM BreakPoint: 992px */

@media screen and (max-width: 992px) {
    .container {
        width: 768px;
    }

    .slider-item img {
        width: calc(100% - 15px) !important;
    }

    h1 {
        font-size: 27px !important;
    }

    .hamburger-icon {
        display: block;
    }

    .menu {
        flex-basis: 60% !important;
    }

    .logo {
        flex-basis: 40% !important;
    }

    header .user-profile-container {
        flex-basis: 40% !important;
    }

    .header-nav {
        display: none;
    }

    .footer-main {
        display: grid;
        grid-template-columns: repeat(2, auto);
    }

    .footer-col {
        width: 100%;
        justify-content: flex-start !important;
    }

    .notification-slider {
        height: 195px !important;
    }

    .footer-logo-desc {
        margin-top: 10px;
    }

    .footer-quick-access,
    .footer-col:nth-child(3) {
        margin-right: 0px !important;
    }

    .footer-quick-access-main {
        margin-top: 20px;
    }

    .footer-logo-desc p {
        width: 62%;
        line-height: 27px;
    }

    .footer-social-media {
        margin-top: 30px;
    }

    .footer-col:nth-child(3) {
        margin-top: 25px;
    }

    .footer-col:last-child {
        margin-top: 25px;
    }

    .footer-contact-info-main ul li:last-child {
        width: 62%;
        line-height: 27px;
    }

    .footer-col:nth-child(2) {
        justify-content: start;
    }

    .newsletter {
        padding: 50px 30px;
        top: -90px;
    }

    .newsletter_box_text h2 {
        font-size: 20px;
    }

    .newsletter_box_form button {
        padding: 7px 20px;
        top: 5px;
    }

    .newsletter_box_form input {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* DOM BreakPoint: 768px */

@media screen and (max-width: 768px) {
    .container {
        width: calc(100% - 30px);
        padding: 0px 15px;
    }

    .slider-item img {
        width: calc(100% - 15px) !important;
    }

    h2 {
        font-size: 22px;
    }

    h4 {
        font-size: 14px;
    }

    h3 a {
        font-size: 16px;
    }

    p {
        font-size: 13px;
    }

    .header-top-section {
        /* flex-direction: column-reverse; */
        flex-direction: row;
        padding: 10px 15px;
    }

    /* .menu {
        flex-basis: 0%;
    } */

    .header-actions {
        margin-right: 10px;
    }

    .header-actions a button {
        font-size: 10px;
        padding: 8px 9px !important;
    }

    .header-actions a button i {
        margin-right: 1.5px;
    }

    .header-logo {
        text-align: center;
        /* margin-bottom: 30px; */
        margin-right: 10px;
    }

    .header-logo a img {
        width: 180px !important;
    }

    .hamburger-icon {
        margin: 0px;
    }

    .menu {
        justify-content: right;
        flex-direction: row-reverse;
        margin-top: 15px;
    }

    .logo {
        margin-bottom: -30px;
    }

    #footer {
        margin-top: 190px;
    }

    .footer-col:nth-child(3),
    .footer-col:last-child {
        margin-top: 35px;
    }

    .menu-search-bar {
        display: none !important;
    }

    .header-logo {
        margin-bottom: 10px;
    }

    .user-profile-dropdown-content {
        top: 60px !important;
    }

    .notification-slider {
        height: 155px !important;
    }

    .left-arrow,
    .right-arrow {
        font-size: 25px;
    }

    .arrow {
        top: 22%;
    }
}


/* DOM BreakPoint: 576px */


@media screen and (max-width: 576px) {
    .container {
        width: calc(100% - 20px);
        padding: 0px 10px;
    }

    .alert {
        width: 100% !important;
    }

    .footer-content {
        padding-top: 350px;
    }

    .footer-logo-desc p {
        width: 100%;
    }

    /* #recaptcha_challenge_image {
        margin: 0 !important;
        width: 100% !important;
        height: auto !important;
    }
    
    #recaptcha_response_field {
        margin: 0 !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .recaptchatable #recaptcha_image {
        margin: 0 !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .recaptchatable .recaptcha_r1_c1,
    .recaptchatable .recaptcha_r3_c1,
    .recaptchatable .recaptcha_r3_c2,
    .recaptchatable .recaptcha_r7_c1,
    .recaptchatable .recaptcha_r8_c1,
    .recaptchatable .recaptcha_r3_c3,
    .recaptchatable .recaptcha_r2_c1,
    .recaptchatable .recaptcha_r4_c1,
    .recaptchatable .recaptcha_r4_c2,
    .recaptchatable .recaptcha_r4_c4,
    .recaptchatable .recaptcha_image_cell {
    
        margin: 0 !important;
        width: 100% !important;
        background: none !important;
        height: auto !important;
    } */

    .s-mt-3 {
        margin-top: 30px;
    }

    .header-motivation {
        padding: 0px 10px;
    }

    .footer-main {
        grid-template-columns: repeat(1, auto);
    }

    .header-top-section {
        height: auto !important;
    }

    header .user-profile-container {
        margin-top: 15px;
        flex-basis: 45%;
    }

    #footer h4 {
        font-size: 16px !important;
    }

    .footer-main p {
        font-size: 12px !important;
    }

    .footer-col:first-child {
        margin-bottom: 30px;
    }

    .footer-social-media {
        margin-top: 15px;
    }

    .footer-quick-access-main {
        margin-top: 15px;
    }

    .footer-quick-access-main ul li {
        margin-bottom: 7px;
    }

    .footer-contact-info-main {
        margin-top: 20px;
    }

    .footer-contact-info-main ul li {
        margin-bottom: 12px;
    }

    .footer-useful-links-main {
        margin-top: 15px;
    }

    .footer-useful-links-main ul li {
        margin-bottom: 7px;
    }

    .menu {
        height: 40% !important;
    }

    .logo {
        flex-basis: 60% !important;
    }

    .menu .header-logo {
        width: 175px !important;
        margin-right: 5px;
    }

    .menu .header-logo img {
        width: 100% !important;
    }


    /*.alt-menu .header-logo {*/
    /*    display: inline-block !important;*/
    /*}*/

    /*.user-profile-content {*/
    /*    width: 230px;*/
    /*}*/

    .notification-slider {
        margin-top: 30px;
    }

    .slider-item {
        top: 0;
    }

    .slider-item img {
        object-fit: contain;
        border: 0;
    }

    .left-arrow {
        display: none !important;
    }

    .right-arrow {
        display: none !important;
    }


    .e-namad img {
        width: 70px;
        height: 70px;
    }

    .newsletter {
        padding: 45px 20px;
        background-position: top;
    }

    .newsletter_box {
        flex-direction: column;
    }

    .newsletter_box_text h2 {
        font-size: 26px;
        font-weight: 600;
    }

    .newsletter_box_form {
        width: 100%;
        margin-top: 55px;
    }

    .newsletter_box_form p {
        margin-top: 15px !important;
        font-size: 15px !important;
    }

    .newsletter_box_form input {
        padding: 14px 18px;
        font-size: 14px;
    }

    .newsletter_box_form button {
        padding: 9px 20px;
        top: 5px;
    }
}

/* DOM BreakPoint: 450px */
@media screen and (max-width: 450px) {
    .menu .header-logo {
        display: none;
    }
}

/* DOM BreakPoint: 380px */

@media screen and (max-width: 380px) {
    .menu {
        flex-basis: 50% !important;
    }

    .alt-menu {
        width: 100% !important;
        right: -400px;
    }

    /* .menu>.header-logo {
        display: none;
    } */

    /* .menu {
        margin-top: 20px;
    } */

    .header-logo img {
        width: 150px !important;
    }

    header .user-profile-container {
        margin-top: 10px !important;
    }

    .menu {
        flex-basis: 10% !important;
    }

    .menu+div {
        flex-basis: 90% !important;
    }

    .menu .header-logo {
        display: none;
    }

    .menu .alt-menu .header-logo {
        display: block;
    }

    .logo {
        flex-basis: 50% !important;
    }

    #footer {
        margin-top: 210px;
    }

    .footer-content {
        padding-top: 300px;
    }

    .footer-logo a img {
        width: 200px;
    }

    .newsletter {
        top: -125px;
    }
}

/* End Responsive Section */