@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');
:root {
    --font-family-theme: 'Roboto', sans-serif;
    --font-family-primary: 'Roboto', sans-serif;
    --font-family-secondary: 'Oswald', sans-serif;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-black: #000000;
    --bs-theme: #cf964c;
    --bs-theme-hover: #cf964c;
    --bs-primary: #0070a6;
    --bs-primary-hover: #0070a6;
    --bs-secondary: #00007f;
    --bs-secondary-hover: #00007f;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-gray-dark: #343a40;
    --bs-gray-dark-hover: #121b24;
    --bs-light: #e1e1e1;
    --bs-light-hover: #a19292;
}

body {
    font-family: var(--font-family-primary);
    font-size: 16px;
    color: var(--color-light);
    background-color: #f0faff;
}

body.inner-body {
    background-color: var(--bs-white);
}

a {
    color: var(--bs-secondary);
    text-decoration: none;
    font-weight: 400;
}

a:hover {
    color: var(--bs-primary);
}

.btn {
    font-size: 20px;
    padding: 10px 32px;
    border-radius: 50px;
}

.btn-primary {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
    box-shadow: none;
}

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

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-secondary {
    color: #fff;
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
    color: #fff;
    background-color: var(--bs-secondary-hover);
    border-color: var(--bs-secondary-hover);
    box-shadow: none;
}

.btn-secondary:hover {
    color: #fff;
    background-color: var(--bs-secondary-hover);
    border-color: var(--bs-secondary-hover);
}

.btn-check:active+.btn-secondary:focus,
.btn-check:checked+.btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-dark {
    color: #fff;
    background-color: var(--bs-gray-dark);
    border-color: var(--bs-gray-dark);
}

.btn-check:focus+.btn-dark,
.btn-dark:focus {
    color: #fff;
    background-color: var(--bs-gray-dark-hover);
    border-color: var(--bs-gray-dark-hover);
    box-shadow: none;
}

.btn-dark:hover {
    color: #fff;
    background-color: var(--bs-gray-dark-hover);
    border-color: var(--bs-gray-dark-hover);
}

.btn-check:active+.btn-dark:focus,
.btn-check:checked+.btn-dark:focus,
.btn-dark.active:focus,
.btn-dark:active:focus,
.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-light {
    color: var(--bs-color-dark);
    background-color: var(--bs-light);
    border-color: var(--bs-light);
}

.btn-check:focus+.btn-light,
.btn-light:focus {
    color: var(--bs-color-dark);
    background-color: var(--bs-light-hover);
    border-color: var(--bs-light-hover);
    box-shadow: none;
}

.btn-light:hover {
    color: var(--bs-color-dark);
    background-color: var(--bs-light-hover);
    border-color: var(--bs-light-hover);
}

.btn-check:active+.btn-light:focus,
.btn-check:checked+.btn-light:focus,
.btn-light.active:focus,
.btn-light:active:focus,
.show>.btn-light.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-outline-theme {
    color: var(--bs-theme);
    border-color: var(--bs-theme);
}

.btn-outline-theme:hover {
    color: #fff;
    background-color: var(--bs-theme-hover);
    border-color: var(--bs-theme-hover);
}

.btn-check:focus+.btn-outline-theme,
.btn-outline-theme:focus,
.btn-check:active+.btn-outline-theme:focus,
.btn-check:checked+.btn-outline-theme:focus,
.btn-outline-theme.active:focus,
.btn-outline-theme.dropdown-toggle.show:focus,
.btn-outline-theme:active:focus {
    box-shadow: none;
}

.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus,
.btn-check:active+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
    box-shadow: none;
}

.btn-outline-secondary {
    color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: var(--bs-secondary-hover);
    border-color: var(--bs-secondary-hover);
}

.btn-check:focus+.btn-outline-secondary,
.btn-outline-secondary:focus,
.btn-check:active+.btn-outline-secondary:focus,
.btn-check:checked+.btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus {
    box-shadow: none;
}

.text-theme {
    color: var(--bs-theme);
}

.text-primary {
    color: var(--bs-primary);
}

.text-secondary {
    color: var(--bs-secondary);
}

.text-300 {
    font-weight: 300;
}

.text-400 {
    font-weight: 400;
}

