/* ----- Font ----- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ----- Root ----- */
:root {
    --primary: #EF7F1A;
    --defult: #2E2244;
    --header-bg: #f2f2f2;
    --footer-bg: #343d4e;
    --red: #da2c4d;
    --yellow: #f8ab37;
    --green: #2ecc71;
    --white: #ffffff;
    --grey-light: #f2f7f9;
    --grey: #ecedf3;
    --black: #080808;
    --black-blue: #1f2029;
    --black-blue-light: #353746;
    --black-blue-light-2: #404255;
    --black-blue-light-3: #4b4d64;
    --black-light: #424455;
}

* {
    font-family: 'Poppins', sans-serif;
}

ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.modal-header {
    padding: 0.5rem 1rem;
    border-radius: 0;
    border-bottom: none;
}

.modal-content {
    border: none;
    border-radius: 6px;
    overflow: hidden;
}

.form-label span,
.close {
    color: red;
}

.form-label {
    font-size: 14px;
    color: var(--defult);
    margin-bottom: .1rem;
}

.form-label i {
    font-size: 15px;
}

.middle-prnt {
    position: relative;
    display: table;
    min-height: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.btn-close:focus {
    box-shadow: none;
}

button.modal-close {
    border: 0;
    padding: 0;
    background: transparent;
    font-size: 25px;
    line-height: 0;
    color: red;
}

.section {
    padding: 60px 0;
}

/* ----- Header ----- */
.enquiry-btn {
    position: relative;
}

.enquiry-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    background-color: #00c1ff;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    right: -5px;
}

.enquiry-dots:before {
    content: "";
    width: inherit;
    height: inherit;
    border: 4px solid #00c1ff;
    border-radius: inherit;
    position: absolute;
    z-index: 0;
    opacity: 0;
    animation: 2s expand cubic-bezier(0.29, 0, 0, 1) infinite;
    animation-delay: 1s;
}

@keyframes expand {

    /* Starting at 1 to prevent IOS flicker */
    1% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 750%;
        height: 750%;
        opacity: 0;
        border-color: #fff;
        background-color: none;
        border-width: 2px;
    }
}

.menu.mobile-menu {
    display: none;
}

.header {
    background: var(--header-bg);
    transition: all 0.5s ease;
}

.top-bar {
    background: var(--defult);
}

.top-bar p,
.top-bar p a {
    margin: 0;
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
}

.top-bar p i {
    color: var(--primary);
}

.menu-bar {
    padding: 10px 0;
}

.menu-bar .logo img {
    height: 55px;
}

.nav-menu ul li {
    display: inline-block;
    list-style: none;
    padding-left: 20px;
}

.nav-menu ul li .nav-item {
    color: #fff;
    font-size: 14px;
    transition: all 0.5s ease;
    display: block;
    padding: 5px 0;
}

.nav-menu ul li .nav-item:hover {
    color: var(--primary);
}

.menu ul li {
    list-style: none;
    display: inline-block;
    padding: 9px 0;
    margin-left: 15px;
}

.menu ul li .special-btn {
    color: #fff;
    background: var(--primary);
    padding: 6px 16px;
    display: block;
    font-size: 16px;
    border-radius: 3px;
    transition: all 0.5s ease;
}

.menu ul li .special-btn i {
    font-size: 16px;
}

.menu ul li .special-btn:hover {
    background: var(--defult);
    transform: translateY(-.15rem);
    box-shadow: 0.3rem 0.4rem rgb(30 34 30 / 15%);
}

/* -- Header Sticky -- */

.header.stickyHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1040;
    box-shadow: 0px 0px 10px #cdcdcd;
    animation: goDown 0.5s ease-in-out forwards;
}

@keyframes goDown {
    0% {
        top: -60px;
    }

    100% {
        transform: translateY(0px);
    }
}

.header.stickyHeader .top-bar {
    display: none;
}

