/*common css start*/
* {
    padding: 0;
    margin: 0;
}

button,
a {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    text-decoration: none;
}

ul li {
    list-style: none;
}

p {
    font-size: 14px;
    line-height: 1.4;
}

img {
    width: 100%;
}

a:hover {
    text-decoration: none;
}

body {
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    font-family: 'Hind Siliguri', sans-serif;
}

.section__title-outer {
    margin-bottom: 25px;
}

.section__title {
    display: inline-block;
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0px;
}

.section__title .bar {
    position: relative;
    z-index: 1;
    background: #ff4800;
    width: 40%;
    height: 3px;
    transition: .5s;
    margin-top: 7px;
    margin-bottom: 0;
}

.section__title .bar:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 3px;
    top: 0;
    right: 20px;
    background: #fff;
    transition: .5s;
}

.section__title .bar:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 3px;
    top: 0;
    right: 10px;
    background: #fff;
    transition: .5s;
}
/*common css End*/

/*Banner section css start*/
.banner-section {
    background: url(../images/bg4.jpg);
    padding: 100px 0px;
    text-align: center;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.shape__icon__img.shape__icon__img__1 {
    position: absolute;
    max-width: 100px;
    left: 20%;
    transform: translateX(-20%);
    bottom: 50px;
    transition: all ease-in-out 1s;
    animation: float 1s linear infinite alternate;
}

.shape__icon__img.shape__icon__img__3 {
    max-width: 60px;
    right: 20%;
    position: absolute;
    top: 50px;    
    transition: all ease-in-out 1s;
    animation: float1 1s linear infinite alternate;
}

@keyframes float{
    0%{
        bottom: 50px;
    }
    100%{
        bottom: 70px;
    }

}
@keyframes float1{
    0%{
        top: 50px;
    }
    100%{
        top: 70px;
    }

}

.banner-section:after {
    content: "";
    position: absolute;
    background: #000;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.banner-content-wrapper .banner-title {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
}

.banner-content-wrapper .banner-item {
    display: inline-block;
    background: transparent;
    margin: 0;
    padding: 10px 20px;
    position: relative;
    z-index: 1;
}

.banner-content-wrapper .banner-item li {
    display: inline-block;
    font-weight: 600;
}

.banner-content-wrapper .banner-item li a {
    color: #ffffff;
}

.banner-content-wrapper .banner-item:after {
    content: "";
    background: #000000;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 5px;
    z-index: -1;
    opacity: 0.6;
}

.banner-content-wrapper .banner-item li:before {
    content: "\f111";
    font-size: 10px;
    font-weight: 500;
    color: #ee6724;
    font-family: "Font Awesome 5 Free";
    padding: 0 10px;
    position: relative;
    top: -2px;
}

.banner-content-wrapper .banner-item li:first-child::before {
    content: '';
    padding: 0;
}

.banner-content-wrapper .banner-item li a i {
    color: #ee6724;
    margin-right: 5px;
}

.banner-content-wrapper .banner-item li.active a {
    color: #ccc;
}
/*Banner section css End*/

/*Header section css start*/
.nav-items-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-section {
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(233, 233, 233);
    width: 100%;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);
}

.brand-logo-outer {
    display: flex;
    height: 100%;
    align-items: center;
}

.brand-logo-inner {
    max-width: 130px;
}

.nav-list {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0;
    height: 100%;
}

.nav-list-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-list-item-link {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    padding: 0 15px;
    color: #000;
    transition: all .5s ease;
}

.nav-list-item-link:hover{
    color: #ff7e29;
}

.nav-list-item-link i {
    font-size: 14px;
    margin-left: 5px;
    transition: all .5s ease;
}

.nav-list-item-link:hover i {
    transform: rotate(180deg);
    color: #ff7e29;
}

.nav-list-item.item-has-submenu {
    position: relative;
}


.submenu-list-item-link {
    display: flex;
    align-items: center;
    color: #777777;
    font-size: 14px;
    padding: 10px 20px;
    text-transform: capitalize;
    transition: all 0.15s linear;
    font-weight: 500;
}

.submenu-list-item-link .course-image {
    max-width: 100px;
    border-radius: 3px;
}

.submenu-list-item-link .course-name {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin-left: 10px;
    margin-bottom: 0;
    transition: all .3s ease;
}

.submenu-list.course .submenu-list-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 7px;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    background: #fff;
}

.submenu-list-item-link:hover .course-name {
    color: #ff7e29;
}

.submenu-list {
    position: absolute;
    background: #fff;
    top: 80px;
    width: 250px;
    right: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding-left: 0;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transform-origin: left;
    z-index: 9;
    transition: all .5s ease;
}

.submenu-list-item {
    border-bottom: 1px solid #f4f4f4;
}

.submenu-list-item-link:hover {
    color: #ff7e29;
}