.text-500 {
    font-weight: 500;
}

.text-600 {
    font-weight: 600;
}

.text-700 {
    font-weight: 700;
}

.text-dark {
    color: var(--bs-gray-dark);
}

.text-light {
    color: var(--bs-gray-dark);
}

.fs-1 {
    font-size: 40px;
}

.fs-2 {
    font-size: 36px;
}

.fs-3 {
    font-size: 32px;
}

.fs-4 {
    font-size: 28px;
}

.fs-5 {
    font-size: 24px;
}

.fs-6 {
    font-size: 20px;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
    color: var(--theme-heading-color);
    font-family: var(--font-family-primary);
    font-weight: 700;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-family: var(--font-family-primary);
    color: var(--bs-black);
    font-weight: 500;
}

a {
    outline: none;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul li,
ol li {
    list-style: none;
}

.rounded-1 {
    border-radius: 14px !important;
    -webkit-border-radius: 14px !important;
    -moz-border-radius: 14px !important;
}

.rounded-2 {
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
}

.rounded-3 {
    border-radius: 30px !important;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
}


/***************start css for pagewise ****************** */

.header-outer {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.header-topbar {
    background-color: var(--bs-secondary);
    padding: 0.7rem 1rem;
}

.header-topbar * {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
}

.header-topbar .login-register i {
    font-size: 20px;
    margin-right: 6px;
    position: relative;
    top: 3px;
    line-height: 0;
}

.header-topbar a {
    position: relative;
}

.header-topbar a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: all 0.2s;
}

.header-topbar a:hover {
    color: #fff;
}

.header-topbar a:hover:before {
    width: 100%;
}

.header-wrapper {
    width: 100%;
    z-index: 1050;
    width: 100%;
    background: transparent;
    padding: 0;
    transition: all 0.2s;
    padding: 0 1rem
}

.header-wrapper.sticky-navbar {
    top: 0;
    box-shadow: none;
    padding: 0;
    animation: slide-down 0.3s;
    opacity: 1;
    background-color: var(--bs-secondary);
    position: fixed;
}

.navbar-brand {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bs-white);
}

.header-wrapper .navbar-nav .nav-link {
    color: var(--bs-black);
    font-size: 18px;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.header-wrapper .navbar-nav .nav-link.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-wrapper .navbar-nav .nav-link,
.header-wrapper .navbar-nav .nav-link:after,
.header-wrapper .navbar-nav .nav-link:before {
    transition: all .5s;
}

.header-wrapper .navbar-nav .nav-link:hover {
    color: #fff !important;
}


/* .header-wrapper.sticky-navbar .navbar-nav .nav-link:after, */

.header-wrapper .navbar-nav .nav-link:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    content: '.';
    color: transparent;
    background: var(--bs-secondary);
    visibility: none;
    opacity: 0;
    z-index: -1;
    border-radius: 50px;
}


/* .header-wrapper.sticky-navbar .navbar-nav .nav-link:after, */

.header-wrapper .navbar-nav .nav-link:hover:after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.header-wrapper .navbar-nav li {
    position: relative;
}


/*.header-wrapper .navbar-nav li:last-child {
    margin-left: 2px;
}
.header-wrapper .navbar-nav li:last-child a {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    border-radius: 50%;
    padding:0;
    width: 45px;
    height: 45px;
    display: inline-block;
    text-align: center;
    line-height: 45px;
}*/

.header-wrapper.sticky-navbar .navbar-nav .nav-link {
    color: var(--bs-black);
}

.header-wrapper.sticky-navbar .dropdown-menu.show {
    /*color: var(--bs-black);*/
    background: var(--bs-secondary);
    border: none;
}

.header-wrapper.sticky-navbar .dropdown-menu.show li:last-child a {
    color: var(--bs-white);
}

.header-wrapper.sticky-navbar .navbar-nav .nav-link:after {
    background-color: var(--bs-white);
}

.header-wrapper.sticky-navbar .navbar-nav .nav-link:hover {
    color: var(--bs-secondary) !important;
}

.header-wrapper.fixed-top.sticky-navbar .navbar-brand {
    color: var(--bs-primary);
}

.header-srch-box {
    position: absolute;
    top: 100%;
    width: 300px;
    right: 1rem;
    z-index: 9;
}