.all-course-box {
    position: fixed;
    background: #fff;
    width: 30%;
    height: 100vh;
    top: 0;
    left: 0;
    padding: 15px;
    z-index: 1040;
    overflow-y: scroll;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

.all-course-box.open {
    opacity: 1;
    transform: translateX(0);
}

.all-course-box.open::-webkit-scrollbar {
    width: 2px;
}

.all-course-box.open::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0);
}

.all-course-box.open::-webkit-scrollbar-thumb {
    background-color: var(--defult);
}

.all-course-box-header {
    border-bottom: 1px solid var(--primary);
    padding: 5px 15px;
}

.all-course-box-sec {
    padding: 12px;
}

.all-course-box-header h2 {
    font-size: 18px;
    color: var(--defult);
    padding: 4px 0;
    text-transform: uppercase;
    font-weight: normal;
    margin: 0;
}

.all-course-box-close {
    font-size: 20px;
    color: red;
}

.all-course-box-close:hover {
    color: var(--primary);
}

.all-course-box-item {
    padding: 15px;
    color: #262626;
}

.all-course-box-item i {
    font-size: 45px;
    color: var(--primary);
}

.all-course-box-item h3 {
    font-size: 18px;
    font-weight: normal;
    margin-top: 10px;
}

.all-course-box-left {
    border-radius: 6px;
}

.all-course-box-left ul li {
    padding: 3px 0;
    display: block;
}

.all-course-box-left ul li a {
    font-size: 14px;
    color: #000;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 2px solid #eef0f6;
    transition: all 0.2s ease;
}

.all-course-box-left ul li a h4 {
    font-size: 14px;
    margin: 0;
}

.all-course-box-left ul li a p {
    font-size: 12px;
    margin: 0;
}

.all-course-box-left ul li a .arrow-all-course {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.all-course-box-left ul li a:hover,
.all-course-click.active a {
    color: #fff;
    background: #2b4eff;
    border-color: #2b4eff;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(4, 23, 118, 0.3);
    -moz-box-shadow: 0px 5px 10px 0px rgba(4, 23, 118, 0.3);
    box-shadow: 0px 5px 10px 0px rgba(4, 23, 118, 0.3);
}

.all-course-box-left ul li a:hover .arrow-all-course,
.all-course-click.active a .arrow-all-course {
    transform: rotate(180deg);
}

.course_university {
    padding: 15px;
    border-radius: 6px;
    border: 2px solid #eef0f6;

}

.course_university img {
    height: 50px;
    margin-bottom: 15px;
}

.course_university h4 {
    color: var(--defult);
    font-size: 15px;
}

.course_university p {
    font-size: 14px;
    margin: 0;
}


/* ----- Home Banner ----- */

.home-banner.owl-theme .owl-nav {
    margin: 0;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    z-index: 10;
    transform: translateY(-50%);
}

.home-banner.owl-theme .owl-nav button {
    font-size: 32px !important;
    position: absolute;
    color: #fff;
    background: transparent;
}

.home-banner.owl-theme .owl-nav .owl-prev {
    left: 30px;
}

.home-banner.owl-theme .owl-nav i,
.home-banner.owl-theme .owl-prev i {
    text-shadow: 1px 0px 2px black;
}

.home-banner.owl-theme .owl-nav .owl-next {
    right: 30px;
}

.home-banner.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: #ffffff;
}

.home-banner.owl-theme .owl-dots {
    position: absolute;
    bottom: 20px;
    right: 10px;
}

/* ----- Universities ----- */

.uni-ins-title {
    margin-bottom: 30px;
}

.uni-ins-title h2 {
    font-size: 30px;
    color: var(--primary);
}

.uni-ins-title p {
    font-size: 14px;
    color: var(--defult);
}

.universitie-logo {
    margin: 10px;
    padding: 10px;
    height: 100px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgb(138 138 138 / 24%);
}

.universitie-logo img {
    width: 100%;
}

/* ----- Programs & Courses */

.section-title {
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid var(--primary);
}

.section-title h2 {
    font-size: 30px;
    font-weight: 500;
    color: var(--defult);
}

.section-title h2.white {
    color: #fff;
}