.item-has-submenu:hover .submenu-list {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.submenu-list-course {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #f9f9f9;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    z-index: 99;
    opacity: 0;
    transform: scale(0);
    visibility: hidden;
    transform-origin: top;
    transition: all .9s ease;
}

.submenu-list-course-item-link {
    display: flex;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid #ddd;
    padding: 10px;
    background: #FFF;
    border-radius: 5px;
    transition: all .5s ease;
}

.submenu-list-course-item-link .course-image {
    max-width: 100px;
}

.submenu-list-course-item-link .course-name {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-left: 10px;
    transition: all .5s ease;
}

.submenu-list-course-item-link:hover .course-name {
    color: #ee6725;
}

.item-has-submenu-course:hover .submenu-list-course {
    left: 0;
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

/*small btn css*/
.nav-toggle-btn .btn-inner {
    width: 26px;
    border-bottom: 1px solid #000;
    position: relative;
    transition: all .4s ease;
}

.nav-toggle-btn {
    height: 30px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    padding: 5px;
    border-radius: 5px;
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 999;
}

.nav-toggle-btn .btn-inner:before {
    content: "";
    height: 1px;
    width: 26px;
    position: absolute;
    background: #000;
    top: -7px;
}

.nav-toggle-btn .btn-inner:after {
    content: "";
    height: 1px;
    width: 26px;
    position: absolute;
    background: #000;
    top: 7px;
}
/*fixed header*/
.fixed-header .header-section {
    position: fixed;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*Header section css End*/

/*Home section css start*/
.home-section {
    padding: 40px 0;
}

.home-sec-info-outer {
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.08);
    border: 1px solid #98a2b3;
    padding: 24px;
    border-radius: 15px;
    background: #f3f5f9;
    position: relative;
    overflow: hidden;
}

.home-info__title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.home-info-title__separate-color {
    color: #ee6725;
    font-style: italic;
}

.home-info__subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #1d2939;
    max-width: 80%;
    line-height: 27px;
    margin-bottom: 15px;
}

.home-info__btn {
    display: inline-block;
    background: #ee6725;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 7px 40px;
    text-transform: capitalize;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #ee6725;
    transition: all .3s ease;
}

.home-info__text {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.home-info__image-list {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.home-info__image-list-item-link {
    display: inline-block;
    margin-right: 10px;
}

.home-info__image-list-item-link img {
    max-width: 80px;
}

.home__offer-image-outer img {
    border-radius: 10px;
}

.home__info-outer {
    margin-bottom: 30px;
}

.home-info__btn:hover {
    background: transparent;
    color: #ee6725;
}

.home_shado-box {
    position: absolute;
    height: 30%;
    width: 17%;
    background: #3bb77e;
    left: -7%;
    top: -9%;
    filter: blur(50.42px);
    opacity: .5;
}

.home_shado-box1 {
    position: absolute;
    height: 30%;
    width: 17%;
    background: #00ff9ac7;
    left: -7%;
    bottom: -9%;
    filter: blur(50.42px);
    opacity: .4;
}

.home_shado-box2 {
    position: absolute;
    height: 30%;
    width: 17%;
    background: #ee1d48c7;
    right: -7%;
    top: -9%;
    filter: blur(50.42px);
    opacity: .5;
}

.home_shado-box4 {
    position: absolute;
    height: 30%;
    width: 50%;
    background: #ee6725;
    left: 50%;
    transform: translateX(-50%);
    top: -9%;
    filter: blur(50.42px);
    opacity: .2;
}

.home_shado-box5 {
    position: absolute;
    height: 30%;
    width: 50%;
    background: #ee6725;
    left: 50%;
    transform: translateX(-50%);
    bottom: -9%;
    filter: blur(50.42px);
    opacity: .2;
}
/*Home section css End*/

/*Counter section css start*/
.counter-section {
    padding: 30px 0;
}

.counter-items-wrapper {
    border: 1px solid #3bb77e;
    background: linear-gradient(#07544c, #012861);
    padding: 20px;
    border-radius: 10px;
}

.counter-item-outer {
    text-align: center;
    margin: 10px  0;
}

.counter-item-outer .counter-number {
    font-size: 30px;
    font-weight: 700;
    color: #ee6624;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.counter-item-outer .counter-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
/*Counter section css End*/

/*Category section css start*/
.category-section {
    padding: 40px 0;
    background: #1d2939;
    position: relative;
    background-image: url(../images/category-bg.webp);
    background-position-x: center;
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
}

.category-section__title-outer {
    text-align: center;
    color: #fff;
    max-width: 600px;
    margin: auto;
    margin-bottom: 40px;
    background: linear-gradient(180deg,hsla(0,0%,100%,.1),hsla(0,0%,100%,0) 114.21%);
    border-radius: 40px 40px 0 0;
    padding: 24px 48px;
}

.category-section__title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.category-section__text {
    font-size: 16px;
    font-weight: 400;
    color: #bdbdbd;
    margin-bottom: 0;
}

.category_shado-box {
    width: 260px;
    height: 260px;
    flex-shrink: 0;
    border-radius: 260px;
    opacity: .35;
    background: #32d583;
    filter: blur(80px);
    position: absolute;
    top: -30px;
    left: 20%;
    z-index: 1;
}

.category_shado-box1 {
    width: 338px;
    height: 338px;
    flex-shrink: 0;
    border-radius: 338px;
    filter: blur(80px);
    position: absolute;
    bottom: -50px;
    z-index: 0;
    opacity: .14;
    background: #ffc000;
    left: 10%;
}

.category_shado-box2 {
    width: 338px;
    height: 338px;
    flex-shrink: 0;
    border-radius: 338px;
    filter: blur(80px);
    position: absolute;
    bottom: -50px;
    z-index: 1;
    opacity: .35;
    background: #4478ff;
    right: 10%;
}

.category-item-outer {
    background: #e9efff;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    /* height: 100%; */
    position: relative;
    z-index: 1;
}

.category__icon-outer {
    width: 50px;
    height: 50px;
    background: #fff;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category__icon-outer img {max-width: 30px;}

.category-info__name {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    transition: all .3s ease;
}

.category-info__name:hover {
    color: #ef6725;
}

.category-info__counter-list {
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-info__counter-list-item {
    font-size: 14px;
    font-weight: 300;
    margin-right: 10px;
}

.category-info__counter-list-item:last-child {
    margin-right: 0;
}

.category__details-btn {
    display: block;
    background: #000;
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 3px;
    text-transform: capitalize;
    transition: all .5s ease;
}

.category__details-btn i {
    margin-left: 6px;
    font-size: 14px;
}

.category__details-btn:hover {
    background: #ef6725;
    color: #fff;
}
/*Category section css End*/

/*Course section css start*/
.course-section {
    padding: 40px 0;
    background: #f9f9fa;
}

.course-list-outer {
    background: #FFF;
    box-shadow: 0 4px 8px -8px rgba(8,31,77,.2);
    padding: 10px;
    border-radius: 5px;
}

.course-item-outer {
    border: 1px solid #ef6625;
    border-radius: 10px;
    margin-bottom: 20px;
}

.courses__image-outer {
    display: block;
}

.courses__image-outer img {
    border-radius: 10px 10px 0 0;
}

.courses__info-outer {
    padding: 10px;
}

.course-info__title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    display: inline-block;
    transition: all .5s ease;
}

.course-info__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #212832;
    font-size: 16px;
    font-weight: 500;
}

.course-info__title:hover {
    color: #ef6625;
}

.course-info__price .course-free-name {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.course__details-link-outer {
    background: #f9f9fa;
    padding: 12px;
    border-radius: 0 0 10px 10px;
    text-align: end;
}

.course__details-link {
    display: inline-block;
    background: #ef6625;
    padding: 6px 15px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid #ef6625;
    border-radius: 3px;
    transition: all .3s ease;
}

.course__details-link:hover {
    background: transparent;
    color: #ef6625;
}

.all-course-btn-outer {
    margin-top: 20px;
    text-align: center;
}

.all-course-btn-inner {
    display: inline-block;
    background: #ef6625;
    padding: 8px 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid #ef6625;
    border-radius: 3px;
    transition: all .3s ease;
}

.all-course-btn-inner i {
    margin-left: 8px;
    font-size: 14px;
}

.all-course-btn-inner:hover {
    background: transparent;
    color: #ef6625;
}

.all-courses-section {
    padding: 40px 0;
}
/*Course section css End*/

/*Benefit section css start*/
.benefit-section {
    padding: 40px 0;
}

.benefit-item-outer {
    border: 1px solid #ee6725;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    text-align: center;
}

.benefit__icon-outer {
    margin-bottom: 15px;
}

.benefit__icon-outer img {
    max-width: 60px;
}

.benefit-info__name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-info__text {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 400;
    color: #000;
}
/*Benefit section css End*/

/* Ambassador section css start */
.ambassador-section {
    padding: 40px 0;
}

.ambassador-content-outer {
    background: #f9f9fa;
    padding: 20px;
    border-radius: 10px;
}

.ambassador-info__title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 18px;
}

.ambassador-info__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.ambassador-info__link {
    display: inline-block;
    background: #ef6625;
    padding: 6px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid #ef6625;
    border-radius: 3px;
    transition: all .3s ease;
}

.ambassador-info__link i {
    font-size: 14px;
    margin-left: 10px;
}

.ambassador-info__link:hover {
    background: transparent;
    color: #ef6625;
}

.ambassador__partner-outer {
    margin-top: 20px;
}

.ambassador-partner__title {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

.ambassador-partner__list {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0;
}

.ambassador-partner__list-item-link {
    display: inline-block;
}

.ambassador-partner__list-item-link img {
    max-width: 80px;
}

.ambassador__info-outer {
    margin-bottom: 20px;
}

.ambassador-partner__list-item {
    margin-right: 15px;
}

.ambassador-partner__list-item:last-child {
    margin-right: 0;
}
/* Ambassador section css End */

/* Ambassador Login page start */
.ambassador-login-section {
    padding: 40px 0;
}

.ambassador-login-form {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 10px;
}

.ambassador-login-form__title {font-size: 22px;font-weight: 500;color: #000;border-bottom: 1px solid #ddd;margin-bottom: 15px;padding-bottom: 5px;}

.ambassador-login-form__item-outer {
    margin-bottom: 15px;
}

.ambassador-login-form__item-outer label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 3px;
}

.ambassador-login-form__item-outer input {
    background: #fff;
    border: 1px solid #ddd;
    height: 45px;
}

.ambassador-login-form__item-outer input:focus {
    box-shadow: none;
    border: 1px solid #ef6725;
}

.ambassador-login-form__btn-outer {
    text-align: center;
    margin-top: 20px;
}

.ambassador-login-form__btn-inner {
    background: #ef6725;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 9px 20px;
    border: 1px solid #ef6725;
    border-radius: 5px;
    transition: all .5s ease;
}

.ambassador-login-form__btn-inner:hover {
    background: transparent;
    color: #ef6725;
}
/* Ambassador Login page end */

/*Review section css start*/
.review-section {
    padding: 40px 0;
}

.review-item-outer {
    background: #fff;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    padding: 20px;
    border-radius: 5px;
    margin: 10px;
}

.review__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
}

.review__bottom-outer {
    display: flex;
    margin-top: 30px;
}

.review__image-outer {
    margin-right: 10px;
}

.review__image-outer img {
    max-width: 60px;
    border-radius: 50%;
}

.review-info__user-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: #000;
}

.review-rating-list {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.review-rating-list-item {
    margin-right: 3px;
}

.review-rating-list-item:last-child {
    margin-right: 0;
}

.review-rating-list-item i {
    font-size: 12px;
    color: #ee6725;
}
/*Review section css End*/

/*Blog section css start*/
.blog-section {
    padding: 40px 0;
}

.blog-item-outer {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    border-radius: 10px;
    transition: all .3s ease;
    margin-bottom: 20px;
}

.blog__image-outer {
    display: block;
    margin-bottom: 15px;
}

.blog__image-outer img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-info__title {
    font-size: 17px;
    font-weight: 600;
    color: #212832;
    display: inline-block;
    margin-bottom: 8px;
}

.blog-info__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #5e5c5c;
}

.blog-info__link {
    display: inline-block;
    background: #ef6625;
    padding: 6px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid #ef6625;
    border-radius: 3px;
    transition: all .3s ease;
}

.blog-info__link:hover {
    background: transparent;
    color: #ef6625;
}

.blog-info__link i {
    font-size: 14px;
    margin-left: 10px;
}

.blog-see-more-btn-link {
    display: inline-block;
    background: #ef6625;
    padding: 8px 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    border: 1px solid #ef6625;
    border-radius: 3px;
    transition: all .3s ease;
    margin-top: 20px;
}

.blog-see-more-btn-link i {
    margin-left: 8px;
    font-size: 14px;
}
/*Blog section css End*/

/* Footer section css start */
.footer-section {
    padding-top: 50px;
    background: #f3f3f7;
}

.footer-item-wrapper {
    margin-bottom: 20px;
}

.footer-item-wrapper .footer-logo {
    display: inline-block;
}

.footer-item-wrapper .footer-logo img {
    max-width: 170px;
}

.footer-item-wrapper .footer-address {
    color: #000;
    font-size: 14px;
    line-height: 24px;
}

.footer-item-wrapper .footer-address:hover {
    color: #ee6724;
}

.footer-item-wrapper .footer-email {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.footer-item-wrapper .footer-email i {
    margin-right: 5px;
    color: #ee6724;
}

.footer-item-wrapper .footer-email:hover {
    color: #ee6724;
}

.footer-item-wrapper .footer-phone {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.footer-item-wrapper .footer-phone i {
    margin-right: 5px;
    color: #ee6724;
}

.footer-item-wrapper .footer-phone:hover {
    color: #ee6724;
}

.footer-item-wrapper .socials-link-list {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 15px;
}

.socials-link-list-item {
    margin-right: 7px;
}

.socials-link-list-item a {
    background: #000;
    width: 30px;
    height: 30px;
    font-size: 14px;
    border-radius: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials-link-list-item:hover a {
    transform: rotate(360deg);
}

.socials-link-list-item:nth-child(1) a {
    background: #3b5998;
}

.socials-link-list-item:nth-child(2) a {
    background: #cd2371;
}

.socials-link-list-item:nth-child(3) a {
    background: #cd2371;
}

.socials-link-list-item:nth-child(4) a {
    background: #0a66c2;
}

.footer-item-wrapper .footer-item-title {
    color: #000;
    font-weight: 500;
    font-size: 22px;
    display: inline-block;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}

.footer-item-wrapper .footer-item-title:after {
    content: '';
    position: absolute;
    width: 80px;
    bottom: 0;
    background: #FC9D01;
    transition: all .5s ease;
    height: 2px;
    left: 0;
    -moz-transform: skewX(-65deg);
    -webkit-transform: skewX(-65deg);
    -o-transform: skewX(-65deg);
    -ms-transform: skewX(-65deg);
    transform: skewX(-65deg);
}

.footer-item-wrapper .footer-item-title:hover::after {
    width: 100%;
}

.footer-item-wrapper .footer-list {
    margin-bottom: 0;
    padding-left: 0;
}

.footer-list .footer-list-item {
    margin-bottom: 10px;
    position: relative;
}

.footer-list .footer-list-item .footer-list-item-link {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
}

.footer-list .footer-list-item .footer-list-item-link:hover {
    padding-left: 5px;
    color: #ee6724;
}

.footer-list-item:before {
    content: "\f35a";
    font-size: 12px;
    font-weight: 500;
    color: #ee6724;
    font-family: "Font Awesome 5 Free";
    padding-right: 5px;
    position: relative;
    top: -2px;
}

.partner-list {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.partner-list-item-link {
    margin-right: 15px;
    display: inline-block;
}

.partner-list-item-link img {
    max-width: 100px;
    border-radius: 50%;
}
.copyright-text {
    text-align: center;
}

.footer-bottom-section {
    padding: 15px 0;
}

.copyright-text p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: #ef6725;
}

.scroll-back-top {
    display: inline-block;
    position: fixed;
    /* bottom: 70px; */
    left: 20px;
    z-index: 999;
    background: #ef6725;
    width: 40px;
    height: 40px;
    padding: 10px 14px;
    border-radius: 100%;
    color: #fff;
    box-shadow: rgb(0 0 0 / 25%) 0px 54px 55px, rgb(0 0 0 / 12%) 0px -12px 30px, rgb(0 0 0 / 12%) 0px 4px 6px, rgb(0 0 0 / 17%) 0px 12px 13px, rgb(0 0 0 / 9%) 0px -3px 5px;
}
/* Footer section css End */

/*Category course section css start*/
.category-course-section {
    padding: 40px 0;
}

.category-section-outer .category-sec-title img {
    max-width: 40px;
}

.category-section-outer .category-sec-title span {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 5px;
    color: #000;
}

.category-section-outer .category-sec-text {
    font-size: 15px;
    font-weight: 500;
    color: #605c5c;
    margin-bottom: 0;
}

.category-section-outer {
    margin-bottom: 40px;
}

.category-section-outer .category-sec-title {
    margin-bottom: 15px;
}

.category-course-list-title {
    margin-bottom: 15px;
}

.category-course-list-title img {
    max-width: 40px;
}

.category-course-list-title span {
    font-size: 18px;
    font-weight: 500;
    margin-left: 5px;
    color: #000;
}
/*Category course section css end*/

/*Instructor section css start*/
.instructor-section {
    padding: 40px 0;
    background: #f9f9fa;
}

.instructor-sec-title-outer {
    margin-bottom: 40px;
}

.instructor-sec-title-outer .instructor-sec-title {
    margin-bottom: 15px;
}

.instructor-sec-title-outer .instructor-sec-title img {
    max-width: 40px;
}

.instructor-sec-title-outer .instructor-sec-title span {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 5px;
    color: #000;
}

.instructor-sec-title-outer .instructor-sec-text {
    font-size: 15px;
    font-weight: 500;
    color: #605c5c;
    margin-bottom: 0;
}

.instructor-item-wrap {
    background: #fff;
    border-radius: 10px;
}

.instructor-image-outer {
    display: block;
    text-align: center;
    overflow: hidden;
    transition: all .5s ease;
}

.instructor-image-outer img {
    max-width: 240px;
}

.instructor__info-outer {
    padding: 12px;
}

.instructor__name {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    display: inline-block;
    margin-bottom: 4px;
    transition: all .3s ease;
}

.instructor__position {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin-bottom: 0;
}

.instructor__name:hover {
    color: #ef6625;
}

.instructor-image-outer:hover {
    transform: scale(1.2);
}
/*Instructor section css End*/

/* Got Hired section css start */
.got-hired-section {
    padding: 40px 10px;
}

.got-hirted-sec-title-outer {
    text-align: center;
    margin-bottom: 40px;
}

.got-hirted-sec-title {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

.got-hired-item-outer {
    max-width: 256px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 12px -4px rgba(8,31,77,.2);
    margin-bottom: 10px;
    padding-bottom: 10px;
    margin-top: 60px;
}

.got-hired-item__image-outer {
    border: 3px solid #fff;
    box-shadow: 0 8px 16px -8px rgba(8,31,77,.2);
    border-radius: 50%;
    height: 80px;
    width: 80px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -55px;
}

.got-hired-item__image-outer img {
    max-width: 80px;
}

.got-hired-item-company-logo-outer {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.got-hired-item-company-logo-outer img {
    max-width: 50px;
}

.got-hired-item-info-outer {
    padding: 32px 8px 8px;
    text-align: center;
}

.got-hired-item-info__title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.got-hired-item-info__position {
    font-size: 14px;
    font-weight: 400;
    color: #5a5a5a;
}

.got-hired-item-company-logo-outer .caption {
    margin-bottom: 0;
    margin-left: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}
/* Got Hired section css End */

/* Join community section css start */
.join-community-section {
    padding: 40px 0;
}

.join-community-section-outer {
    margin-bottom: 40px;
}

.join-community-sec-title {
    margin-bottom: 15px;
}

.join-community-sec-title img {
    max-width: 40px;
}

.join-community-sec-title span {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 5px;
    color: #000;
}

.join-community-sec-text {
    font-size: 15px;
    font-weight: 500;
    color: #605c5c;
    margin-bottom: 0;
}

.join-community-item-wrap {
    padding: 13px;
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 8px;
}

.join-community-item-image img {
    border-radius: 5px;
}

.join-community-item-info-outer {
    margin-top: 10px;
}

.join-community-member-outer {display: inline-block;background-color: #E9EFFF;color: #050400;padding: 3px 6px;border-radius: 4px;}

.join-community-member-outer img {
    /* max-width: 20px; */
}

.join-community-member-outer span {
    font-size: 12px;
    font-weight: 400;
    color: #000;
}

.join-community-item-info__title {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0;
}

.join-community-item-info__btn-link {
    display: block;
    background: #ff5b0db0;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
}

.join-community-item-info__btn-link:hover {
    background: #ed7339;
    color: #fff;
}
/* Join community section css End */

/* Course details intro section css start */
.course-details-intro-section {
    padding: 40px 0;
    background: #fff;
}

.course-details-intro-banner-inner {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-details-intro-banner-outer {
    margin-bottom: 30px;
}

.course-details__name {
    /*max-width: 800px;
    margin: auto;*/
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #ef6625;
    margin-bottom: 15px;
}

.course-details__text {
    /*max-width: 800px;
    margin: auto;*/
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #404040;
    margin-bottom: 20px;
}

.course-details__demo-video {
    /*max-width: 800px;
    margin: auto;*/
    text-align: center;
    margin-bottom: 50px;
}

.details__info-items-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ef6625;
    border-radius: 5px;
}

.details__info-item-inner {
    border-right: 1px solid #fff;
    width: 100%;
    padding: 10px 20px;
}

.details__info-item-top {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}

.details__info-item-top i {
    margin-right: 5px;
}

.details__info-item-bottom p {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.details__info-item-bottom.date {
    background: #000;
    padding: 3px 5px;
    display: inline-block;
    border-radius: 5px;
}
/* Course details intro section css End */

/*Course acheivment section css start*/
.course-achievement-section {
    padding: 40px 0;
    background: #f3f3f7;
}

.course-achievementd-sec-title-outer {
    max-width: 800px;
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
}

.course-achievementd-sec-title {
    font-size: 35px;
    font-weight: 600;
    color: #000;
}

.course-achievementd-sec-text {
    font-size: 16px;
    font-weight: 400;
    color: #484646;
}

.course-achievementd-item__icon {
    max-width: 60px;
}

/*.course-achievementd-items-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(to right, #FFC837, #ef6625);
    border-radius: 5px;
}*/

.course-achievementd-item-outer {
     border: 1px solid #ee6725;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    text-align: center;
}

.course-achievementd-item__text {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-top: 9px;
    margin-bottom: 0;
}
/*Course achivment section css end*/

/* course plan section css start */
.course-plan-section {
    padding: 40px 0;
    background: #fff;
}

.course-plan-title-outer {
    text-align: center;
    margin-bottom: 40px;
}

.course-plan-title {
    font-size: 35px;
    font-weight: 600;
    color: #000;
}

.course-plan-item-outer {
    border: 1px solid #ef6725;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 20px;
}

.course-plan-item__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ef6725;
}

.course-plan-item__label-left-box {
    background: #ef6725;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    margin-right: 10px;
}

.course-plan-item__label-left-box .title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
}

.course-plan-item__label-left-box .number {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.course-plan-item__label-left-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

.course-plan-item__label-right i {
    color: #ef6725;
    font-size: 20px;
}

.course-plan-item-content {
    padding: 10px;
}

.course-plan-item-content.class-video{
    display: none;
}

.course-plan-item-content-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
    background: #b3adad;
    padding: 5px 10px;
    border-radius: 5px;
}

.course-plan-item-content-top__list {
    margin-right: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.course-plan-item-content-top__list:last-child {
    margin-right: 0;
}

.course-plan-item-content-top__list i {
    margin-right: 3px;
}

.course-plan-item-cont-text p,.course-plan-item-cont-text {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
}
/* course plan section css End */

/* Course price section css start */
.course-price-section {
    padding: 10px 0;
    background: #ef6725;
    position: sticky;
    bottom: 0;
    z-index: 9;
}

.course-price-left__text {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 5px;
}

.course-price-left__text a {
    color: #fff;
    font-weight: 500;
}

.course-price-left .course-price {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.course__booking-link {
    display: inline-block;
    background: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    color: #ef6725;
}

.course__booking-link i {
    margin-left: 5px;
    color: #ef6725;
}

.course__booking-link:hover {
    color: #000;
}

.course__promo-code-outer {
    display: flex;
    align-items: center;
}

.course__promo-code-text {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: underline;
    margin-bottom: 0;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
    cursor: pointer;
}

.course__promo-code-form {
    opacity: 0;
    display: none;
}

.course__promo-code-form.show-promo {
    display: block;
    opacity: 1;
}

.course__promo-code-form .input-item-wrap input {
    border: none;
    height: 38px;
    border-radius: 5px;
    background: #fff;
    padding: 5px 10px;
}

.input-item-wrap input:focus-visible {outline: none;}

.course__promo-code-form .input-item-wrap button {
    border: none;
    background: #fff;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    border-radius: 5px;
}
/* Course price section css End */

/* Ambassador Page css start */
.ambassador-rules-outer {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid #ef6725;
    border-radius: 5px;
}

.ambassador-rules-label {
    background: #ef6725;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.ambassador-rules-wrapper {
    padding-bottom: 40px;
}

.ambassador-rules-list {
    padding: 15px 15px 15px 25px;
    margin-bottom: 0;
}

.ambassador-rules-list-item {
    list-style: auto;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ambassador-from-wrapper {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
    padding: 20px;
}

.ambassador-from-title {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.ambassador-input-wrap {
    margin-bottom: 12px;
}

.ambassador-input-wrap label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    color: #000;
}

.ambassador-input-wrap input {
    height: 45px;
}

.ambassador-input-wrap input:focus,.ambassador-input-wrap textarea:focus {
    box-shadow: none;
    border: 1px solid #ef6725;
}

.avatar-upload {
    position: relative;
    max-width: 230px;
    margin: auto;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 0px;
    z-index: 1;
    top: 0;
}

.avatar-upload .avatar-edit input#imageUpload {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 12%);
    cursor: pointer;
    font-weight: normal;
    transition: all .2s ease-in-out;
}

.avatar-upload .avatar-preview {
    width: 230px;
    height: 210px;
    position: relative;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 10%);
    margin-bottom: 15px;
}

.avatar-upload .avatar-edit input+label i {
    font-size: 16px;
    margin-left: 10px;
}

.ambassador-btn-outer {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ambassador-login-btn-inner {
    font-size: 14px;
    font-weight: 500;
    color: #686767;
}

.ambassador-login-btn-inner span {
    color: #ef6725;
    font-size: 15px;
}

.ambassador-btn-inner {
    background: #ef6725;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 9px 20px;
    border: 1px solid #ef6725;
    border-radius: 5px;
    transition: all .5s ease;
}

.ambassador-btn-inner:hover {
    background: transparent;
    color: #ef6725;
}
/* Ambassador Page css End */

/*Management team section css start*/
.management-team-section {
    padding: 40px 0;
}

.ownar-details-wrapper {
    background-color: #f3f5f5;
    padding: 50px;
}

.ownar-section {
    padding: 40px 0;
}

.ownar-details__image-outer {margin-bottom: 20px;}

.ownar-details__social-list-outer {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ownar-details__social-list-link {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
    display: inline-block;
    background-color: #fff;
    margin: 0 6px;
}

.ownar-details__social-list-link i {
    font-size: 16px;
    color: #000;
}

.ownar-details__info-list {
    padding-left: 0;
    margin-bottom: 0;
}

.ownar-details__info-list-item-link {
    color: #ef6725;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
}

.ownar-details__info-outer {
    margin-bottom: 30px;
}

.ownar-details__info-list-item-link i {
    margin-right: 5px;
}

.ownar-details__info-link {
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px;
    transition: .4s;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    background-color: #ef6725;
}

.ownar-details__text-outer {
    background-color: #fff;
    padding: 50px;
    margin-left: 20px;
}

.ownar-details__name {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 2px;
}

.ownar-details__position {
    font-size: 16px;
    font-weight: 600;
    color: #524f4f;
    margin-bottom: 20px;
}

.ownar-details__text-inner {
    font-size: 17px;
    font-weight: 400;
    color: #333931;
    line-height: 28px;
}

.list-item-wrapper {
    margin-bottom: 25px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.item-image-outer {
    overflow: hidden;
    position: relative;
}

.item-content-outer {
    background: #ee6724;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.list-item-wrapper:hover .item-image-outer img {
    transform: scale(1.05);
}

.item-image-outer img {
    transition: all .5s ease;
}

.item-content-outer .list-item-name {
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    margin-top: 0;
}

.item-content-outer .list-item-position {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.list-social-icon-outer .social-icon-list {
    padding-left: 0;
    margin-bottom: 0;
    position: absolute;
    top: 30px;
    left: 0;
}

.list-social-icon-outer .social-icon-list-item {
    margin-bottom: 10px;
}

.social-icon-list-item .social-icon-list-item-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    background: #151515;
    color: #fff;
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    border-radius: 90px;
    transition: transform .5s, opacity .3s, background .5s;
    opacity: 0;
}

.social-icon-list-item-link i {
    font-size: 15px;
}

.list-item-wrapper:hover .social-icon-list-item-link {transform: translateX(30px);opacity: 1;}

.list-social-icon-outer .social-icon-list-item:nth-child(2) .social-icon-list-item-link {
    transition-delay: .1s;
}

.list-social-icon-outer .social-icon-list-item:nth-child(3) .social-icon-list-item-link {
    transition-delay: .2s;
}

.list-social-icon-outer .social-icon-list-item:nth-child(4) .social-icon-list-item-link {
    transition-delay: .3s;
}

.social-icon-list-item-link:hover {
    background: #ee6724;
}
/*Management team section css End*/

/* Teacher section css start */
.teacher-section {
    padding: 40px 0;
}

.teacher-section .col-xl-6.col-lg-12 {
    margin-bottom: 20px;
}

.teacher-details-wrapper {
    background-color: #f3f5f5;
    padding: 20px 15px;
    border-radius: 5px;
    height: 100%;
}
.teacher-details__image-outer {margin-bottom: 15px;}

.teacher-details__social-list-outer {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teacher-details__social-list-link {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    background-color: #fff;
    margin-right: 6px;
}

.teacher-details__social-list-link i {
    font-size: 14px;
    color: #000;
}

.teacher-details__info-list {
    padding-left: 0;
    margin-bottom: 0;
}

.teacher-details__info-list-item-link {
    color: #ef6725;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
}

.teacher-details__info-link:hover {
    color: #000;
}

.teacher-details__info-list-item-link:hover {
    color: #000;
}

.teacher-details__info-outer {
    margin-bottom: 20px;
}

.teacher-details__info-list-item-link i {
    margin-right: 5px;
}

.teacher-details__info-link {
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px;
    position: relative;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    background-color: #ef6725;
}

.teacher-details__text-outer {
    background-color: #fff;
    padding: 20px 10px;
}

.teacher-details__name {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 2px;
}

.teacher-details__position {
    font-size: 14px;
    font-weight: 600;
    color: #524f4f;
    margin-bottom: 10px;
}

.teacher-details__text-inner {
    font-size: 14px;
    font-weight: 400;
    color: #333931;
    line-height: 26px;
}
/* Teacher section css End */

/* FAQ section css start */
.faq-section{
    padding: 40px 0;
}

.faq-content .accordion-button {
    background: #fc9d01;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Hind Siliguri', sans-serif;

}

.faq-content .accordion-body {
    font-family: 'Hind Siliguri', sans-serif;
}
/* FAQ section css End */

/* Student Support & Rules section css start */
.student-supprot-section{
    padding: 40px 0;
}

.student-support-content {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 5px;
}

.sutudent-support-items-outer {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed;
}

.sutudent-support-item-title {
    font-size: 18px;
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 500;
}

.sutudent-support-item-title i {
    font-size: 16px;
    margin-right: 5px;
    color: #fc9d01;
}

.sutudent-support-items-outer p {
    font-size: 15px;
    font-weight: 300;
    color: #0f1239;
    font-family: 'Hind Siliguri', sans-serif;
}
/* Student Support & Rules section css End */

/* Payment & Refund section css start */
.payment-refund-section{
    padding: 40px 0;
}

.payment-policy-content {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 5px;
}

.payment-policy-content p {
    font-family: 'Hind Siliguri', sans-serif;
}
/* Payment & Refund section css End */

/* Teacher Login page start */
.teacher-login-section {
    padding: 40px 0;
}

.teacher-login-form {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 10px;
}

.teacher-login-form__title {font-size: 22px;font-weight: 500;color: #000;border-bottom: 1px solid #ddd;margin-bottom: 15px;padding-bottom: 5px;}

.teacher-login-form__item-outer {
    margin-bottom: 15px;
}

.teacher-login-form__item-outer label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 3px;
}

.teacher-login-form__item-outer input {
    background: #fff;
    border: 1px solid #ddd;
    height: 45px;
}

.teacher-login-form__item-outer input:focus {
    box-shadow: none;
    border: 1px solid #ef6725;
}

.teacher-login-form__btn-outer {
    text-align: center;
    margin-top: 20px;
}

.teacher-login-form__btn-inner {
    background: #ef6725;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 9px 20px;
    border: 1px solid #ef6725;
    border-radius: 5px;
    transition: all .5s ease;
}

.teacher-login-form__btn-inner:hover {
    background: transparent;
    color: #ef6725;
}

.teacher-register-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #4c4b4b;
    transition: all .3s ease;
}

.teacher-register-link:hover {
    color: #ef6725;
}
/* teacher Login page end */

/* Teacher Register page css start */
.teacher-register-from-outer {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 10px;
}

.teacher-register-from-title {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.teacher-register-section {
    padding: 40px 0;
}

.teacher-register-input-wrap {
    margin-bottom: 10px;
}

.teacher-register-input-wrap label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    color: #000;
}

.teacher-register-input-wrap input {
    height: 45px;
}

.teacher-register-input-wrap input:focus,.teacher-register-input-wrap textarea:focus {
    box-shadow: none;
    border: 1px solid #ef6725;
}

.teacher-register-btn-outer {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.teacher-register-btn-inner {
    background: #ef6725;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 9px 20px;
    border: 1px solid #ef6725;
    border-radius: 5px;
    transition: all .5s ease;
}

.teacher-register-login-btn-inner {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #686767;
}

.teacher-register-login-btn-inner span {
    color: #ef6725;
    font-size: 15px;
}

.teacher-register-login-btn-inner:hover {
    color: #ef6725;
}

.teacher-register-btn-inner:hover {
    background: transparent;
    color: #ef6725;
}
/* Teacher Register page css End */

/* Student Login page start */
.student-login-section {
    padding: 40px 0;
}

.student-login-form {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 10px;
}

.student-login-form__title {font-size: 22px;font-weight: 500;color: #000;border-bottom: 1px solid #ddd;margin-bottom: 15px;padding-bottom: 5px;}

.student-login-form__item-outer {
    margin-bottom: 15px;
}

.student-login-form__item-outer label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 3px;
}

.student-login-form__item-outer input {
    background: #fff;
    border: 1px solid #ddd;
    height: 45px;
}

.student-login-form__item-outer input:focus {
    box-shadow: none;
    border: 1px solid #ef6725;
}

.student-login-form__btn-outer {
    text-align: center;
    margin-top: 20px;
}

.student-login-form__btn-inner {
    background: #ef6725;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 9px 20px;
    border: 1px solid #ef6725;
    border-radius: 5px;
    transition: all .5s ease;
}

.student-login-form__btn-inner:hover {
    background: transparent;
    color: #ef6725;
}

.student-register-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #4c4b4b;
    transition: all .3s ease;
}

.student-register-link:hover {
    color: #ef6725;
}
/* Student Login page end */

/* Student Register page css start */
.student-register-from-outer {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 10px;
}

.student-register-from-title {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.student-register-section {
    padding: 40px 0;
}

.student-register-input-wrap {
    margin-bottom: 10px;
}

.student-register-input-wrap label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    color: #000;
}

.student-register-input-wrap input {
    height: 45px;
}

.student-register-input-wrap input:focus,.student-register-input-wrap textarea:focus {
    box-shadow: none;
    border: 1px solid #ef6725;
}

.student-register-btn-outer {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.student-register-btn-inner {
    background: #ef6725;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 9px 20px;
    border: 1px solid #ef6725;
    border-radius: 5px;
    transition: all .5s ease;
}

.student-register-login-btn-inner {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #686767;
}

.student-register-login-btn-inner span {
    color: #ef6725;
    font-size: 15px;
}

.student-register-login-btn-inner:hover {
    color: #ef6725;
}

.student-register-btn-inner:hover {
    background: transparent;
    color: #ef6725;
}
/* Student Register page css End */

/* Admission section css start */
.admission-section {
    padding: 40px 0;
}

.admission__form-outer {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.admission__from-title {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.admission__from-item-outer {
    margin-bottom: 12px;
}

.admission__from-item-outer label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 3px;
}

.admission__from-item-outer input,.admission__from-item-outer select {
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.admission__from-item-outer input:focus,.admission__from-item-outer select:focus,.admission__from-item-outer textarea:focus {
    box-shadow: none;
    border: 1px solid #ef6725;
}

.admission__avater-upload-outer .avatar-upload {
    margin-left: 0;
}

.admission__btn-outer {
    margin-top: 10px;
}

.admission__btn-inner {
    background: #ef6725;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 9px 20px;
    border: 1px solid #ef6725;
    border-radius: 5px;
    transition: all .5s ease;
}

.admission__btn-inner:hover {
    background: transparent;
    color: #ef6725;
}
/* Admission section css End */

/* Admission form css start */
.web-student-addmision-form-section {
    padding-top: 50px;
    padding-bottom: 40px;
}

.addmision-form-title-outer {
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Hind Siliguri', sans-serif;
}

.student-addimision-form div {
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 30px 20px;
}

.student-addimision-form div label {
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.student-addimision-form div input[type="text"],
.student-addimision-form div input[type="number"],
.student-addimision-form div input[type="email"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    padding-bottom: 9px;
}

.student-addimision-form div input[type="text"]:focus-visible,
.student-addimision-form div input[type="number"]:focus-visible,
.student-addimision-form div input[type="email"]:focus-visible {
    outline: none;
}

.semester-box select#semester {
    display: block !important;
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 9px;
}

.student-addimision-form .submit-btn {
    border: 1px solid #ef6625;
    -moz-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background: #ef6625;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
}

.student-addimision-form .submit-btn:hover {
    background: #fff;
    color: #000;
}
/* Admission form css end */

/* Find certificate page css start */
.student-certification-search-title {
    text-align: center;
    margin-bottom: 15px;
}

.student-certification-search-title .title {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    transition: all .3s ease;
}

.student-certification-search-title .title:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: #ee6724;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    transition: all .3s ease;
}

.student-certification-search {
    position: relative;
    margin-bottom: 30px;
}

.student-certification-search form input {
    width: 100%;
    height: 50px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    border-radius: 5px;
    color: #000;
    border: 1px solid #ee6724;
}

.student-certification-search .search-icon {
    position: absolute;
    top: 68%;
    right: 0;
    transform: translateY(-50%);
    background: #fff;
    padding: 5px 15px;
    margin-right: 1px;
    border: none;
}

.student-profile-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 30px;
}

.student-profile-info-outer {
    display: flex;
    align-items: center;
}

.student-certification-profile {
    margin-right: 25px;
}

.student-certification-profile img {
    width: 280px;
    height: 250px;
    border-radius: 100%;
}

.student-profile-info-title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}

.student-profile-info-title i {
    font-size: 16px;
    margin-right: 3px;
    color: #ee6724;
}

.student-profile-info-title span {
    font-size: 14px;
    font-weight: 400;
}

.student-varified-image-outer img {
    width: 270px;
}

.student-certification-image-inner {
    text-align: center;
}

.student-certification-download-btn {
    text-align: end;
    margin: 15px 0;
}

.student-certification-download-btn button {
    border: 1px solid #ee6724;
    -moz-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background: #ee6724;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
}

.student-certification-download-btn button:hover {
    background: #fff;
    color: #000;
}

/* Find certificate page css end */

/* Apply certificate page css start */
.avatar-upload {
    position: relative;
    max-width: 230px;
    margin: auto;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 0px;
    z-index: 1;
    top: 0;
}

.avatar-upload .avatar-edit input#imageUpload {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 12%);
    cursor: pointer;
    font-weight: normal;
    transition: all .2s ease-in-out;
}

.avatar-upload .avatar-preview {
    width: 230px;
    height: 210px;
    position: relative;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 10%);
    margin-bottom: 15px;
}

.avatar-upload .avatar-edit input+label i {
    font-size: 16px;
    margin-left: 10px;
}

.apply-certificate-form.form-group label {
    font-size: 20px;
    color: #000;
    font-family: 'Poppins';
    margin-bottom: 5px;
    font-weight: 500;
}

.apply-certificate-form input.form-control {
    border: 1px solid #ee6724;
    margin-bottom: 20px;
    height: 50px;
    padding: 0 10px;
}

.apply-certificate-form select.form-control {
    border: 1px solid #ee6724;
    margin-bottom: 20px;
    height: 50px;
    padding: 0 10px;
}

.payment-intruction-wrapper {
    margin: 20px 0;
}

.payment-intruction-title {
    font-size: 18px;
    color: #000;
}

.payment-instruction-outer p {
    margin-bottom: 0;
}

.section-transaction-id {
    text-align: center;
    margin-bottom: 20px;
}

.section-transaction-id-title {
    font-size: 16px;
    text-transform: capitalize;
}

.section-transaction-id input[type="text"] {
    width: 600px;
    height: 40px;
    border: 1px solid #ee6724;
    border-radius: 5px;
    padding: 0 10px;
}

.apply-certificate-form-btn-outer {
    text-align: center;
}

.apply-certificate-btn-inner {
    border: 1px solid #ee6724;
    -moz-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background: #ee6724;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
}

.apply-certificate-btn-inner:hover {
    background: #fff;
    color: #000;
}

.google-form-section{
    padding: 40px 0;
}

.google-form-outer{
    text-align: center;
}

.google-form-outer iframe {
    box-shadow: -3px -3px 7px #ffffff73, 0px 2px 20px rgb(94 104 121 / 34%);
    border-radius: 10px;
}
/* Apply certificate page css End */

/* apply student id css start */
.apply-id-section {
    padding: 40px 0;
}

.apply-id-form {
    box-shadow: -3px -3px 7px #ffffff73, 0px 2px 20px rgb(94 104 121 / 34%);
    border-radius: 10px;
    padding: 20px;
    background: #fff;
}
/* apply student id css End */

/* Invitation section css start */
.invitation-section {
    padding: 40px 0;
}

.invitation-form {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 10px;
}

.invitation-form-input-outer {
    margin-bottom: 15px;
}

.invitation-form-input-outer label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    color: #000;
}

.invitation-form-input-outer input, .invitation-form-input-outer select {
    height: 45px;
}

.invitation-form-input-outer input:focus, .invitation-form-input-outer select:focus {
    box-shadow: none;
    border: 1px solid #ef6725;
}

.invitation-btn {
    background: #ef6725;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 9px 20px;
    border: 1px solid #ef6725;
    border-radius: 5px;
    transition: all .5s ease;
    margin-top: 10px;
}
/* Invitation section css End */

/* get start page css start */
.exam-start-section {
    padding: 40px 0;
}

.exam-instruction-outer {
    box-shadow: rgb(50 50 93 / 25%) 0px 13px 27px -5px, rgb(0 0 0 / 30%) 0px 8px 16px -8px;
    padding: 20px;
    border-radius: 10px;
}

.exam-instruction-outer .instruction-title {
    color: #000;
    text-align: center;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    position: relative;
}

.exam-instruction-outer .instruction-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #ee6724;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.exam-instruction-outer h6 {
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.exam-instruction-outer h6 span {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.exam-start-btn-outer{
    text-align: center;
}

.exam-start-btn {
    border: 1px solid #ee6724;
    -moz-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background: #ee6724;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 7px;
    font-weight: 600;
    padding: 5px;
}

.exam-start-btn:hover {
    background: #fff;
    color: #000;
}
/* get start page css End */

/* Select couse page css start */
.exam-option-form {
    box-shadow: rgb(50 50 93 / 25%) 0px 13px 27px -5px, rgb(0 0 0 / 30%) 0px 8px 16px -8px;
    padding: 20px;
    border-radius: 10px;
}

.exam-option-form select,
.exam-option-form input {
    height: 45px;
    width: 100%;
    padding-left: 25px;
    font-size: 18px;
    outline: none;
    border: none;
    color: #000;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 25px;
    box-shadow: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff73;
    line-height: 40px;
}

.exam-option-form label {
    font-size: 16px;
    color: #000;
    margin-right: 10px;
    font-weight: 500;
    margin-bottom: 7px;
}

.exam-submit-btn-outer {
    text-align: center;
}

.exam-submit-btn-outer button {
    border: 1px solid #f16522;
    -moz-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background: #d90110;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    padding: 7px 15px;
}

.exam-submit-btn-outer button:hover {
    background: #fff;
    color: #000;
}
/* Select couse page css end */

/* blog details css start */
.blog-details-contant {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #404040;
}

.blog-details-section {
    padding: 40px 0;
}

.blog-details-image {
    margin-bottom: 20px;
}

.blog-details-image img {
    width: 100%;
}

.recent-blog-title {
    font-size: 15px;
    color: #000;
}

.recent-blog-title:hover {
    color: #fc9d01;
}

.recent-blog-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.recent-blog-title-inner .title {
    font-size: 18px;
}

.recent-blog-outer {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.recent-blog-image-inner {
    margin-right: 10px;
}

.recent-blog-image-inner .recent-blog-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}
/* blog details css end */

/*Service section css start*/
.service-section {
    padding: 60px 0;
}

.section-heading-outer {
    text-align: center;
}

.section-heading-outer .heading {
    color: #000;
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 5px;
    display: inline-block;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}

.section-heading-outer .heading:after {
    content: '';
    position: absolute;
    width: 80px;
    bottom: 0;
    background: #FC9D01;
    transition: all .5s ease;
    height: 4px;
    left: 50%;
    -moz-transform: translateX(-50%) skewX(-65deg);
    -webkit-transform: translateX(-50%) skewX(-65deg);
    -o-transform: translateX(-50%) skewX(-65deg);
    -ms-transform: translateX(-50%) skewX(-65deg);
    transform: translateX(-50%) skewX(-65deg);
}

.section-heading-outer .heading:hover::after {
    width: 100%;
    transition: all .5s ease;
}

.section-heading-outer .heading .separate-color {
    color: #f79a2c;
}

.service-items-wrapper {
    display: flex;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    align-items: stretch;
    border: 1px solid rgba(248, 250, 252, .08);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service-item-outer {
    width: calc(100%/3);
    padding: 25px;
    text-align: center;
}

.service-item-inner {
    transition: all .5s ease;
}

.service-item-outer:hover .service-item-inner {
    transform: scale(1.05);
}

.service-item-img {
    margin-bottom: 15px;
}

.service-item-img img {
    width: 100px;
    border-radius: 50%;
}

.service-item-title {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-item-des {
    font-size: 14px;
    color: rgb(148 163 184);
    line-height: 24px;
}

.service-item-outer:nth-child(6n+1) {
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-color: rgb(243 189 102 / 49%);
}

.service-item-outer:nth-child(6n+2) {
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-color: rgb(243 189 102 / 49%);
}

.service-item-outer:nth-child(6n+3) {
    border-bottom: 1px solid;
    border-color: rgb(243 189 102 / 49%);
}

.service-item-outer:nth-child(6n+4) {
    border-right: 1px solid;
    border-color: rgb(243 189 102 / 49%);
}

.service-item-outer:nth-child(6n+5) {
    border-right: 1px solid;
    border-color: rgb(243 189 102 / 49%);
}
/*Service section css End*/

/* Portfolio section css start */
.portfolio-register-section {
    padding: 40px 0;
}

.portfolio-register__form-wraper {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    border-radius: 5px;
}

.portfolio-register__form-top-outer {
    text-align: center;
}

.portfolio-register__form-top-title {
    font-size: 30px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.portfolio-register__form-top-subtitle {
    font-size: 30px;
    font-weight: 800;
    color: #ef6725;
    margin-bottom: 30px;
}

.portfolio-register__form-item-outer {
    margin-bottom: 15px;
}

.portfolio-register__form-item-outer label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 3px;
}

.portfolio-register__form-item-outer input,
.portfolio-register__form-item-outer select {
    background: #fff;
    border: 1px solid #ddd;
    height: 45px;
}

.portfolio-register__form-item-outer input:focus,
.portfolio-register__form-item-outer select:focus,
.portfolio-register__form-item-outer textarea:focus {
    box-shadow: none;
    border: 1px solid #ef6725;
}

.portfolio-register__form-item-outer.checkbox {
    display: flex;
    align-items: center;
}

.portfolio-register__form-item-outer.checkbox input {
    margin-right: 10px;
    width: 20px;
}

.portfolio-register__form-item-outer.checkbox label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.portfolio-register__form-btn-outer {
    text-align: center;
}

.portfolio-register__form-btn-inner {
    background: #ef6725;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 9px 20px;
    border: 1px solid #ef6725;
    border-radius: 5px;
    transition: all .5s ease;
}

.portfolio-register__form-btn-inner:hover {
    background: transparent;
    color: #ef6725;
}
/* Portfolio section css End */

/* Success student page css start */
.success-student-section{
    padding: 40px 0;
}

.success-student-note {
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

.success-student-note a {
    color: #f16522;
    font-weight: 700;
}

.group-link-outer {
    text-align: center;
    margin-bottom: 30px;
}

.group-link-outer a {
    color: #fff;
    display: inline-block;
    background-color: #f16522;
    padding: 10px 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 0 5px rgb(255 255 255 / 15%);
    box-shadow: 0 0 0 5px rgb(255 255 255 / 15%);
    font-size: 16px;
    font-weight: 600;
}

.image-grid-inner.gallery .item a {
    position: relative;
    display: block;
}

.image-grid-inner.gallery .item a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
    background: #0009;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
}

.image-grid-inner.gallery .item:hover a i {
    opacity: 1;
    visibility: visible;
}

/* Success student page css End */

/* Privacy page cssb start */
.terms-and-conditions-section{
    padding: 40px 0;
}

.terms-and-conditions-content {
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    padding: 20px;
    border-radius: 10px;
}

.terms-and-conditions-content .content-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}

.terms-and-conditions-content .content-title i {
    font-size: 16px;
    margin-right: 5px;
    color: #ef6725;
}

.terms-and-conditions-content .content-text {
    font-size: 16px;
    color: #000;
    line-height: 25px;
    margin-bottom: 20px;
    font-weight: 300;
}
/* Privacy page cssb end */

/* Opinion & objection page css start */
.opinion-objection-section {
    padding: 40px 0;
}

.opinion-objection-form-wrapper {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    border-radius: 5px;
}

.opinion-objection-form label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

.opinion-objection-form .input-group input {
    height: 45px;
    margin-bottom: 15px;
}

.opinion-objection-form .input-group input[type="redio"] {
    margin-bottom: 20px;
}

.opinion-objection-form textarea {
    margin-bottom: 20px;
}

.opinion_objection-btn-inner {
    border: 1px solid #ee6624;
    -moz-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background: #ee6624;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
}

.opinion_objection-btn-outer {
    text-align: center;
}

.opinion_objection-btn-inner:hover {
    background: #fff;
    color: #000;
}
/* Opinion & objection page css end */