.header-srch-box .form-control {
    border: 1px solid #acacac;
    border-radius: 50px;
    background-color: #eceff2;
    height: 50px;
}

.header-srch-box button {
    position: absolute;
    right: 10px;
    top: 8px;
    background: none;
    border: none;
    font-size: 20px;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

body.offcanvas-active {
    overflow: hidden;
}

.offcanvas-header {
    display: none;
    padding: 0;
    margin-bottom: 10px;
    text-align: right;
}

.screen-overlay {
    width: 0%;
    height: 100%;
    z-index: 30;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(34, 34, 34, 0.6);
    transition: opacity 0.2s linear, visibility 0.1s, width 1s ease-in;
}

.screen-overlay.show {
    transition: opacity 0.5s ease, width 0s;
    opacity: 1;
    width: 100%;
    visibility: visible;
}

@media all and (max-width: 992px) {
    .offcanvas-header {
        display: block;
    }
    .mobile-offcanvas {
        visibility: hidden;
        transform: translateX(-100%);
        border-radius: 0;
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1200;
        width: 250px;
        overflow-y: scroll;
        overflow-x: hidden;
        transition: visibility 0.2s ease-in-out, transform 0.2s ease-in-out;
        /* background-color: var(--bs-white) !important; */
        background-color: var(--bs-secondary);
    }
    .navbar-nav .nav-link,
    .header-wrapper.sticky-navbar .navbar-nav .nav-link:hover {
        color: var(--bs-white) !important;
    }
    .header-wrapper.sticky-navbar .navbar-nav .nav-link::after {
        background-color: var(--bs-secondary);
    }
    /* .header-wrapper .mobile-offcanvas.show .navbar-nav .nav-link {
        color: var(--bs-white);
        font-weight: 500;
    }
    .Menuclose {
        color: #fff;
    } */
    .container.nav-cont {
        padding: 0;
    }
    html:lang(ar) .mobile-offcanvas {
        transform: translateX(100%);
    }
    .mobile-offcanvas.show {
        visibility: visible;
        transform: translateX(0);
    }
    .nav-cont {
        display: block !important;
        padding-right: auto !important;
        padding-left: auto !important;
    }
    .mobNavbar {
        box-shadow: 0px 3px 17px #00000047;
    }
    #navbar_main {
        box-shadow: 0px 3px 17px #00000047;
    }
    .dropdown-menu {
        border: none;
    }
    .nav-item {
        border-bottom: 1px solid #015680;
    }
    .header-wrapper.sticky-navbar .navbar-nav .nav-link::after,
    .header-wrapper .navbar-nav .nav-link::after {
        background: var(--bs-white);
        border-radius: 0px;
        /* color: var(--bs-secondary) !important; */
    }
}

.inner-outer-box {
    padding-top: 120px;
}

.hero-banner {
    min-height: calc(100vh - 50px);
    width: 100%;
    background-size: cover;
    background-position: center top;
    display: flex;
    justify-content: end;
    align-items: flex-end;
    padding: 0 2rem;
}

.common-hero-banner {
    display: flex;
    justify-content: end;
    align-items: flex-end;
    padding: 0 2rem;
    background-size: cover;
    background-position: center top;
}

.common-hero-banner .inner-content-box .display-4 {
    color: var(--bs-primary);
    font-family: var(--font-family-secondary);
    line-height: 65px;
    font-size: 62px;
}

.common-hero-banner .inner-content-box .display-4 small {
    font-size: 30px;
    color: var(--bs-black);
}

.action-button {
    border: 2px solid var(--bs-primary);
    border-radius: 80px;
    font-size: 20px;
    display: inline-block;
    padding: 10px 70px 9px 20px;
    position: relative;
    text-decoration: none;
    color: var(--bs-primary);
    font-weight: 500;
}

.action-button i {
    position: absolute;
    right: 8px;
    font-size: 35px;
    top: 4px;
    line-height: 1.1;
}

.action-button i.bi.bi-play-circle-fill {
    top: 7px;
}

.hero-circle-img {
    text-align: right;
}

.hero-circle-img figure {
    width: 450px;
    height: 450px;
    border: 10px solid #cfd2d5;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    margin-top: 30px;
    box-shadow: -16px 16px 30px rgba(255, 255, 255, 0.8)
}