.yellow-bg {
    position: relative;
}

.yellow-bg img {
    position: absolute;
    left: -5px;
    bottom: -1px;
    animation: section-animation 3s infinite;
    -webkit-animation: section-animation 3s infinite;
}

/* ----- Courses & Universites */

.course_left_side_bar {
    background: #f2f2f2;
}

.course_left_side_bar_tab_link {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border: 0;
    padding: 6px 10px;
    border-bottom: 1px solid #fff;
    transition: all 0.5s ease;
}

.course_left_side_bar_tab_link i {
    color: var(--primary);
}

.course_left_side_bar_tab_link .course_left_side_bar_txt {
    display: flex;
    align-items: center;
}

.course_left_side_bar_tab_link .course_left_side_bar_txt i {
    font-size: 20px;
    margin-right: 5px;
}

.course_left_side_bar_tab_link:hover {
    background: var(--black-light);
    color: #fff;
}

.course_left_side_bar_tab_link.active {
    background: var(--defult);
    color: #fff;
}

.universities_box {
    border: 2px solid #f2f2f2;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.universities_box_text h2 {
    font-size: 16px;
    color: var(--defult);
}

.universities_box_text p {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.universities_right_side_bar {
    position: sticky;
    top: 95px;
}

@keyframes section-animation {
    0% {
        width: 0;
    }

    15% {
        width: 100%;
    }

    85% {
        opacity: 1;
    }

    90% {
        width: 100%;
        opacity: 0;
    }

    to {
        width: 0;
        opacity: 0;
    }
}

.prog-cour-item {
    padding: 20px 30px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    margin-bottom: 30px;
    border: 2px solid #eef0f6;
    transition: all 0.5s ease;
}

.prog-cour-item:hover {
    cursor: pointer;
    background: #2b4eff;
    border-color: #2b4eff;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(4, 23, 118, 0.3);
    -moz-box-shadow: 0px 20px 30px 0px rgba(4, 23, 118, 0.3);
    box-shadow: 0px 20px 30px 0px rgba(4, 23, 118, 0.3);
}

.prog-cour-item:hover .prog-cour-item-txt h4,
.prog-cour-item:hover .prog-cour-item-txt p {
    color: #fff;
}

.prog-cour-item-icon {
    margin-right: 30px;
}

.prog-cour-item-txt h4 {
    color: var(--defult);
    font-size: 16px;
    margin: 0;
}

.prog-cour-item-txt p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--defult);

}

/* ----- What you will Get ----- */

.enrol {
    color: var(--defult);
}

.fast {
    color: var(--primary);
}

.get-sec {
    position: relative;
    background: url('../img/background01.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 60px;
}

.get-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
}

.get-sec .container {
    position: relative;
    z-index: 1;
}

