/* Fonts
===========================*/
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;500;700&display=swap");

/* Setting Style
===========================*/
:root {
    --main_color: #2339db;
    --second_color: #ffff69;
    --third_color: #1A2BA4;
    --weight_bold: 700;
    --weight_reg: 500;
    --weight_normal: 300;
}

*,
:focus {
    outline: 0 !important;
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--main_color) !important;
    color: #fff !important;
}

/* Scroll Bar
===========================*/
/* width */
::-webkit-scrollbar {
    background-color: #f2f7fa;
    width: 8px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: #f2f7fa;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: var(--main_color);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

body {
    overflow: hidden;
    width: 100%;
    background-color: #fff;
    position: relative;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-weight: var(--weight_reg);
}

@media all and (min-width: 1400px) {
    .container {
        max-width: 1170px;
    }
}

/* Loading
==========================*/
.loading {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff;
    top: 0;
}

.loading .load_cont {
    text-align: center;
}

/* Section
============================*/
section {
    padding: 50px 0;
    background-color: #fff;
    position: relative;
}

.colored {
    background-color: #f8f9fe;
}

.section_title {
    margin: 20px 0 20px;
    text-align: center;
}

.section_title h3 {
    color: var(--main_color);
    /* font-weight: var(--weight_bold); */
    font-size: 36px;
    position: relative;
    display: inline-block;
    margin: auto;
}

@media all and (max-width: 576px) {
    section {
        padding: 35px 0;
    }

    .courses {
        padding-top: 60px !important;
    }

    .colored {
        background-color: #f8f9fe;
    }

    .section_title {
        margin: 0 0 25px;
    }

    .section_title h3 {
        font-size: 28px;
    }
}

/* Lists
===========================*/
ul {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

ul li {
    display: inline-block;
}

.rate {
    display: inline-block;
}

.rate li {
    display: inline-block !important;
    color: #ffc107 !important;
}

/* Links
===========================*/
a,
a:hover,
a:focus {
    cursor: pointer;
    text-decoration: none;
}

/* Links
==========================*/
.link {
    margin-top: 15px;
    border: 0;
    background-color: var(--second_color);
    color: var(--main_color);
    padding: 0 20px;
    line-height: 50px;
    border-radius: 25px;
    font-size: 18px;
    text-align: center;
    transition: 0.2s linear all;
}

.link i {
    margin-inline-end: 5px;
    vertical-align: middle;
}

.link:hover {
    background-color: var(--second_color);
    color: var(--main_color);
}

/*Images
===========================*/
img {
    display: block;
    max-width: 100%;
    height: inherit;
    margin: 0 auto;
}

/*  Header
===========================*/
header {
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px 0;
    width: 100%;
    height: 107px;
    background-color: #fff;
    z-index: 9998;
    -webkit-transition: 0.3s linear all;
    -moz-transition: 0.3s linear all;
    -ms-transition: 0.3s linear all;
    -o-transition: 0.3s linear all;
    transition: 0.3s linear all;
}

header.move {
    top: 0;
    background-color: #fff;
}

header .container {
    position: relative;
    min-height: 60px;
}

header .container .flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

header .navbar-brand {
    display: block;
    margin: 5px 0;
    padding: 0;
    position: relative;
    z-index: 999;
    height: 70px;
}

header .navbar-brand img {
    height: 100%;
}

header .btns {
    z-index: 9999;
}

header .btns .lang {
    margin: 0;
    line-height: 37px;
    background-color: transparent;
    border: 3px solid #f6f9fb;
    border-radius: 25px;
    color: #000;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    width: 65px;
    margin-inline-end: 20px;
    font-family: "IBM_medium";
    font-weight: var(--weight_reg);
}

header .btns .lang:hover {
    border-color: #fdc327;
}

header .btns .link {
    margin: 0;
    min-width: 190px;
    line-height: 43px;
    background-color: #fdc327;
    border-radius: 25px;
    color: #000;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 0 15px rgb(253 195 39) !important;
}

header .btns .link:hover {
    background-color: #fff;
}

header .btns .link i {
    display: none;
}

header .btns .link strong {
    font-weight: var(--weight_bold);
    font-family: "Avenir_bold";
}

header .btns .menu-btn {
    vertical-align: middle;
    padding: 0;
    display: none;
    margin: 0;
    line-height: 40px;
    background-color: var(--main_color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    width: 35px;
    height: 35px;
    margin-inline-start: 5px;
    font-weight: var(--weight_reg);
}

header .btns .menu-btn span {
    display: block;
    background-color: #fff;
    height: 2px;
    width: 46%;
    margin: 3px auto;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

header .btns .social {
    display: inline-block;
    vertical-align: middle;
}

header .btns .social a {
    width: 25px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    border-radius: 50%;
    line-height: 24px !important;
    /* margin-inline-start: 5px; */
    background-color: var(--main_color);
    color: #fff;
    border: 1px solid var(--main_color);
}

header .btns .social a:hover {
    color: #fff;
    background-color: var(--main_color);
}

.navbar {
    padding: 0px;
    margin: 0px;
    margin-top: -70px;
}

.navbar .navbar-nav {
    width: 100%;
    height: 100%;
    position: relative;
    /* padding-right: 5%; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.navbar .navbar-nav li {
    display: inline-block;
}

.navbar .navbar-nav li a {
    position: relative;
    display: block;
    padding: 0 25px;
    margin: 0;
    font-size: 18px;
    color: var(--main_color);
    text-align: center;
    line-height: 35px;
    /* font-weight: var(--weight_bold); */
    transition: 0.4s linear all;
}

.navbar .navbar-nav li a img {
    display: inline-block;
    margin-right: 10px;
    margin-left: -30px;
    max-width: none;
}

.navbar .navbar-nav li.active a {
    background-color: var(--main_color);
    color: #fff;
    border-radius: 50px;
}

.navbar .navbar-nav li a.active {
    font-weight: var(--weight_bold);
    font-family: "Avenir_bold";
}

.navbar .navbar-nav li a:hover {
    transform: translateY(-5px);
}

@media all and (max-width: 991px) {
    header .btns .menu-btn {
        display: inline-block;
    }

    .navbar {
        margin-top: 0;
        background-color: var(--main_color);
        overflow: hidden;
        position: absolute;
        width: 100%;
        top: 77px;
    }

    .navbar .container {
        min-height: auto;
    }

    .navbar ul.navbar-nav {
        border-top: 1px solid #fff1;
        display: block;
        text-align: start;
        padding: 15px 0;
    }

    .navbar ul.navbar-nav li {
        width: 49%;
    }

    .navbar ul.navbar-nav li a {
        margin: 5px;
        border: 1px solid #fff4;
        text-align: center;
        margin-inline-end: 0;
        padding: 5px 15px;
        color: #fff;
        border-radius: 25px;
        transform: none !important;
    }

    .navbar ul.navbar-nav li a::after {
        display: none;
    }
}

@media all and (max-width: 576px) {
    header .btns .lang {
        width: 45px;
        margin: 0;
    }

    header .btns .social a {
        margin: 0;
    }

    header .btns .menu-btn {
        margin: 0;
    }

    header .navbar-nav li:first-child {
        transform: none;
    }

    header .navbar-nav li:first-child img {
        display: none;
    }

    header .navbar-nav li a::after {
        display: none;
    }

    header .container .flex {
        padding: 0 20px;
    }

    header .navbar-brand {
        height: 36px;
        margin-top: 12px;
    }
}

/* Main Section
===========================*/
.main_section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/bc.png) center no-repeat;
    background-size: contain !important;
    margin-top: 100px;
    background-repeat: no-repeat !important;
    padding-bottom: 100px;
    height: 550px;
}

.main_section .row {
    position: relative;
    z-index: 99;
}

.intro {
    text-align: center;
    margin-top: 30%;
}

.intro h1 {
    font-size: 72px;
    font-weight: var(--weight_bold);
    color: var(--main_color);
    margin: 0;
    text-align: right;
}

.intro h3 {
    font-size: 44px;
    /* font-weight: var(--weight_bold); */
    color: var(--main_color);
    margin: 10px 0 35px;
    text-align: right;
}

.intro form {
    position: relative;
    max-width: 480px;
    border-radius: 25px;
    overflow: hidden;
    margin: auto;
}

.intro form .form-control {
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    background-color: #fff;
    border: 2px solid var(--main_color);
    border-radius: 25px;
}

.intro form button {
    position: absolute;
    left: 0;
    top: 0;
    height: 45px;
    border: 0;
    padding: 0 25px;
    background-color: var(--main_color);
    color: var(--second_color);
    font-size: 16px;
    z-index: 99;
    line-height: 45px;
}

.intro form button i {
    vertical-align: middle;
    margin-inline-start: 5px;
}

.intro form button:hover {
    background-color: var(--second_color);
    color: var(--main_color);
}

.intro_img {
    max-width: 320px;
    margin: 0 auto;
}

.intro_img img {
    width: 100%;
    margin: auto auto auto 0;
}

.counters {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 940px;
    margin: 10% auto 3%;
}

.counters li {
    font-size: 18px;
    margin: 0 25px;
    min-width: 190px;
    /* font-weight: var(--weight_normal); */
    position: relative;
    line-height: 35px;
}

.counters span {
    display: block !important;
    font-size: 36px;
    font-weight: var(--weight_bold);
    color: #212121;
    margin: 0;
    position: relative;
}

.counters li::before {
    content: "";
    position: absolute;
    background-color: #212121;
    left: -60px;
    bottom: 10px;
    margin: auto;
    width: 1px;
    height: 50px;
}

.counters li:last-child::before {
    display: none;
}

@media all and (max-width: 991px) {
    .counters {
        margin-top: 0px;
    }

    .counters li {
        font-size: 17px;
        margin: 0 15px;
    }
}

@media all and (max-width: 767px) {
    .counters li {
        font-size: 14px;
        margin: 0 10px;
        min-width: auto;
    }

    .counters li span {
        font-size: 36px;
    }

    .counters span::before {
        width: 40px;
        height: 50px;
    }
}

@media all and (max-width: 576px) {
    .intro h1 {
        font-size: 38px;
    }

    .intro h3 {
        font-size: 22px;
        margin: 15px 0 25px;
    }

    .intro form button {
        position: relative;
        width: 100%;
        border-radius: 25px;
        margin-top: 15px;
    }

    .counters {
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .counters li:first-child {
        width: 100%;
    }

    .counters li {
        font-size: 16px;
        margin: 10px auto;
        width: 50%;
    }

    .counters li:first-child::before {
        display: none;
    }

    .counters li::before {
        left: 0;
    }
}

/* Course Item
===========================*/
.courses {
    /* padding-top: 120px; */
}
.trainers-all {
    padding-top: 90px;
}
.courses::before {
    content: "";
    width: 70px;
    height: 190px;
    position: absolute;
    top: -100px;
    left: 40%;
    margin: auto;
    background: url(../images/circle_shap.png) no-repeat;
    background-size: contain;
}

.team_img {
    padding-top: 50px !important;
}

.team_img:before {
    top: 30px;
    left: 20%;
    height: 140px;
}

@media all and (max-width: 576px) {
    .courses::before {
        width: 40px;
        height: 95px;
        top: -50px;
    }
}

.course_item img {
    width: 210px;
    margin-bottom: 15px;
    height: 210px;
    border-radius: 50%;
    text-shadow: -5px 5px #000;
}

.course_item>ul {
    padding: 0 5px;
}

.course_item>ul li {
    display: block;
    color: #212121;
    font-size: 18px;
    margin-top: 10px;
    line-height: 30px;
    font-weight: var(--weight_normal);
}

.course_item ul li span {
    display: inline-block;
    margin-inline-end: 10px;
    min-width: 60px;
}

.course_item ul li strong {
    font-weight: var(--weight_bold);
    font-size: 18px;
}

.course_item {
    border: 1px solid #f1f1f1;
    padding: 5px;
    border-radius: 20px;
    margin: 15px auto;
    max-width: calc(100% - 0px);
    background: #fff;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 15px;
}

.course_item a {
    color: #212121;
}

@media all and (max-width: 1199px) {
    .course_item ul {
        padding: 0;
        text-align: center;
    }

    .course_item>ul li strong {
        font-size: 18px;
    }
}

/* Course Details
==========================*/
.course_cover {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    display: block;
    height: 645px;
}

.course_cover img {
    width: 100%;
}

.video_btn {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100px;
    height: 100px;
    text-align: center;
    background: var(--second_color);
    z-index: 9998;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.video_btn i {
    margin-left: 10px;
    color: var(--main_color);
    font-size: 38px;
    line-height: 100px;
}

.video_btn::after,
.video_btn::before {
    width: 100px;
    height: 100px;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    position: absolute;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(90, 184, 122, 0.6);
    -moz-box-shadow: 0 0 0 0 rgba(90, 184, 122, 0.6);
    -ms-box-shadow: 0 0 0 0 rgba(90, 184, 122, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(90, 184, 122, 0.6);
    box-shadow: 0 0 0 0 rgba(90, 184, 122, 0.6);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.4s, all, linear;
    -moz-transition: 0.4s, all, linear;
    -ms-transition: 0.4s, all, linear;
    -o-transition: 0.4s, all, linear;
    transition: 0.4s, all, linear;
    animation: ripple 2s infinite;
    animation-delay: 0.6s;
}

.video_btn::after {
    animation-delay: 0.4s;
}

@-webkit-keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        -ms-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        -ms-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.sec_id {
    position: absolute;
    bottom: 80px;
    width: 100%;
    height: 0px;
}

.widget2 {
    position: relative;
    border-radius: 15px;
    /* padding: 25px; */
    margin-bottom: 15px;
}

.widget-trainer {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    padding: 0;
    margin-bottom: 15px;
    margin-right: 50px;
    margin-top: -150px;
    padding-right: 120px;
    padding-left: 20px;
}

.widget {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 15px;
}

.widget .course_cover {
    height: auto !important;
}

.widget .instructor {
    display: block;
}

.widget>h3 {
    font-size: 18px;
    color: var(--main_color);
    font-weight: var(--weight_bold);
    margin: 0 0 25px;
    position: relative;
    margin-right: 15px;
}

.widget>h3 span {
    position: relative;
}

.widget>h3::before {
    content: "";
    position: absolute;
    background-color: var(--second_color);
    right: -10px;
    top: -10px;
    bottom: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.widget2>h3 {
    font-size: 18px;
    color: #000;
    font-weight: var(--weight_bold);
    margin: 0 0 25px;
    position: relative;
    margin-right: 15px;
}

.widget2>h3 span {
    position: relative;
}

.widget2>h3::before {
    content: "";
    position: absolute;
    background-color: var(--second_color);
    right: -10px;
    top: -10px;
    bottom: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.call_to,
.widget .link {
    display: block;
    max-width: 190px;
    margin: 15px auto 0;
}

.widget>ul li {
    display: block;
    color: #212121;
    font-size: 18px;
    margin-top: 10px;
    line-height: 35px;
}

.widget ul li a {
    color: #212121;
}

.widget ul li a i {
    margin-inline-end: 10px;
}

.widget ul li span {
    display: inline-block;
    margin-inline-end: 10px;
    min-width: 90px;
}

.widget ul li i {
    font-size: 18px;
    margin-inline-end: 5px;
}

.sticky,
.widget.sticky {
    margin: 0;
    top: 100px;
    position: sticky;
    background: #fff;
    border-radius: 25px;
    border: 1px solid #e8e9ee;
}

.instructor .cont {
    display: inline-block;
    vertical-align: middle;
}

.instructor img {
    position: relative;
    display: inline-block;
    width: 150px;
    margin-inline-end: 25px;
    vertical-align: middle;
    z-index: 999;
}

.instructor h3 {
    font-size: 36px;
    /* font-weight: var(--weight_bold); */
    margin: 0 0 15px;
}

.instructor h3 small {
    display: block;
    color: #777;
    font-weight: var(--weight_reg);
    font-size: 12px;
    margin-top: 5px;
    direction: ltr;
    text-align: right;
}

.instructor ul {
    color: #ffc107;
}

.accordion .panel {
    position: relative;
    margin-bottom: 15px;
    border: 1px solid #f1f1f1;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    padding: 10px;
}

.accordion .panel .panel-title {
    position: relative;
    line-height: 30px;
    padding: 15px;
    text-align: start;
    display: block;
    font-weight: var(--weight_bold);
    font-size: 17px;
    color: var(--main_color);
}

.accordion .panel .panel-title::before {
    position: absolute;
    content: "\f107";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    line-height: 60px;
    font-size: 18px;
    padding: 0;
    left: 15px;
    top: 0;
    color: var(--main_color);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: 0.3s transform linear;
    -moz-transition: 0.3s transform linear;
    -ms-transition: 0.3s transform linear;
    -o-transition: 0.3s transform linear;
    transition: 0.3s transform linear;
}

.accordion .panel .panel-title.collapsed::before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.accordion .panel .panel-collapse {
    background-color: #fff;
    width: 100%;
}

.course_list_videos li {
    display: block;
    /* font-weight: var(--weight_bold); */
    font-size: 14px;
    line-height: 25px;
    padding: 15px;
    border-bottom: 1px solid #ebebeb;
    direction: rtl;
    text-align: start;
}

.course_list_videos li:last-child {
    border-bottom: 0;
}

@media all and (max-width: 576px) {
    .widget {
        padding: 15px;
    }

    .widget-trainer {
        margin-top: -80px;
        padding-right: 60px;
    }

    .widget2 {
        padding: 0px;
    }

    .instructor img {
        width: 90px;
        margin-inline-end: 15px;
    }

    .instructor h3 {
        font-size: 18px;
    }

    .course_cover {
        min-height: auto;
    }
}

/* Trainers
=========================*/
.trainer_item {
    padding: 25px;
    border-radius: 25px;
    background-color: #fff;
    display: block;
    text-align: center;
    transition: 0.4s linear transform;
    margin: 15px auto;
    /* width: 85%; */
}

.train_sticky {
    position: sticky;
    margin: 0;
    top: 100px;
    transform: none;
}

.train_sticky a {
    display: block;
}

.trainer_item img {
    width: 160px;
    height: 160px;
    margin-bottom: 15px;
    border-radius: 50%;
}

.trainer_item h3 {
    font-weight: var(--weight_bold);
    font-size: 18px;
    margin: 0 0 10px;
    color: #212121;
}

.trainer_item small {
    display: block;
    color: #212121;
    font-weight: var(--weight_reg);
    font-size: 16px;
    text-align: center;
}

.trainer_item a {
    margin-top: 15px;
    display: block;
    color: var(--main_color);
}

.trainer_item ul {
    color: #ffc107;
}

.trainer_item:hover {
    transform: translateY(-5px);
}

.trainer_item p {
    margin: 10px 0 0;
    color: var(--main_color);
}

/* Why
==========================*/
.about_details .col-lg-7 {
    margin-bottom: 35px;
}

.about_details .col-lg-7:last-child {
    margin-bottom: 0;
}

.about_details::before {
    content: "";
    width: 70px;
    position: absolute;
    top: -70px;
    bottom: 0;
    right: 0;
    margin: auto;
    background: url(../images/work_shap1.png) center no-repeat;
    background-size: contain;
}

.about_details::after {
    content: "";
    width: 70px;
    position: absolute;
    top: 0;
    bottom: -70px;
    left: 0;
    margin: auto;
    background: url(../images/work_shap2.png) center no-repeat;
    background-size: contain;
}

.about_details .container.position-relative {
    z-index: 999;
}

.about_details .container.position-relative::before {
    content: "";
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 11%;
    margin: auto;
    background: url(../images/container_shap1.png) center no-repeat;
    background-size: contain;
}

.about_details .container.position-relative::after {
    content: "";
    width: 180px;
    height: 191px;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: auto;
    background: url(../images/container_shap2.png) center no-repeat;
    background-size: contain;
    z-index: 99;
}

@media all and (max-width: 991px) {
    .about_details .container.position-relative::after {
        height: 80px;
        bottom: -70px;
    }
}

@media all and (max-width: 576px) {
    .about_details .container.position-relative::before {
        width: 40px;
        height: 60px;
        top: 0;
        left: 15px;
    }

    .about_details .container.position-relative::after {
        width: 80px;
        height: 70px;
        bottom: -60px;
    }
}

.about_details .ambass_img {
    width: 100px;
}

.about_details h3 {
    color: #212121;
    /* font-weight: var(--weight_bold); */
    font-size: 36px;
    position: relative;
    display: block;
    margin: 35px auto 0;
}

.about_details p {
    margin: 35px 0 0;
    line-height: 30px;
    font-size: 18px;
    z-index: 999;
    position: relative;
    display: block;
    font-weight: 300;
}

.about_details p strong {
    font-weight: var(--weight_bold);
}

@media all and (max-width: 767px) {
    .about_details h3 {
        margin: 0 auto;
        font-size: 32px;
    }

    .about_details p {
        margin: 15px 0;
        line-height: 25px;
        font-size: 16px;
    }

    .about_details p strong {
        font-weight: var(--weight_bold);
    }
}

.values {
    display: flex;
    align-items: center;
    justify-content: center;
}

.values li {
    padding: 25px;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    margin: 0 15px;
    margin-top: 25px;
}

.values li img {
    min-width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: var(--main_color);
    display: block;
    margin: 25px auto;
}

.values li span {
    font-weight: var(--weight_bold);
    font-size: 20px;
    margin-top: 25px;
    display: block;
}

.graduate_item {
    display: block;
    margin: 25px auto;
    border-radius: 25px;
    padding: 25px;
    background-color: #fff;
}

.graduate_item img {
    border-radius: 50%;
    background-color: var(--main_color);
    display: block;
    margin: 25px auto;
    width: 270px;
    height: 270px;
}

.graduate_item span {
    font-weight: var(--weight_bold);
    font-size: 24px;
    margin-top: 25px;
    display: block;
    color: #212121;
}

@media all and (max-width: 767px) {
    .values {
        max-width: 540px;
    }

    .values li {
        padding: 15px;
    }

    .values li img {
        min-width: 80px;
        height: 80px;
        margin: 0;
    }

    .values li span {
        margin-top: 15px;
        font-size: 16px;
    }
}

@media all and (max-width: 577px) {
    .values {
        flex-wrap: wrap;
    }

    .values li {
        padding: 15px;
    }

    .values li img {
        min-width: 80px;
        height: 80px;
        margin: 0;
    }

    .values li span {
        margin-top: 15px;
        font-size: 16px;
    }
}

.why {
    padding-top: 110px;
}

.mt-60 {
    margin-top: 60px;
}

.why::before {
    content: "";
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    right: 10%;
    background: url(../images/why_shap.png) center no-repeat;
    background-size: contain;
}

.why::after {
    content: "";
    width: 40%;
    height: 70%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -120px;
    margin: auto;
    background: url(../images/question.png) center no-repeat;
    background-size: contain;
    opacity: 50%;
}

.why .section_title {
    text-align: right;
}

.about_cont h3 {
    font-size: 36px;
    /* font-weight: var(--weight_bold); */
    color: var(--main_color);
    margin: 0 0 30px;
    line-height: 45px;
}

.about_cont h4 {
    margin: 0 0 15px;
    font-size: 26px;
    font-weight: var(--weight_bold);
    position: relative;
    line-height: 30px;
    color: var(--main_color);
}

.about_cont h4 span {
    position: relative;
}

.about_cont p {
    margin: 20px 0;
    font-size: 18px;
    line-height: 35px;
}

.about_cont p:last-child {
    margin: 0;
}

@media all and (max-width: 991px) {
    .about_cont:nth-child(1) {
        margin-top: 0;
    }

    .about_cont {
        margin-top: 25px;
    }
}

@media all and (max-width: 767px) {
    .about_cont h3 {
        font-size: 32px;
    }
}

@media all and (max-width: 576px) {
    .why {
        padding-top: 100px;
    }

    .about_cont h3 {
        font-size: 26px;
        margin: 0 0 15px;
        line-height: 35px;
    }

    .about_cont h4 {
        margin: 0 0 15px;
        font-size: 22px;
        font-weight: var(--weight_bold);
        padding-inline-start: 15px;
        position: relative;
        line-height: 30px;
    }

    .about_cont h4::before {
        content: "";
        position: absolute;
        background-color: var(--second_color);
        right: 0;
        top: 0;
        bottom: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }

    .about_cont h4 span {
        position: relative;
    }

    .about_cont p {
        margin: 10px 0;
        font-size: 16px;
        line-height: 25px;
    }
}

.step {
    font-size: 22px;
    line-height: 50px;
    margin: 15px auto 0;
    padding-inline-start: 55px;
    position: relative;
}

.step span {
    font-size: 45px;
    color: var(--main_color);
    opacity: 14%;
    font-weight: var(--weight_bold);
    position: absolute;
    right: 0;
}

@media all and (max-width: 1199px) {
    .step {
        font-size: 21px;
    }
}

@media all and (max-width: 991px) {
    .why .section_title {
        margin-bottom: 15px;
    }

    .step {
        font-size: 24px;
        margin: 10px 0 0;
    }

    .mt-60 {
        margin: 0;
    }
}

@media all and (max-width: 576px) {
    .step {
        font-size: 16px;
        margin: 10px 0 0;
        line-height: 30px;
        padding: 5px 0;
        padding-inline-start: 55px;
    }

    .why::after {
        width: 100%;
        right: 0;
    }
}

/*  Review
===========================*/
.review_item {
    background-color: #f8f9fe;
    padding: 25px;
    border-radius: 50px;
    height: 210px;
}

.review_item .head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.review_item .head img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0;
    margin-inline-end: 15px;
}

.review_item .head h3 {
    font-size: 18px;
    font-weight: var(--weight_bold);
    margin: 0;
}

.review_item .head h3 small {
    display: block;
    color: #777;
    font-weight: var(--weight_reg);
    font-size: 12px;
    margin-top: 5px;
    direction: ltr;
    text-align: right;
}

.review_item p {
    margin: 15px 0 10px;
    font-size: 14px;
    font-weight: var(--weight_normal);
    text-align: justify;
}

.review_item .rate {
    color: #ffc107;
}

@media all and (max-width: 1199px) {
    .review_item {
        padding: 15px;
    }

    .review_item .head h3 {
        font-size: 18px;
    }

    .review_item p {
        font-size: 12px;
    }
}

/* Students Work
===========================*/
.works::before {
    content: "";
    width: 70px;
    position: absolute;
    top: -70px;
    bottom: 0;
    right: 0;
    margin: auto;
    background: url(../images/work_shap1.png) center no-repeat;
    background-size: contain;
}

.works::after {
    content: "";
    width: 70px;
    position: absolute;
    top: 0;
    bottom: -70px;
    left: 0;
    margin: auto;
    background: url(../images/work_shap2.png) center no-repeat;
    background-size: contain;
}

.works .row {
    position: relative;
}

.student_work {
    display: block;
    border-radius: 5px;
    height: 260px;
    overflow: hidden;
}

.student_work img {
    transition: 0.4s linear transform;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student_work:hover img {
    transform: rotate(2deg) scale(1.2);
}

.inner_works .student_work {
    margin: 25px auto 0;
    height: auto;
}

.inner_works .student_work img {
    /* height: 250px; */
    border-radius: 5px;
    transform: none !important;
}

.inner_works .student_work span {
    margin: 10px 0 0;
    display: block;
    color: #212121;
    font-size: 22px;
}

/* Page Head
=======================*/
.page_head {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/bc.png) center no-repeat;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    margin-top: 100px;
    text-align: start;
    padding: 50px 0;
}

.page_head .row {
    position: relative;
    z-index: 99;
}

.page_head h3 {
    font-size: 36px;
    font-weight: var(--weight_reg);
    color: #212121;
    margin: 0 0 20px;
}

.page_head ul li a {
    color: var(--main_color);
    font-size: 24px;
}
.page_head ul li {
    font-size: 24px;
}

@media all and (max-width: 576px) {
    .page_head h3 {
        font-size: 26px;
    }
}

.pagenation {
    text-align: center;
    margin-top: 25px;
}

.pagenation li a {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: #f8f9fe;
    border-radius: 5px;
    color: var(--main_color);
}

.pagenation li a.active,
.pagenation li a:hover {
    background-color: var(--main_color);
    color: #fff;
}

.story_item {
    padding: 25px;
    border-radius: 25px;
    background-color: #fff;
    display: block;
    text-align: center;
    transition: 0.4s linear transform;
    margin: 15px auto;
}

.story_item img {
    width: 160px;
    height: 160px;
    margin-bottom: 15px;
    border-radius: 50%;
}

.story_item h3 {
    /* font-weight: var(--weight_bold); */
    font-size: 36px;
    margin: 0 0 10px;
    color: #212121;
}

.story_item p {
    display: block;
    color: #212121;
    font-weight: var(--weight_reg);
    font-size: 18px;
    text-align: center;
}

.story_item a {
    color: var(--main_color);
}

.story_item a i {
    display: block;
}

/*  Contact
=============================*/
.form-control {
    padding: 0 15px;
    font-size: 14px;
    line-height: 50px;
    height: 50px;
    color: #191919;
    border: 1px solid #e7e7e7;
    letter-spacing: 0px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.form-control:hover,
.form-control:focus {
    border: 1px solid #e7e7e7;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

textarea.form-control {
    resize: none;
    height: 110px;
    line-height: 22px;
    padding: 15px !important;
}

.contact_form {
    margin-bottom: 25px;
}

.contact_form .link {
    margin: 0;
}

.form_title {
    font-weight: var(--weight_bold);
    font-size: 28px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
}

.form_title::before {
    content: "";
    position: absolute;
    background-color: var(--second_color);
    right: 0;
    top: 0;
    bottom: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
}

.form_title span {
    position: relative;
}

.contact_col {
    background-color: #fff;
    border-radius: 25px;
    padding: 25px;
}

.contact_form {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 15px;
    margin-bottom: 25px;
    padding: 25px;
    background-color: #fff;
    width: 65%;
}

.contact_form .form-group {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.contact_form .form-group i {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    width: 30px;
    line-height: 60px;
    line-height: 50px;
    color: #e7e7e7;
    font-size: 16px;
}

.contact_form .form-group .separator {
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #094f9f;
    -webkit-transition: 0.3s linear width;
    -moz-transition: 0.3s linear width;
    -ms-transition: 0.3s linear width;
    -o-transition: 0.3s linear width;
    transition: 0.3s linear width;
}

.contact_form .form-group .separator.bottom-6 {
    bottom: 6px;
}

.contact_form .form-control:focus+.separator {
    width: 100%;
}

.contact_info {
    border-radius: 25px;
    overflow: hidden;
    background-color: var(--main_color);
    padding: 25px;
    width: 35%;
    transform: translateX(90px);
    text-align: right;
    color: #fff;
}

.contact_item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    margin: 25px auto;
    text-align: start;
}

.contact_item i {
    min-width: 45px;
    color: var(--second_color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-inline-end: 15px;
    font-size: 24px;
}

.contact_item span {
    display: block;
    font-weight: var(--weight_bold);
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
}

.contact_item a {
    font-size: 14px;
    line-height: 25px;
    color: #fff;
}

/* Footer
===========================*/
footer {
    background-color: var(--main_color);
    padding: 80px 0 0;
    color: #fff;
    position: relative;
}

footer .up_btn {
    width: 50px;
    height: 50px;
    text-align: center;
    color: var(--main_color);
    background-color: var(--second_color);
    border-radius: 50%;
    line-height: 50px;
    font-size: 22px;
    margin: auto;
    left: 0;
    right: 0;
    position: absolute;
    top: -25px;
}

footer .up_btn:hover {
    background-color: #fff;
    color: var(--main_color);
}

footer img {
    width: 120px;
    /* margin: 0 0 20px; */
    margin: 20px;
}

footer h3 {
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: var(--weight_bold);
    line-height: 35px;
    max-width: 174px;
}

footer h4 {
    margin: 0;
    font-size: 18px;
    line-height: 40px;
    max-width: 175px;
}

footer p {
    text-align: right;
    display: block;
    margin: 0 auto;
    font-size: 14px;
    font-weight: var(--weight_normal);
}

footer ul li {
    display: block;
    /* margin-top: 15px; */
}

footer ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: var(--weight_normal);
}

footer ul li a:hover {
    color: var(--second_color);
}

footer ul li a i {
    width: 35px;
    height: 35px;
    text-align: center;
    background-color: #fff;
    color: var(--main_color);
    border-radius: 50%;
    line-height: 35px !important;
    margin-inline-end: 10px;
}

footer .social {
    margin-top: 20px;
}

.social li {
    display: inline-block;
}

.social a {
    width: 32px;
    height: 32px;
    text-align: center;
    background-color: #fff;
    color: var(--main_color);
    border-radius: 50%;
    line-height: 34px !important;
    margin-inline-end: 10px;
    font-size: 22px;
}

.social {
    text-align: right;
    padding-top: 5px;
    padding-bottom: 5px;
}

.social a:hover {
    background-color: var(--second_color);
    color: var(--main_color);
}

footer form .form-control {
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    background-color: #fff;
    border-radius: 5px;
    border: 0;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 25px;
    border: 1px solid #212121;
}

footer form button {
    width: 100%;
    margin-top: 15px;
    border: 0;
    background-color: var(--second_color);
    padding: 0 20px;
    line-height: 45px;
    border-radius: 5px;
    color: var(--main_color);
    font-size: 18px;
    border-radius: 25px;
}

@media all and (max-width: 767px) {
    footer .social {
        margin-bottom: 25px;
    }
}

@media all and (max-width: 576px) {
    footer h3 {
        font-size: 18px;
        line-height: 25px;
        margin: 15px 0;
    }

    footer h4 {
        max-width: 100%;
        font-size: 14px;
        line-height: 25px;
    }
}

footer .container-fluid {
    background-color: #3e50df;
    padding: 20px 15px;
    margin-top: 40px;
}

.call {
    position: fixed;
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 9999;
    display: block;
    background-color: var(--main_color);
    color: var(--second_color) !important;
    text-align: center;
    line-height: 50px;
    border: 2px solid #fff2;
    font-size: 25px;
}

.nav-tabs {
    text-align: center;
    display: block;
    border: 0;
    margin-bottom: 25px;
}

.nav-tabs .nav-link {
    border-radius: 25px;
    color: var(--main_color);
    font-size: 18px;
    /* font-weight: var(--weight_bold); */
    margin: 0 !important;
    border: 0 !important;
    padding-bottom: 15px;
}

.nav-tabs .nav-link:hover {
    border: 0 !important;
    color: var(--main_color);
}

.nav-tabs .nav-link.active {
    background-color: var(--main_color);
    color: #fff;
}

.ambassador_item {
    display: block;
    margin-bottom: 25px;
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #f1f1f1;
}

.ambassador_item img {
    margin: auto auto 15px;
}

.ambassador_item span {
    display: block;
    color: var(--main_color);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    line-height: 35px;
    border: 1px solid #212121;
    border-radius: 25px;
}

/* Loading
=====================*/
.loading {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    z-index: 9999;
    background-color: #fff;
}

.loading .load_cont {
    width: 260px;
}

.loading .load_cont img {
    margin: auto;
    width: 100%;
}

.dot-flashing {
    position: relative;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: var(--main_color);
    color: var(--main_color);
    animation: dotFlashing 1s infinite linear alternate;
    animation-delay: 0.5s;
    display: block;
    margin: 25px auto 0;
}

.dot-flashing::before,
.dot-flashing::after {
    width: 10px;
    height: 10px;
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: var(--main_color);
    color: var(--main_color);
}

.dot-flashing::before {
    left: -15px;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 0s;
}

.dot-flashing::after {
    left: 15px;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dotFlashing {
    0% {
        background-color: var(--main_color);
    }

    50%,
    100% {
        background-color: #ebe6ff;
    }
}

@media all and (max-width: 576px) {
    .owl-carousel.owl-rtl {
        padding: 0;
    }
}

.section-k {
    background: #f8f9fe;
    /* border-radius: 25px; */
    padding-top: 25px;
    padding: 10px;
}

.section-k-courses {
    background: #f8f9fe;
    /* border-radius: 25px; */
    padding-top: 25px;
    padding: 10px;
    padding-top: 80px;
}