.hero-circle-img figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-link-box {
    position: relative;
    overflow: hidden;
}

.quick-link-box::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    right: 30px;
    bottom: 30px;
    border: 2px dashed var(--bs-white);
    z-index: 1;
    border-radius: 20px;
    transition: all 0.2s;
    opacity: 0;
}

.quick-link-box:hover::before {
    opacity: 1;
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
}

.quick-link-box figure {
    border-radius: 20px;
    margin-bottom: 0;
}

.quick-link-box img {
    max-width: 100%;
    border-radius: 20px;
    width: 100%;
    height: 140px;
}

.quick-link-box figcaption {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0;
    border-radius: 20px;
    transition: all 0.2s;
    text-align: center;
}

.quick-link-box:hover figcaption {
    background-color: rgba(0, 112, 166, 0.8);
}

.row-about-content {
    position: relative;
    margin-top: -70px;
}

.about-content-box {
    background-color: var(--bs-primary);
    color: #fff;
    padding: 3.2rem 2.5rem;
    margin-top: -40px;
    box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.4);
}

.about-content-box .h2 small {
    font-size: 18px;
    font-weight: 500;
    color: #9edfff;
    display: block;
    margin-bottom: 5px;
}

.about-content-box .h2 {
    font-size: 36px;
    color: var(--bs-white);
    line-height: 1.1;
    margin-bottom: 36px;
    position: relative;
}

.about-content-box .h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 150px;
    height: 2px;
    border-bottom: 3px solid var(--bs-white);
    box-shadow: 0 4px 8px #fff;
}

.about-content-box .h2 span {
    color: #cceeff;
}

.about-content-box a {
    color: #fff;
    text-decoration: none;
    position: relative;
    margin-top: 10px;
    display: inline-block;
    transition: all ease-in 0.2s;
}

.about-content-box a i {
    position: relative;
    transition: all ease-in 0.2s;
    left: 0;
}

.about-content-box a:hover {
    color: #9edfff;
}

.about-content-box a:hover i {
    left: 5px;
}

.about-content-box a span {
    position: relative;
    z-index: 1;
}

.about-content-box a:before {
    content: '';
    position: absolute;
    right: -8px;
    top: -7px;
    width: 35px;
    height: 35px;
    background-color: #104091;
    border-radius: 50%;
    z-index: 0;
    transition: all ease-in 0.2s;
}

.about-content-box a:hover::before {
    right: -10px;
}

.sm-figure {
    box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.4);
}

.about-company .container {
    position: relative;
}

.about-company .container:after {
    content: '';
    position: absolute;
    right: 130px;
    top: 25%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 30px dashed #0070a6;
    opacity: 0.2;
    z-index: -1;
}

.find-course {
    background: url(../images/find-course-bg.jpg) no-repeat top left;
    background-size: cover;
}

.card.card-find-course {
    position: relative;
    margin-top: 80px;
    border: 3px solid var(--bs-primary);
    padding: 40px 20px;
    border-radius: 20px;
    top: 80px;
    box-shadow: 0 20px 0 #c0deed;
}

.card.card-find-course .form-group {
    position: relative;
}

.card.card-find-course .card-title .h4 {
    font-size: 26px;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 35px;
}

.card.card-find-course .form-group>label {
    position: absolute;
    top: -14px;
    left: 12px;
    background-color: #fff;
    font-size: 15px;
    padding: 2px 10px;
    color: #666666;
}

.card.card-find-course .form-group .form-control {
    height: 50px;
    border-radius: 50px;
    padding-left: 20px;
    border: 1px solid #ababab !important;
}

.card.card-find-course p {
    font-size: 14px;
    font-weight: 300;
}

.benefit-class {
    padding-top: 160px;
    padding-bottom: 0;
}

.class-benefit-box {
    display: block;
    position: relative;
}

.class-benefit-box figure {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.class-benefit-box span {
    width: 50px;
    height: 50px;
    background-color: var(--bs-primary);
    font-weight: 600;
    text-align: center;
    line-height: 50px;
    font-size: 26px;
    color: #fff;
    display: inline-block;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    top: -25px;
    border-radius: 50%;
    z-index: 5;
}

.class-benefit-box .class-overflow-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bs-primary);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--bs-white);
    font-weight: 300;
    text-align: center;
    padding: 0 30px;
}