.will-get {
    border: 2px solid #eef0f6;
    border-radius: 6px;
    padding: 30px;
    min-height: 244px;
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.will-get-icon {
    font-size: 60px;
}

.will-get-txt h4 {
    font-size: 20px;
}

.will-get-txt p {
    font-size: 14px;
}

.will-get:hover {
    background: #fff;
    border-color: #fff;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(122, 125, 141, 0.3);
    -moz-box-shadow: 0px 20px 30px 0px rgba(122, 125, 141, 0.3);
    box-shadow: 0px 20px 30px 0px rgba(122, 125, 141, 0.3);
}

/* ----- Dream Big Giant ----- */

.giant-text h2 {
    font-size: 22px;
}

.giant-text p {
    font-size: 14px;
}

.giant-imgs {
    margin-bottom: 30px;
    background: #fff;
    padding: 0px 20px;
    border-radius: 6px;
    box-shadow: 0 0 6px rgb(9 30 66 / 4%), 0 8px 12px rgb(9 30 66 / 8%);
}

.giant-imgs img {
    width: 100%;
}

/* ----- Awards & Recognition ----- */
.awards {
    position: relative;
    background: url('../img/background03.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.awards-box {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 6px;
    box-shadow: 0 0 6px rgb(9 30 66 / 4%), 0 8px 12px rgb(9 30 66 / 8%);
}

.awards-img img {
    width: 100%;
}

.awards-text {
    text-align: center;
    margin-top: 15px;
}

.awards-text h2 {
    font-size: 20px;
    margin-bottom: 30px;
}

.awards-text p {
    font-size: 14px;
}

/* ----- Most Popular Program ----- */

.most-popular-program {
    text-align: center;
    border: 2px solid #eef0f6;
    border-radius: 12px;
    overflow: hidden;
}

.most-popular-program-img img {
    width: 100%;
}

.most-popular-program-text {
    padding: 15px;
}

.most-popular-program-text h2 {
    font-size: 18px;
    margin: 15px 0;
    min-height: 43px;
}

/* ----- Diploma Certification Course ----- */
.diploma-certification-course {
    border-radius: 6px;
    box-shadow: 0 2px 5px 0 rgba(17, 121, 239, .15);
    border: 1px solid #e6ecef;
    overflow: hidden;
    background: #fff;
    transition: all .5s ease;
    margin-bottom: 30px;
}

.diploma-certification-course-img {
    height: 70px;
    background: #d2ac00;
    background-image: radial-gradient(circle at 38% 32%, #f4c652, #d2ac00 92%);
}

.diploma-certification-course-img img {
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 100%;
    background: #fff;
    border: 2px solid #ecc03d;
    margin: 15px 0 -15px 15px;
}

.diploma-certification-course-text {
    margin: 30px 15px;
}

.diploma-certification-course-text h2 {
    font-size: 20px;
    min-height: 46px;
}

/* ----- Contact Info ----- */
section.contact-info {
    margin-bottom: 60px;
}

.contact-info-box {
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 30px;
    border: 2px solid #2e2244;
    box-shadow: 0 0 6px rgb(9 30 66 / 4%), 0 8px 12px rgb(9 30 66 / 8%);
}

.contact-info-box i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-info-box h2 {
    font-size: 18px;
    color: #000;
    font-weight: normal;
}

/* ----- Footer ----- */

.footer {
    background: var(--footer-bg);
    padding: 60px 0 30px;
}

.foot-img img {
    height: 50px;
}

.foot-media ul li {
    list-style: none;
    display: inline-block;
    margin-left: 5px;
}

.foot-media ul li:first-child {
    margin: 0;
}

.foot-media ul li a {
    font-size: 18px;
    color: #fff;
    display: block;
    height: 38px;
    width: 38px;
    line-height: 38px;
    border: 1px solid #fff;
    text-align: center;
    border-radius: 100%;
}

.footer-top {
    padding-bottom: 20px;
    border-bottom: 1px solid #596478;
}

ul.footer-menu {
    margin: 20px 0 0;
    padding: 0;
}

ul.footer-menu li {
    list-style: none;
    display: inline-block;
    padding: 10px 15px 10px 0;
}

ul.footer-menu li a {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: all 0.5s ease;
}

ul.footer-menu li a:hover {
    color: var(--primary);
}

ul.footer-menu li a i {
    font-size: 18px;
    color: var(--primary);
    margin-right: 5px;
}

.foot-detail-box {
    margin-top: 30px;
}

.foot-detail-box h2 {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -.004em;
    text-transform: uppercase;
    color: #fff;
}

.foot-detail-box p {
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .04em;
    color: #b4bac4;
    margin: 0;
}

.copy-text {
    border-top: 1px solid #596478;
    margin-top: 30px;
    padding-top: 30px;
}

.copy-text p {
    margin: 0;
    font-size: 14px;
    color: #b4bac4;
}

/* ----- Popular and Courses ----- */

.pc-left {
    background: url('../img/top-bg.png') repeat;
    background-size: 15px 15px;
    padding: 30px;
    border-radius: 15px;
}

.pc-left-titel {
    border-bottom: 2px solid var(--defult);
    margin-bottom: 10px;
}

.pc-left-titel h2 {
    font-size: 22px;
    color: var(--primary);
}

.pc-left-nav ul li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
    cursor: pointer;
    transition: all .5s ease;
}

.pc-left-nav ul li i {
    color: var(--primary);
}

.pc-nav-link {
    display: flex;
}

.pc-nav-link p {
    margin-bottom: 0;
    font-size: 16px;
}

.pc-nav-link p i {
    vertical-align: middle;
    font-size: 28px;
    margin-right: 10px;
    transition: all .5s ease;
}

.pc-nav-arrow i {
    font-size: 18px;
    transition: all .5s ease;
}

.pc-left-nav ul li:hover i {
    color: var(--defult);
}

.pc-left-nav ul li:hover .pc-nav-arrow i {
    transform: rotate(180deg);
}

/* ----- Program ----- */
.program-banner {
    background: rgb(255, 255, 255);
    background: linear-gradient(50deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 69%, rgba(239, 127, 26, 1) 69%, rgba(239, 127, 26, 1) 100%);
}

.program-banner-left-sec h1 {
    font-size: 28px;
    margin: 0;
}

.program-banner-left-sec h4 {
    font-size: 16px;
    margin: 30px 0;
    color: var(--primary);
}

.program-banner-left-sec p {
    font-size: 14px;
    margin-bottom: 30px;
}

.program-banner-right-sec img {
    border-radius: 10px;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(122, 125, 141, 0.3);
    -moz-box-shadow: 0px 10px 20px 0px rgba(122, 125, 141, 0.3);
    box-shadow: 0px 10px 20px 0px rgba(122, 125, 141, 0.3);
}

.program-price {
    display: flex;
    margin-bottom: 30px;
}

.program-price-box {
    border: 2px solid #e7e7e7;
    padding: 10px;
    margin-right: 10px;
    border-radius: 6px;
    background: #faf7ff;
}

.program-price-box p {
    color: var(--primary);
    margin: 0;
}

.program-price-box h3 {
    font-size: 24px;
}

.program-price-box h3 i {
    color: var(--primary);
}

.program-duration-box {
    margin: 0 0 30px;
    padding: 15px;
    position: relative;
    background: #6c92cb;
    border-radius: 6px;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(122, 125, 141, 0.3);
    -moz-box-shadow: 0px 10px 20px 0px rgba(122, 125, 141, 0.3);
    box-shadow: 0px 10px 20px 0px rgba(122, 125, 141, 0.3);
}

.program-duration-box p {
    color: #fff;
    font-size: 14px;
    margin: 0 0 10px;
}

.program-duration-box h2 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.program-duration-box-icon {
    position: absolute;
    font-size: 60px;
    top: 0px;
    right: 10px;
    color: #b9cdeb;
}

.admission-dtls,
.has-dot-bg {
    background: url('../img/top-bg.png');
    background-repeat: repeat;
    background-size: 15px;
}

.admission-dtls-box,
.enq-more_info-box {
    padding: 15px;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 30px;
    box-shadow: 0px 2px 10px rgb(17 121 239 / 10%);
}

.admission-dtls-box h5 {
    font-size: 24px;
    color: rgb(0, 184, 0);
    margin: 0;
}

.enq-more_info-box h5 {
    font-size: 30px;
    color: var(--primary);
    margin: 0;
}

.admission-dtls-box p,
.enq-more_info-box p {
    margin-left: 15px;
    padding-left: 15px;
    margin-bottom: 0;
    font-size: 15px;
    color: var(--defult);
    border-left: 1px solid #ffcc9d;

}

.coursDetails-accordion {
    border: 2px solid #ffe4cb;
    padding: 15px;
    border-radius: 6px;
}

.accordion-button:focus {
    border: none;
    box-shadow: none;
}

.enq-more_info {
    position: sticky;
    top: 95px;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
}

.skills-coverd {
    padding-top: 60px;
    background: url(../img/shock-bg-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.awarded-txt h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--defult);
}

.awarded-txt p {
    font-size: 15px;
    color: var(--defult);
    display: flex;
}

.awarded-txt p i {
    font-size: 18px;
    color: var(--primary);
    margin-right: 8px;
}


/* #Progress
================================================== */

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: "unicons";
    content: "\e84b";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--primary);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: "unicons";
    content: "\e84b";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background-image: linear-gradient(298deg, var(--red), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.progress-wrap::after {
    color: var(--black-blue);
}

.progress-wrap svg.progress-circle path {
    stroke: var(--black-blue);
}

.disclaimer {
    font-size: 10px;
    color: #3c3c3c;
}

/* #About
================================================== */
.about-text p {
    font-size: 15px;
    text-align: justify;
}

/* #Contact
================================================== */

.contact-left-sec {
    background: url('../img/con-info-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 30px;
    border-radius: 12px;
}

.contact-left-sec p {
    font-size: 14px;
    margin: 0 0 50px;
    color: #797979;
}

.contact-left-sec h2 {
    font-size: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-left-sec h2 .contact-left-sec-icon a {
    font-size: 24px;
    color: var(--grey-light);
    background: var(--primary);
    border-radius: 100%;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin-right: 8px;
    display: block;
}

.contact-left-sec h2 span {
    font-size: 16px;
}

.form-floating>label {
    font-size: 14px;
}

/* #Contact
================================================== */

.regular-content h2 {
    font-size: 18px;
    text-transform: capitalize;
    color: var(--primary);
}

.regular-content p {
    font-size: 14px;
    text-align: justify;
}

.regular-content ol li {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 5px;
}

.fs-phd-box {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0px 1px 10px #e7e7e7;
}

.fs-phd-box img {
    border-radius: 6px;
    margin-bottom: 10px;
}

.fs-phd-box p {
    font-size: 14px;
    margin: 0;
    color: var(--primary);
    text-align: center;
}

/* #PHD
================================================== */
.content p {
    font-size: 14px;
}

.align-justify,
.align-justify * {
    text-align: justify;
}

.phd-courses {
    border: 2px solid #ffe4cb;
    padding: 15px;
    border-radius: 6px;
}

.phd-courses h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}

.phd-courses p {
    font-size: 14px;
    display: flex;
    align-items: center;
    border-top: 1px dashed #f2f2f2;
    padding-top: 10px;
    margin-bottom: 10px;
}

.phd-courses p i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--primary);
}

.phd-courses p i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--primary);
    align-self: baseline;
}