.page-block-head {
    display: block;
    margin-bottom: 60px;
}

.page-block-head .h2 {
    font-size: 36px;
    color: var(--bs-primary);
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}

.page-block-head .h2:after {
    content: '';
    /* border-bottom: 4px dashed var(--bs-primary); */
    position: absolute;
    width: 140px;
    left: 50%;
    margin-left: -70px;
    bottom: -8px;
    border-bottom: 3px solid var(--bs-primary);
    box-shadow: 0 4px 8px var(--bs-primary);
}

.page-block-head p {
    font-size: 18px;
    color: #333333;
}

.page-block-head span {
    color: var(--bs-secondary);
}

.class-benefit-row figure img {
    width: 100%;
}

.class-benefit-row .col:nth-child(1) .class-overflow-content {
    background-color: rgba(0, 112, 166, 0.9);
}

.class-benefit-row .col:nth-child(2) .class-benefit-sub-box:first-child,
.class-benefit-row .col:nth-child(3) .class-benefit-sub-box:first-child {
    margin-bottom: 49px;
}

.class-benefit-sub-box {
    padding: 57px 40px;
}

.class-benefit-row .col:nth-child(2) .class-benefit-sub-box {
    position: relative;
}

.class-benefit-row .col:nth-child(2) .class-benefit-sub-box:before,
.class-benefit-row .col:nth-child(3) .class-benefit-sub-box:before {
    content: ' ';
    border: 1px solid #fff;
    position: absolute;
    left: 6px;
    right: 6px;
    top: 6px;
    bottom: 6px;
    z-index: 2;
    border-radius: 12px;
}

.course-lising {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.course-lising li {
    display: flex;
    white-space: nowrap;
    padding: 16px 30px;
    background: #ffff;
    border: 1px solid #e1e1e1;
    margin: 10px;
    border-radius: 5px;
    color: #000000;
}

.course-lising li a {
    color: #000;
}

.coursed-offer .page-block-head {
    margin-bottom: 20px;
}

.text-ourselection {
    font-size: 20px;
}

footer {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    font-size: 14px;
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 2;
}

.footer-title {
    color: var(--bs-white);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-content-link {
    display: flex;
}

.footer-content-link ul {
    width: 50%;
}

.footer-content-link ul li {
    font-size: 14px;
    color: var(--bs-white);
    position: relative;
    padding-left: 30px;
    margin-bottom: 6px;
}

.footer-content-link ul li span {
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 17px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content-link ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding-top: 30px;
}

.footer-content-address>div {
    position: relative;
    padding-left: 30px;
    margin-bottom: 23px;
    line-height: 1.1;
}

.footer-content-address i {
    position: absolute;
    left: 0;
    top: -3px;
    font-size: 18px;
}

.footer-content-address a {
    color: var(--bs-white);
}

.inner-hero-banner {
    padding: 190px 0 110px;
}

.common-hero-banner.inner-hero-banner .display-4 {
    font-size: 50px;
}

.common-hero-banner.inner-hero-banner .action-button {
    font-size: 16px;
    padding-left: 30px;
    position: relative;
}

.common-hero-banner.inner-hero-banner .action-button input {
    font-size: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
}

.common-hero-banner.inner-hero-banner .action-button i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--bs-primary);
    font-size: 18px;
    text-align: center;
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-hero-banner.inner-hero-banner .action-button i.bi.bi-printer {
    width: 32px;
    height: 32px;
    font-size: 16px;
    top: 5px;
}

.breadcrumb-section {
    font-size: 16px;
    font-weight: 600;
}

.breadcrumb-section .breadcrumb-item a {
    color: var(--bs-secondary);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--bs-secondary);
    font-weight: normal;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f280";
    font-family: bootstrap-icons !important;
    color: var(--bs-secondary);
}

.medium-box {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #e1e0ff;
    align-items: center;
    border-radius: 15px;
    margin-bottom: 40px;
}

.medium-box .btn {
    font-weight: 400;
    color: var(--bs-white);
    border-radius: 15px;
}

.medium-box a {
    color: var(--bs-black);
    font-weight: 600;
    text-decoration: none;
}

.course-content-boxes .course-content-header {
    display: flex;
    justify-content: space-between;
}

.course-content-boxes .course-content-header h3 {
    position: relative;
    display: inline-block;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 40px;
}

.course-content-boxes .course-content-header h3:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 4px;
    background-color: var(--bs-primary);
    width: 100%;
    border-radius: 10px;
}

.course-content-boxes .course-content-header a,
.course-content-boxes .course-content-header span {
    font-weight: 600;
    text-decoration: none;
    color: var(--bs-primary);
    line-height: 1.1;
}

.course-content-boxes .course-content-header span {
    padding-right: 8px;
    margin-right: 8px;
    border-right: 1px solid var(--bs-black);
    color: var(--bs-black);
}

.course-more-info {
    border: 1px solid #f2f2f2;
    background-color: var(--bs-white);
    padding: 25px;
    border-radius: 16px;
    color: #757575;
    box-shadow: 0px 10px 10px rgb(0 0 0 / 10%);
}

.course-more-info p {
    margin-bottom: 0;
}

.course-more-info .course-more-head {
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--bs-black);
}

.course-icons {
    width: 65px;
    height: 65px;
    background-color: #deeefe;
    border-radius: 10px;
    margin-right: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-content-duration div {
    font-size: 20px;
    font-weight: 500;
}

.course-content-duration div span {
    color: var(--bs-primary);
}

.table-of-content-box {
    margin-top: 40px;
}

.table-of-content-head {
    background-color: #f4f9ff;
    padding: 16px 80px;
    align-items: center;
    border-radius: 60px;
    position: relative;
    margin-bottom: 30px;
}

.table-of-content-head::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -100px;
    background: url(../images/circle-texture.png) no-repeat center;
    background-size: contain;
    width: 200px;
    height: 200px;
    z-index: -1;
}

.material-location-txt h6 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
}

.material-location-txt h6 span {
    color: var(--bs-primary);
    font-weight: 500;
}

.related-course-title,
.related-serivces {
    background-color: #e1e0ff;
}

.related-course-title h2 {
    color: var(--bs-secondary);
    text-decoration: underline;
}

.related-course-list li {
    margin: 0 20px;
}

.related-course-list a {
    color: var(--bs-black);
    text-decoration: none;
    margin: 10px 0px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: underline;
}

.related-serivces h5 {
    font-size: 25px;
    font-weight: 600;
    color: var(--bs-secondary);
    text-decoration: underline;
}

.content-title-duration {
    background-color: var(--bs-secondary);
    border-radius: 50px;
    padding: 10px 30px;
    position: relative;
    right: 0;
    padding: 10px 0 10px 0;
}

.content-title-duration-inner {
    background-color: var(--bs-white);
    border-radius: 50px;
    padding: 4px 18px;
    position: relative;
    right: 20px;
    display: flex;
    align-items: center;
    box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.1);
}

.content-title-duration span.btn {
    margin-left: 26px;
}

.content-title-duration-inner span {
    font-size: 20px;
    color: var(--bs-secondary);
    cursor: auto;
}

.content-title-duration-inner span.btn {
    color: var(--bs-white);
    font-size: 15px;
}

.table-of-content-box ul li {
    padding: 16px;
    border: 1px solid #000;
    display: block;
    border-radius: 16px;
    margin-bottom: 30px;
}

.table-of-content-box ul {
    margin: 0 80px;
}

.table-of-content-box ul li {
    font-size: 22px;
    font-weight: 500;
    color: var(--bs-secondary);
}

.table-of-content-box ul li ul {
    margin: 8px 0 0;
}

.table-of-content-box ul li ul li {
    border: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: #757575;
    font-weight: 400;
    position: relative;
    padding-left: 25px;
    margin-left: 10px;
}

.table-of-content-box ul li ul li::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    width: 5px;
    height: 5px;
    display: inline-block;
    background-color: #666666;
    border-radius: 50%;
}

.dropdown-menu.show li a.nav-link {
    white-space: nowrap;
    color: var(--bs-black);
    font-size: 15px;
    padding: 8px 16px;
}