/* #Design-1
================================================== */
.design-1 {
    padding: 30px 15px 0;
    background: #fff;
    border-radius: 10px;
}

.design-1-box {
    margin-bottom: 30px;
    border-right: 1px solid var(--black-blue-light-3);
}

.design-1-box:last-child {
    border: 0;
}

.design-1-box img {
    height: 65px;
    object-fit: contain;
    margin-bottom: 30px;
}

.design-1-box h3 {
    font-size: 18px;
    color: var(--primary);
}

.design-1-box p {
    font-size: 13px;
}

/* #Design-2
================================================== */
.design-2 {
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 30%, var(--defult) 30%, var(--defult) 100%);
}
.design-2-box img {
    border-radius: 10px;
}
.design-2-box h2{
    font-size: 22px;
    color: #fff;
    margin-bottom: 30px;
}
.design-2-box p{
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 300;
}

/* #Highlight-2
================================================== */
.will-get.highlight{
    position: relative;
    background: url('../img/ani-bg.gif') no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
}
.highlight::before{
    content: '';
    background: rgb(52 61 78 / 80%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.highlight .will-get-icon img{  
    border-radius: 6px;
}
.highlight .will-get-icon{
    z-index: 999;
    position: relative;
    font-size: inherit;
    margin-bottom: 30px;
}
.highlight .will-get-txt{
    z-index: 999;
    color: #fff;
    position: relative;
}
.highlight .will-get-txt h4{
    line-height: 30px;
}
.highlight .will-get-txt h4 span {
    font-size: 34px;
    color: #ff993e;
    font-weight: bold;
}