.header-wrapper .dropdown-menu.show li:last-child a {
    color: var(--bs-black);
    background: none;
    border-radius: 0;
    padding: 8px 16px;
    display: block;
    width: auto;
    height: auto;
    line-height: 1.1;
    text-align: left;
}

.smallBody input[type="submit"] {
    border: none;
    background: none;
    text-decoration: underline;
    color: var(--bs-primary);
    font-weight: 500;
}

.print-preview-btn {
    position: absolute;
    right: 10px;
    bottom: -16px;
}

#ulRelation {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.btn-clear {
    width: 150px;
}

.navbar-toggler .bi-list {
    font-size: 30px;
}

.header-wrapper.sticky-navbar .navbar-nav .nav-link,
.header-wrapper.sticky-navbar .navbar-nav .dropdown-menu.show .nav-link,
.header-wrapper.sticky-navbar .navbar-toggler .bi-list {
    color: var(--bs-white);
}

.GroupBox {
    margin-bottom: 15px;
    max-height: 140px;
    overflow: hidden;
}

.InquireForm select,
.InquireForm input {
    margin-bottom: 20px;
    padding: 10px 5px;
}

.InquireForm label {
    margin-bottom: 3px;
}

.InquireForm small {
    margin-bottom: 10px;
}

.InquireForm sup {
    color: red;
}

.InquireForm .ButtonBox input {
    padding: 10px 32px;
}

.InquireForm select {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.RelatedCourses {
    text-align: center;
}

.RelatedCourses h6 {
    margin: 15px;
}

.RelatedCourses .item {
    box-shadow: 0 0 10px #c6d8e1;
    margin: 10px;
    border-radius: 10px;
    transition: all 0.8s;
}

.RelatedCourses .item a {
    transition: all 0.8s;
}

.RelatedCourses p {
    font-size: 14px;
    line-height: 2;
    padding: 15px;
    padding-top: 0;
}

.PicBox {
    height: 160px;
    overflow: hidden;
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.PicBox img {
    width: auto !important;
    height: auto;
    object-fit: cover;
    display: inline-block !important;
    margin-top: 20px;
}

.RelatedCourses {
    margin-top: 45px;
}

.RelatedCourses .owl-nav {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 100%;
}

.RelatedCourses .owl-nav button {
    width: 50px;
    height: 50px;
    background: #e1e0ff;
    border: none;
    border-radius: 50%;
    transition: all 0.8s;
}

.RelatedCourses .owl-nav button:hover {
    width: 50px;
    height: 50px;
    background: var(--bs-secondary);
    border: none;
    border-radius: 50%;
}

.RelatedCourses .owl-nav button.left-arrow {
    position: absolute;
    left: -55px;
}

.RelatedCourses .owl-nav button.right-arrow {
    position: absolute;
    right: -55px;
}

.RelatedCourses .owl-nav button .bi {
    font-size: 25px;
    color: var(--bs-secondary);
    transition: all 0.8s;
}

.RelatedCourses .owl-nav button:hover .bi {
    color: #e1e0ff;
}

.RelatedCourses .owl-stage-outer {
    display: flex;
    justify-content: center;
}

.RelatedCourses .right-arrow.disabled,
.RelatedCourses .left-arrow.disabled {
    cursor: no-drop;
}

.LinksTxt {
    position: relative;
}

.LinksTxt:hover::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #0dcaf0;
    bottom: -2px;
    left: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* .RelatedCourses .owl-dots.disabled,
.RelatedCourses .owl-nav.disabled {
    display: block;
} */


/* ------- Responsive Css --------- */

@media (max-width: 1399.98px) {
    .header-wrapper .navbar-nav .nav-link {
        font-size: 16px;
    }
    .common-hero-banner .inner-content-box .display-4 {
        font-size: 51px;
        line-height: 55px;
    }
    .common-hero-banner .inner-content-box .display-4 small {
        font-size: 22px;
    }
    .action-button {
        font-size: 17px;
        padding: 10px 60px 12px 20px;
    }
    .action-button i {
        font-size: 38px;
    }
    .hero-circle-img figure {
        width: 326px;
        height: 326px;
        margin-top: 20px;
    }
    .card.card-find-course {
        padding: 20px 10px;
    }
    .btn {
        font-size: 18px;
    }
    .class-benefit-box .class-overflow-content {
        padding: 0 20px
    }
    .class-benefit-sub-box {
        padding: 47px 40px;
    }
    .course-lising li {
        padding: 12px 16px;
    }
    .common-hero-banner.inner-hero-banner .action-button i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 21px;
    }
    .course-content-links {
        width: 300px;
        text-align: right;
    }
}

@media (max-width: 1199.98px) {
    .navbar-brand img {
        max-width: 190px;
    }
    .header-wrapper .navbar-nav .nav-link {
        padding: 6px 10px;
    }
    .hero-banner {
        min-height: 75vh;
        max-height: 75vh;
    }
    .hero-circle-img figure {
        width: 200px;
        height: 200px;
        margin-bottom: 10px;
    }
    .common-hero-banner .inner-content-box .display-4 small {
        font-size: 18px;
    }
    .common-hero-banner .inner-content-box .display-4 {
        font-size: 40px;
        line-height: 40px;
    }
    .course-content-links {
        width: 300px;
        text-align: right;
    }
}

@media (max-width: 991.98px) {
    .quick-link-box figcaption {
        font-size: 16px;
        line-height: 1.3;
    }
    .course-content-boxes .course-content-header h3 {
        font-size: 30px;
    }
    .table-of-content-head {
        padding: 16px 50px;
    }
    .table-of-content-head.d-flex.justify-content-between {
        display: block !important;
    }
    .table-of-content-box ul {
        margin: 0 50px;
    }
    .session-title-cnt {
        padding-bottom: 10px;
    }
    .related-course-list a {
        margin: 10px 0;
    }
    .about-content-box .h2 {
        font-size: 26px;
    }
    .common-hero-banner .inner-content-box .display-4 {
        font-size: 30px;
    }
    .RelatedCourses .owl-stage-outer {
        display: block;
    }
    .header-wrapper {
        padding: 0;
    }
    .header-wrapper .navbar-nav .nav-link,
    .header-wrapper.sticky-navbar .navbar-nav .nav-link {
        color: var(--bs-black);
    }
    .navbar-toggler.Menuclose .bi {
        color: var(--bs-white);
    }
    .header-wrapper .navbar-nav .nav-link {
        padding: 12px 10px;
    }
    .dropdown-menu.show li {
        border-top: 1px solid var(--bs-primary);
    }
    .dropdown-menu {
        background-color: transparent;
    }
    .header-wrapper.sticky-navbar .navbar-nav .nav-link:hover,
    .header-wrapper .navbar-nav .nav-link:hover {
        color: var(--bs-secondary) !important;
    }
    .offcanvas-header {
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .quick-link-box figure {
        height: 150px;
    }
    .quick-link-box figure img {
        width: 100%;
        max-width: 100%;
    }
    .container {
        max-width: 100%
    }
    .course-content-boxes .course-content-header {
        display: block;
    }
    .course-content-links {
        margin-bottom: 20px;
    }
    .table-of-content-box ul {
        margin: 0 0px;
    }
    .class-benefit-row {
        display: block;
    }
    .class-benefit-row .col {
        width: 100%;
        margin-bottom: 20px;
    }
    .related-course .container {
        padding: 0 80px;
    }
    .course-content-links {
        text-align: left;
    }
}

@media (max-width: 650px) {
    .top-navbar a {
        display: block;
    }
    .login-register a {
        display: inline-block;
    }
    .medium-box .btn {
        font-size: 16px;
        padding: 10px 20px;
    }
    .medium-box {
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    #ulRelation {
        display: block;
    }
    #ulRelation li {
        margin-bottom: 10px;
    }
    .medium-box {
        display: block;
    }
    .medium-box a:nth-child(3) {
        display: block;
        width: 100%;
        margin-top: 10px;
    }
    .content-title-duration-inner {
        right: -5%;
        width: 90%;
    }
    .table-of-content-head {
        padding: 16px 20px;
    }
    .content-title-duration-inner span {
        font-size: 18px;
    }
    .content-title-duration-inner {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .top-navbar.d-flex {
        display: block !important;
        text-align: center;
    }
    .login-register {
        width: 100%;
    }
    .top-navbar a {
        padding-bottom: 5px;
    }
}