/*-----------------------------------------------------------------------------------
CSS INDEX
-----------------------------------------------------------------------------------*/


/* All Plugin CSS */

@import url('bootstrap.min.css');
@import url('bootstrap-icons.min.css');
@import url('slick.css');
@import url('aos.css');

/* All Plugin CSS */


/* Color Variables Declarations */


/* **********************************
Reset CSS
************************************** */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
}
@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Regular.woff2') format('woff2'),
         url('fonts/OpenSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}


ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/********************************
 Typography Style
******************************** */

body {
    margin: 0;
    font-family: sans-serif;
    /* font-family: "Noto Sans", sans-serif; */
    line-height: 1.5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

html {
    min-height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 16px;
}

a {
    text-decoration: none;
    font-size: 16px;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
}

button {
    border: none;
    background: transparent;
}

b,
strong {
    font-weight: bolder;
}


/***************************
loader
*****************************/

.loaders {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(243, 246, 252, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.loader {
    border: 10px solid #E5E5E5;
    border-radius: 50%;
    border-top: 10px solid #009dff;
    border-bottom: 10px solid #009dff;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.scrolltotop {
    color: #fff;
    background-color: rgba(54, 54, 54, 1);
    padding: 8px;
    position: fixed;
    line-height: 1;
    right: 15px;
    bottom: 10px;
    text-decoration: none;
    display: none;
    font-size: 24px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 999;
}

.scrolltotop:hover {
    color: #fff;
    background-color: #000;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.main-contents {
    overflow: hidden;
}


/***************************************
.header-area
*************************************/

.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 999;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-area.shadows {
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0px 4px 15px rgb(0 0 0 / 8%);
    box-shadow: 0px 4px 15px rgb(0 0 0 / 8%);
}

.homeheader {
    background: transparent;
}

.navbar-brand {
    padding-top: 5px;
    margin-top: 0;
    padding-bottom: 6px;
    margin-right: 0;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-toggler-icon {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    color: #fff;
    line-height: 1;
}

.navbar-brand img {
    max-height: 50px;
}

.me-auto {
    margin-right: 0 !important;
    margin-left: auto;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: 15px;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #26292c;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #F66962;
}

.nav-link {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #26292c;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

.navbar {
    padding: 0;
}

.margintop {
    margin-top: 81px;
}
ul.navbar-nav.me-auto.mb-2.mb-lg-0 li {
    padding: 0px 8px;
}


/* ***********************
Home slider
 ****************************/

.home-slide {
    position: relative;
    background-image: url('../img/bg3.png');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    min-height: 800px
}

.section-header.section-head-one .sub-title {
    color: #777;
    font-size: 18px;
    font-weight: 400;
    max-width: 760px
}

.section-header.section-head-one h2 {
    color: #0b0b0b
}

.home-slide-text {
    line-height: 36px
}

.home-slide-text h5 {
    color: #685f78;
    font-size: 20px;
    margin-bottom: 25px
}

.home-slide-text h1 {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 500px
}

.home-slide-text p {
    font-weight: 500;
    font-size: 18px;
    color: #685f78;
    margin-bottom: 10px;
    line-height: 1.5
}

.home-slide-text h1 span {
    color: #6255a4
}

.slogan {
    background: #009dff;
    background: -o-linear-gradient(left, #009dff, #72d3fd);
    background: -webkit-gradient(linear, left top, right top, from(#009dff), to(#72d3fd));
    background: linear-gradient(90deg, #009dff, #72d3fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: #296D7E;
}

.trust-user p {
    font-size: 20px;
    color: #685f78;
    font-weight: 500;
    margin: 20px 0 10px
}

.home-slide-face .trust-user p {
    margin: 0
}

.online-course {
    border-radius: 20px;
    padding: 25px;
    position: relative;
    background: #fff
}

.course-radius {
    border-radius: 20px;
    width: 100%;
    border: 1px solid #e9ecef
}

.blur-border.course-radius {
    padding: 1px;
    border-radius: 20px
}

.course-full-width {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: 0;
    -webkit-transition: top .5s ease;
    -o-transition: top .5s ease;
    transition: top .5s ease
}

.course-full-width:hover {
    top: -10px;
    -webkit-transition: top .5s ease;
    -o-transition: top .5s ease;
    transition: top .5s ease
}

.online-course h4 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600
}

.course-inner-content {
    display: block;
    padding-left: 18px
}

.course-inner-content h4 {
    margin-bottom: 8px;
    font-weight: 700;
    color: #000
}

.course-inner-content p {
    color: #296D7E;
    font-size: 16px;
    margin-bottom: 0
}

.student-course {
    position: relative;
    margin-top: -60px
}

.how-it-works {
    padding: 80px 0
}

.feature-box,
.how-it-works {
    background: #fff;
    position: relative
}

.feature-box {
    z-index: 9;
    width: 100%;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
    -webkit-box-shadow: -11.729px -11.729px 32px hsla(0, 0%, 100%, .15);
    box-shadow: -11.729px -11.729px 32px hsla(0, 0%, 100%, .15);
    border-radius: 10px
}

.feature-bg {
    padding: 25px;
    width: 100%;
    border-radius: 10px
}

.feature-bg,
.feature-bg:hover {
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -webkit-transition: all .5s ease
}

.feature-bg:hover {
    border: 1px dashed #296D7E;
}

.feature-bg:hover .feature-text,
.feature-bg:hover p {
    color: #296D7E
}

.feature-bg p,
.feature-bg:hover .feature-text,
.feature-bg:hover p {
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -webkit-transition: all .5s ease
}

.feature-bg p {
    color: #685f78;
    font-size: 14px
}

.feature-header {
    margin-bottom: 10px
}

.feature-icon {
    font-size: 30px;
    width: 105px;
    border-radius: 100px;
    height: 105px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    color: #fff;
    margin: 0 auto
}

.mentoring-course .owl-stage {
    padding-top: 55px
}

.feature-heading {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700
}

.feature-text {
    font-size: 18px;
    font-weight: 700;
    padding-top: 25px;
    color: #296D7E;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -webkit-transition: all .5s ease
}

.feature-bg p {
    margin-bottom: 0
}

.mentoring-course {
    margin-top: 40px
}

.section-header {
    margin-bottom: 18px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.section-sub-head h2 {
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 700;
    color: #296D7E;
    letter-spacing: .9px
}

.section-sub-head span {
    color: #f66962;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 18px;
    display: block;
    letter-spacing: .9px
}

.section-text {
    max-width: 700px;
    color: #685f78;
    font-size: 16px;
    font-weight: 500
}

.blogs-slide {
    margin-top: 57px
}

.slick-slide {
    margin: 0 12px;
}

.slick-list {
    margin: 0 -12px;
}

.slick-dots {
    text-align: center;
    margin-top: 15px;
}

.slick-dots li button {
    display: none;
}

.slick-dots li {
    display: inline-block;
    margin: 5px;
    height: 10px;
    width: 10px;
    background: #296D7E;
    border-radius: 50%;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -webkit-transition: all .5s ease
}

.slick-dots li.slick-active {
    background: #296D7E;
    width: 28px;
    border-radius: 3px;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -webkit-transition: all .5s ease
}

.how-it-works,
.new-course,
.trend-course {
    padding: 60px 0
}

.new-course {
    padding: 80px 0 56px;
    background-image: url('../img/bg3.png');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    position: relative
}
.training-course{
    padding: 80px 0 56px;
}

.new-course:before {
    content: "";
    position: absolute;
    background-image: url('../img/course-bg.b4783a72.png');
    width: 100%;
    height: 100%;
    top: 0;
    background-repeat: no-repeat
}

.course-feature {
    margin-top: 57px
}

.product .rating i {
    font-size: 13px
}

.course-box {
    margin-bottom: 25px;
    border-radius: 10px
}

.product {
    border-radius: 10px;
    position: relative;
    padding: 20px;
    background: #fff;
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px)
}

.product,
.product:hover {
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -webkit-transition: all .3s ease
}

.product:hover {
    background: #296D7E;
    color: #fff
}

.product:hover .btn-primary,
.product:hover .course-info p,
.product:hover .course-name h4 a,
.product:hover .course-name p,
.product:hover .course-share i,
.product:hover .product-content h3 a {
    color: #fff;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -webkit-transition: all .3s ease
}

.product:hover .course-name h4 a:hover,
.product:hover .product-content h3 a:hover {
    color: #006
}

.product:hover .course-view img,
.product:hover .rating-img img {
    -webkit-filter: invert(1) brightness(100);
    filter: invert(1) brightness(100);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -webkit-transition: all .3s ease
}

.product:hover .all-category .btn-primary {
    background-color: #fff;
    border-color: #296D7E;
    color: #296D7E
}

.all-btn {
    text-align: center
}

.all-category .btn-primary {
    color: #296D7E;
    border: 3px solid #296D7E;
    -webkit-backdrop-filter: blur(151.39px);
    backdrop-filter: blur(151.39px);
    background: transparent;
    border-radius: 46.9159px;
    min-width: 150px;
    padding: 10px 15px;
    font-weight: 500
}


.all-category .btn-primary:hover {
    color: #fff;
    background-color: #296D7E
}

.price {
    right: 12px;
    padding: 5px
}

.price,
.price.combo {
    background: #fff;
    position: absolute;
    bottom: 6px;
    border-radius: 10px
}

.price.combo {
    right: 20px;
    min-width: 149px;
    padding: 14px 15px;
    min-width: 80px;
    padding: 12px
}

.price.combo h3 {
    color: #159f46;
    font-weight: 700;
    font-size: 24px
}

.price h3 span {
    text-decoration: line-through;
    font-size: 14px;
    color: #777
}

.price h3 {
    font-size: 18px;
    color: #f66962;
    font-weight: 700;
    margin-bottom: 0
}

.product-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 10px 10px 10px 10px
}

.product-img img {
    width: 100%;
    border-radius: 4px 4px 0 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 2s cubic-bezier(.19, 1, .22, 1) 0ms;
    -o-transition: all 2s cubic-bezier(.19, 1, .22, 1) 0ms;
    transition: all 2s cubic-bezier(.19, 1, .22, 1) 0ms
}

.product-img:hover img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15)
}

.product-content {
    padding-top: 18px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.product-content h3 {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    line-height: 1.3;
    -ms-flex-preferred-size: 40px;
    flex-basis: 40px;
    margin-bottom: 15px;
}

.membershipcard .product-content .title {
    font-size: 26px
}

.product-content h3 a:hover {
    color: #f66962
}

.product-content .instructor-text {
    max-width: 320px;
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px
}

.product .rating {
    margin-left: auto;
    margin-bottom: 15px;
    width: auto
}

.product .card-footer {
    background-color: transparent
}

.course-info {
    margin: 16px 0 0
}

.course-info .course-view img,
.course-info .rating-img img {
    width: 18px
}

.course-info p {
    margin-bottom: 0;
    color: #685f78;
    font-size: 16px;
    margin-left: 12px
}

.course-view {
    margin-left: auto
}

.course-group {
    margin-bottom: 17px
}

.course-group-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.course-group-img img {
    max-width: 50px;
    height: 50px;
    border-radius: 25px;
    margin-right: 10px
}

.course-share {
    margin-left: auto
}

.color-active {
    color: red;
    font-weight: 700
}

.course-share i {
    color: #ff5364;
    font-size: 20px
}

.course-share a:hover i {
    font-weight: 700
}

.course-name h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600
}

.course-name p {
    margin-bottom: 0;
    font-size: 14px;
    color: #685f78
}

.average-rating span {
    color: #ffb54a
}

.master-skill {
    padding: 80px 0 0
}

.blur-border {
    padding: 3px;
    border-radius: 10px
}

.rotate-box {
    position: relative;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg)
}

.certified-group {
    border-radius: 20px;
    margin-bottom: 24px;
    position: relative;
    top: 0;
    -webkit-transition: top .5s ease;
    -o-transition: top .5s ease;
    transition: top .5s ease;
    width: 100%;
    border: 1px solid #e9ecef
}

.certified-group:hover {
    top: -10px
}

.certified-img {
    background: #fff;
    border-radius: 10px;
    width: 72px;
    height: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.get-certified {
    background: #fff;
    padding: 20px;
    border-radius: 20px
}

.get-certified p {
    margin-bottom: 0;
    color: #685f78;
    font-size: 14px;
    margin-left: 24px;
    font-weight: 500
}

.career-group {
    margin: 60px 0
}

.course-name h4 a,
.product-content h3 a {
    color: #000;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 1rem 1.5rem
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.5rem;
}

.style_othersProductWhenActive__QFDbV {
    border-radius: 10px;
    position: relative;
    padding: 20px;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    background: #fff;
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    height: 100%;
}

.card {
    border: 1px solid #e9ecef;
    margin-bottom: 1.875rem;
}

.master-skill {
    padding: 80px 0 0
}

.trend-course {
    background-image: url(../img/bg-banner.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover
}

.recommend-course,
.trend-course {
    padding: 80px 0
}

.trending-course {
    position: relative;
    margin-top: 57px
}

.trend-box {
    background: transparent;
    border: 1px solid #e9ecef;
    padding: 0
}

.trend-product {
    background: #fff
}

.lead-companies {
    padding: 0 0 56px
}

.lead-companies .owl-carousel .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center
}

.feature-head {
    margin: auto;
}

.lead-group {
    padding: 30px 0 24px
}

.itemd {
    text-align: center;
}

.itemd img {
    text-align: center;
    margin: 0 auto;
}

.user-love {
    padding: 80px 0;
    background-image: url(../img/testimonial4.jpg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    min-height: 500px;
}

.white-header h2,
.white-header span {
    color: #fff;
}

.feature-head h2 {
    margin-bottom: 25px;
}

.become-instructors {
    padding: 377px 0 100px
}

.student-mentor {
    background: #ffdeda;
    padding: 30px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    color: #296D7E;
    position: relative
}

.student-mentor h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px
}

.top-instructors p {
    font-size: 18px;
    margin-bottom: 0
}

.yellow-mentor {
    background: #ffe88f
}

.intern .card .card-footer {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: #ffdeda
}

.intern .card .industrial-footer {
    background: #ffe88f
}

.testimonial-four {
    background: #fff;
    position: relative
}

.review {
    position: absolute;
    width: 100%;
    bottom: -340px
}

.mentor-testimonial {
    z-index: 9
}

.testimonial-four .slick-list {
    border: 14px solid #ededed;
    max-width: 70%;
    margin: auto;
    border-radius: 45px;
    background: -o-linear-gradient(307.87deg, hsla(0, 0%, 100%, .28) 1.8%, hsla(0, 0%, 100%, .31) 99.75%);
    background: linear-gradient(142.13deg, hsla(0, 0%, 100%, .28) 1.8%, hsla(0, 0%, 100%, .31) 99.75%);
    -webkit-backdrop-filter: blur(151.39px);
    backdrop-filter: blur(151.39px)
}

.testimonial-four .testimonial-two-head {
    max-width: 90%;
    border: 0;
    background: none
}

.testimonial-bg-left img {
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    position: absolute;
    top: 50%;
    left: 174px
}

.testimonial-bg-left,
.testimonial-bg-right,
.testimonial-bg-top {
    position: relative
}

.testimonial-bg-right img {
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    position: absolute;
    top: 50%;
    right: -125px
}

.testimonial-bg-top img {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50px;
    left: 38%
}

.testimonial-four .h-four {
    padding-bottom: 140px
}

.testimonial-four .slick-slide img {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1)
}

.fount-about-img img {
    margin: auto;
    border-radius: 50px;
    width: 80px
}

.fount-about-img span {
    color: #6e6c83;
    font-size: 18px;
    font-weight: 300
}

.fount-about-img h3 {
    font-size: 24px;
    color: #201f2e;
    margin: 17px 0 10px
}

.testimonial-four .testimonial-two-head p {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    line-height: 1.6;
    font-style: italic;
    margin: 37px 0 43px
}

.testi-quotes {
    position: relative
}

.testi-quotes img {
    position: absolute;
    left: 205px;
    z-index: 99;
    top: -31px
}

.testimonial-four .slick-next,
.testimonial-four .slick-prev {
    top: 62%
}

.testimonial-four .slick-prev {
    left: 20%;
    z-index: 99;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 0
}

.testimonial-four .slick-next {
    right: 22%;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 0
}

.testimonial-four .slick-next:hover,
.testimonial-four .slick-prev:hover,
.testimonial-four .swiper-button-next:hover,
.testimonial-four .swiper-button-prev:hover {
    color: #fff;
    background: #f66962;
    opacity: 1
}

.testimonial-four .slick-next:focus:before,
.testimonial-four .slick-next:hover:before,
.testimonial-four .slick-prev:focus:before,
.testimonial-four .slick-prev:hover:before,
.testimonial-four .swiper-button-next:hover:before,
.testimonial-four .swiper-button-prev:hover:before {
    color: #fff;
    opacity: 1
}

.testimonial-four .slick-next:focus,
.testimonial-four .slick-prev:focus {
    background: #f66962
}

.testimonial-four .slick-prev:before {
    content: "←";
    color: #296D7E;
    font-weight: 600
}

[dir=rtl] .testimonial-four .slick-prev:before {
    content: "→"
}

.testimonial-four .slick-next:before {
    content: "→";
    color: #296D7E;
    font-weight: 600
}

[dir=rtl] .testimonial-four .slick-next:before {
    content: "←"
}

.testimonial-all {
    padding: 40px
}

.testi-right,
.testimonial-all {
    position: relative
}

.testi-right img {
    position: absolute;
    right: -50px;
    top: 0
}

.four-testimonial-founder h3 {
    margin: 17px 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #201f2e
}

.four-testimonial-founder span {
    font-size: 18px;
    color: #685f78
}

.mentor-img img {
    position: absolute;
    bottom: 0;
    right: 0
}

.testimonial-social-icon i {
    scale: 1.5;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

.testimonial-social-icon i:hover {
    scale: 2.3
}

.latest-blog {
    padding: 80px 0 63px;
    background-image: url(../img/bg3.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover
}

.blogs-slide {
    margin-top: 57px
}

.blogs-slide .blog-widget {
    border: 1px solid #e9ecef;
    margin-bottom: 24px;
    padding: 0
}

.blog-widget .instructors-img {
    padding: 0
}

.blog-grid-box {
    background: #fff;
    padding: 15px;
    margin: -20px 10px 0;
    position: relative;
    border-radius: 5px
}

.blog-grid-box .post-left ul li,
.grid-modern .post-left ul li {
    padding: 0 5px
}

.blog-grid-box .post-left ul li:first-child,
.grid-modern .post-left ul li:first-child {
    padding-left: 0
}

.grid-blog .blog-image {
    margin-bottom: 0
}

.grid-blog {
    margin-bottom: 20px
}

.grid-modern .blog-image {
    border-radius: 10px 10px 0 0;
    margin-bottom: 25px
}

.blog-modern-box {
    position: absolute;
    bottom: 0;
    padding: 20px
}

.blog-modern-box .blog-title a {
    font-size: 20px;
    color: #fff
}

.blog-modern-box .blog-title a:hover {
    color: #ff5364
}

.blog-modern-box .post-left ul li {
    color: #fff;
    font-size: 12px
}

.blog-image {
    margin-bottom: 20px;
    border-radius: 5px 5px 0 0;
}

.blog-image img {
    border-radius: 5px 5px 0 0;
}

.enroll-group {
    background: -o-linear-gradient(left, rgba(161, 196, 253, .79), rgba(194, 233, 251, .36));
    background: -webkit-gradient(linear, left top, right top, from(rgba(161, 196, 253, .79)), to(rgba(194, 233, 251, .36)));
    background: linear-gradient(90deg, rgba(161, 196, 253, .79), rgba(194, 233, 251, .36));
    border: 1px solid hsla(6, 100%, 93%, .38);
    border-radius: 20px;
    padding: 30px;
    margin: 80px 0
}

.enroll-img {
    background: #fff;
    border-radius: 10px;
    padding: 10px
}

.course-count {
    margin-left: 25px;
    color: #000
}

.course-count p {
    margin-bottom: 0;
    font-size: 18px
}

.course-count h3 {
    font-weight: 700;
    font-size: 36px;
}

.icon-group {
    padding-top: 17px
}

.enroll-group .total-course {
    margin-bottom: 0
}

.icon-group .total-course {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    top: 0;
    -webkit-transition: top .5s ease;
    -o-transition: top .5s ease;
    transition: top .5s ease;
    cursor: pointer
}

.icon-group .total-course:hover {
    top: -10px
}

.total-course {
    margin-bottom: 24px
}

.post-left ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.post-left ul li {
    padding: 0 20px;
    border-left: 1px solid #c4c4c4;
    color: #000;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 6px;
}

.post-left ul li:first-child {
    border: 0;
    padding-left: 0
}

.post-left ul li img {
    margin-right: 9px
}

.post-author a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.latest-posts {
    margin: 0;
    padding: 0
}

.latest-posts li {
    display: table;
    width: 100%;
    margin-bottom: 20px
}

.latest-posts li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none
}

.post-thumb {
    border-radius: 4px;
    width: 80px;
    float: left;
    overflow: hidden
}

.post-thumb a img {
    border-radius: 4px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 2s cubic-bezier(.19, 1, .22, 1) 0ms;
    -o-transition: all 2s cubic-bezier(.19, 1, .22, 1) 0ms;
    transition: all 2s cubic-bezier(.19, 1, .22, 1) 0ms
}

.post-thumb a:hover img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15)
}

.blog-widget .post-info {
    margin-left: 95px
}

.blog-widget .post-info h4 {
    font-size: 14px;
    margin: 0 0 5px;
    font-weight: 600
}

.blog-widget .post-info h4 a {
    color: #22100d
}

.blog-widget .post-info h4 a:hover {
    color: #f66962
}

.blog-widget .post-info p {
    color: #000;
    font-size: 12px;
    margin: 0
}

.category-widget .categories {
    list-style: none;
    margin: 0;
    padding: 0
}

.category-widget .categories li {
    margin-bottom: 20px
}

.category-widget .categories li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.category-widget .categories li a {
    color: #22100d;
    font-size: 14px;
    font-weight: 500
}

.category-widget .categories li a:hover {
    color: #f66962
}

.category-widget .categories>li>a>i {
    color: #f66962;
    font-size: 18px;
    margin-right: 19px
}

.tags-widget .card-body {
    padding-bottom: 1rem
}

.tags {
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0
}

.tags li {
    float: left
}

.tag {
    background-color: #ffdeda;
    border-radius: 5px;
    color: #22100d;
    padding: 5px 10px;
    position: relative;
    margin: 0 15px 15px 0;
    font-size: 14px;
    border: 1px solid #ffdeda;
    display: inline-block;
    font-weight: 500
}

.tag:hover {
    background-color: #f5cbc5;
    border-color: #f5cbc5;
    color: #22100d
}

.blog {
    border-radius: 5px;
    position: relative;
    margin-bottom: 25px
}

.section-blogs .blog {
    border: 1px solid #f0f0f0;
    -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, .1);
    box-shadow: 0 0 13px rgba(0, 0, 0, .1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap
}

.blog-image {
    overflow: hidden
}

.blog-image,
.blog-image img,
.blog-image>.background {
    display: block;
    position: relative;
    width: 100%;
    height: auto
}

.blog-image img {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 2s cubic-bezier(.19, 1, .22, 1) 0ms;
    -o-transition: all 2s cubic-bezier(.19, 1, .22, 1) 0ms;
    transition: all 2s cubic-bezier(.19, 1, .22, 1) 0ms
}

.blog-image .background:hover img {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15)
}

.blog-image {
    margin-bottom: 20px;
    border-radius: 5px 5px 0 0
}

.blog-content {
    position: relative
}

.blog-title {
    font-size: 24px;
    margin: 0 0 20px;
    font-weight: 600;
    line-height: 1.3
}

.blog-title a {
    color: #296d7e;
    font-size: 19px;
    margin: 0 0 20px;
    font-weight: 600;
    line-height: 1.3
}

.blog-title a:hover {
    color: #f66962
}

.blog-content p {
    margin: 0 0 5px;
    font-size: 16px;
    color: #685f78;
    font-weight: 400;
    margin-bottom: 10px;
}

.blog-content h4 {
    font-size: 16px;
    color: #000;
    font-weight: 600
}

.post-author img {
    border-radius: 100%;
    width: 30px;
    margin-right: 5px
}

.read-more {
    display: inline-block;
    font-size: 16px;
    padding: 0;
    color: #1e88e5;
    text-decoration: underline;
    font-weight: 700
}

.blog-info {
    color: #26292c;
    font-size: 14px;
    margin-bottom: 20px
}

.blog-info a {
    color: #000;
    font-size: 14px;
    font-weight: 400
}

.blog-info a:hover {
    color: #f66962
}

.entry-meta {
    color: #26292c;
    font-size: 14px;
    list-style: none;
    margin-bottom: 15px;
    padding: 0
}

.entry-meta li {
    display: inline-block;
    margin-right: 15px
}

.entry-meta li:last-child {
    margin-right: 0
}

.blog-pagination .pagination {
    margin-bottom: 30px
}

.blog-pagination .pagination li a {
    padding: 12px 20px;
    font-weight: 600;
    color: #26292c;
    margin-right: 10px;
    border-radius: inherit!important;
    border-color: #f0f0f0
}

.blog-pagination .pagination li.disabled a {
    border-color: #f0f0f0
}

.blog-pagination .pagination li.active a {
    background: #1e88e5;
    border-color: transparent;
    color: #fff
}

.btn-primary {
    color: #296D7E;
    border: 3px solid #296D7E;
    -webkit-backdrop-filter: blur(151.39px);
    backdrop-filter: blur(151.39px);
    background: transparent;
    border-radius: 46.9159px;
    min-width: 150px;
    padding: 10px 15px;
    font-weight: 500;
}

.btn-primary.active:not(:disabled):not(.disabled),
.btn-primary:active:not(:disabled):not(.disabled),
.show>.btn-primary.dropdown-toggle {
    background-color: #fc7f50;
    border-color: #fc7f50;
    color: #fff;
}

.footer {
    background-color: #fff;
    position: relative
}

.footer-top {
    padding-top: 60px;
    position: relative;
    z-index: 9;
    font-size: 14px
}

.footer-top .footer-about-content {
    max-width: 315px;
    text-align: justify
}

.footer-bottom {
    position: relative;
    z-index: 9
}

.footer-title {
    color: #296D7E;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 26px;
    text-transform: capitalize;
}

.footer-widget.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    outline: none
}

.footer-widget .footer-logo {
    margin-bottom: 15px
}

.footer-widget .footer-logo img {
    width: 160px;
    max-width: 100%
}

.footer-widget .footer-about-content p {
    color: #000
}

.footer-widget .footer-about-content p:last-child {
    margin-bottom: 0
}

.footer-menu ul li {
    margin-bottom: 20px;
    position: relative
}

.footer-menu ul li:last-child {
    margin-bottom: 0
}

.footer-menu ul li a {
    color: #000;
    -webkit-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s
}

.footer-menu ul li a i {
    margin-right: 5px
}

.footer-widget.footer-menu ul li a:hover {
    color: #f66962
}

.footer-contact-info {
    color: #26292c;
    margin-top: 20px
}

.footer-contact-info img {
    margin-right: 12px
}

.footer-contact-info .footer-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
}

.footer-contact-info .footer-address span {
    margin-right: 20px
}

.footer-contact-info .footer-address {
    margin-bottom: 20px
}

.footer-contact-info .footer-address p {
    margin-bottom: 0
}

.footer-contact-info p {
    color: #000
}

.footer-contact-info p i {
    margin-right: 15px
}

.footer-social-link {
    font-size: 24px
}

@media (max-width:768px) {
    .footer-top .footer-about-content {
        max-width: 100%;
        text-align: left
    }
    .footer-about {
        text-align: left;
    }
    .footer-social-icon {
        padding-bottom: 1rem
    }
    .footer-widget {
        margin-bottom: 25px;
        text-align: left;
    }
    .footer-menu ul li {
        margin-bottom: 10px;
        position: relative;
    }
    .footer-contact-info .justify-content-center {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: start !important;
    }
    .footer-bottom .copyright-text p {
        color: #000;
        text-align: left !important;
    }
}

.facebook-icon-color {
    color: #3b5998
}

.linkedin-icon-color {
    color: #0a66c2
}

.youtube-icon-color {
    color: red
}

.footer-bottom .copyright {
    padding: 40px 0
}

.footer-bottom {
    font-size: 14px
}

.footer-bottom .copyright-text p {
    color: #000;
    text-align: right
}

.footer-bottom .copyright-text p a:hover {
    color: #f66962
}

.privacy-policy ul {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0
}

.privacy-policy ul li {
    padding: 0 10px;
    border-right: 1px solid #b2b1fc;
    list-style: none
}

.privacy-policy ul li a {
    color: #000
}

.privacy-policy ul li a:hover {
    color: #f66962
}

.privacy-policy ul li:last-child {
    border-right: 0
}

.privacy-policy ul li:first-child {
    padding-left: 0
}

.news-letter .form-control {
    border: 0;
    padding: 0
}

.news-letter form {
    border-bottom: 1px solid #e9ecef
}

.footer-contact-info .footer-address p {
    margin-bottom: 0;
}

.footer-contact-info p a {
    color: #000;
}

.footer-contact-info p a:hover {
    color: #f66962;
}

.page-banner {
    padding: 88px 0;
    text-align: center;
    background: #296d7e
}

.page-banner h1 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff
}

.page-banner p {
    color: #fff;
    margin-bottom: 0
}

.sup-title {
    margin-bottom: 30px
}

.blue-side {
    background: transparent;
    border: 2px solid #296d7e;
    border-left-width: 10px
}

.membershipcard {
    -webkit-box-shadow: 0 0 3px 3px rgba(0, 0, 0, .1);
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, .1);
    border-radius: 10px;
    position: relative;
    padding: 20px;
    margin-top: 2rem;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    background: #fff;
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px)
}

.membershipcard:hover {
    background: #1565c0;
    color: #fff
}

.membershipcard:hover a {
    color: #fff
}

.membership-img {
    overflow: hidden;
    height: 220px;
}

.membership-img,
.membership-img img {
    width: 100%;
    border-radius: 10px!important
}

.membership-img img {
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 2s cubic-bezier(.19, 1, .22, 1) 0ms;
    -o-transition: all 2s cubic-bezier(.19, 1, .22, 1) 0ms;
    transition: all 2s cubic-bezier(.19, 1, .22, 1) 0ms;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    width: 100%;
}

.membership-img:hover img {
    border-radius: 10px!important;
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15)
}

.membershipcard .product-content .title a {
    font-size: 26px;
}

.membership-img a {
    display: block;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.training-category {
    position: relative;
    background-image: url(../img/bg3.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover
}

.categorycard-title {
    font-size: 1rem;
    font-weight: 700;
    color: #296D7E;
}

.subtitle {
    font-size: 36px;
    color: #296D7E;
    font-weight: 500;
}

.courses h1 {
    font-size: 24px
}

.instructor-info-blk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.instructor-info-blk .instructor-info-img {
    display: block;
    max-width: 100px;
    height: 100px;
    border-radius: 10px;
    border: 5px solid #fff;
    margin-right: 8px
}

.instructor-info-blk .instructor-info-content {
    text-align: left
}

.instructor-info-blk h4 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0
}

.instructor-info-blk h4 a {
    color: #fff
}

.instructor-info-blk h4 span {
    background: #fff;
    color: #000;
    font-weight: 400;
    padding: 2px 10px;
    font-size: 14px;
    border-radius: 5px;
    margin-left: 8px
}

.instructor-info-blk p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin: 0
}

.instructor-overview-list {
    background: rgba(10, 20, 47, .33);
    border-radius: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    word-wrap: break-word;
    padding: 10px
}

.instructor-overview-list .list-grp-blk:not(:last-child) {
    margin-right: 23px
}

.instructor-overview-list .list-content-blk h5 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px
}

.instructor-overview-list .list-content-blk p {
    margin: 0;
    word-wrap: break-word
}

.instructor-bg-blk .btm-para-blk {
    margin-top: 23px
}

.custom-card {
    border: 4px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)), -webkit-gradient(linear, left top, right top, from(#e3e3e3), to(#ffdeda));
    background-image: -o-linear-gradient(#fff, #fff), -o-linear-gradient(left, #e3e3e3, #ffdeda);
    background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #e3e3e3, #ffdeda);
    border-radius: 10px
}

.custom-card-header {
    padding: 23px;
    border-bottom: 1px solid hsla(0, 0%, 78%, .23)
}

.custom-card-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #296D7E;
    margin: 0
}

.custom-card-header .custom-btn-blk a {
    background: #296D7E;
    border: 1px solid #296D7E;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    padding: 13px 28px
}

.courses-grp .course-design {
    background: #fff;
    border: 1px solid hsla(0, 0%, 78%, .25)
}

.courses-grp .list-course .product-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 205px;
    flex: 0 0 205px;
    margin-right: 24px;
    width: 205px;
    position: relative
}

.form-check-input:checked {
    background-color: #ff5364;
    border-color: #ff5364
}

.form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #ff5364
}

.form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")!important
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ff5364'/%3e%3c/svg%3e")
}

.check-on .form-check-input {
    min-height: 30px;
    width: 70px;
    margin: 0;
    cursor: pointer
}

.check-on {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 10px 0 30px
}

.style_customFormCheckInput__TKCwq {
    border-radius: 0 !important;
    border: 2px solid #685f78;
}

.style_customFormCheckLabel__OHT85:hover {
    color: #f66962;
}

.style_customFormCheckLabel__OHT85 {
    color: #685f78;
    line-height: 29px;
}

.title-sec {
    margin-bottom: 30px
}

.title-sec h5 {
    font-size: 18px;
    color: #f66962
}

.title-sec h2,
.title-sec h5 {
    font-weight: 700;
    margin-bottom: 18px
}

.title-sec h2 {
    font-size: 36px;
    color: #0b0b0b
}

.title-sec p {
    font-weight: 500;
    color: #685f78;
    padding-bottom: 10px
}

.course-content {
    background: #fafafa;
    padding: 80px 0px;
}

.content-border {
    border-top: 1px solid #eee
}

.content-border,
.content-border-bottom {
    border-bottom: 1px solid #eee
}

.content-border-top {
    border-top: 1px solid #eee
}

.breadcrumb-container {
    padding-top: 16px;
    border-radius: 8px
}

.breadcrumb-item {
    padding-right: 0!important
}

.breadcrumb-item a {
    color: #20aaf3;
    font-weight: 700;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear
}

.breadcrumb .active a,
.breadcrumb-item a:hover {
    color: #f66962
}

.video-thumbnail {
    position: relative
}

.video-thumbnail .course-background-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem
}

.course-background-info .course-title {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 15px;
    color: #296D7E;
}

.video-thumbnail .course-certificates {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.course-certificates .certificates-icon {
    font-size: 30px;
    color: #f66962
}

.text-primary {
    color: #f66962!important
}

.course-certificates span {
    height: 30px;
    line-height: 30px;
    font-weight: 700;
    position: relative;
    color: #f66962;
    overflow: hidden;
    border-radius: 8px 8px
}

.course-button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .75rem;
    padding: 1rem 0
}

.course-button-container .btn-label-sm {
    font-size: 11px;
    color: red;
    font-weight: 500;
    font-style: italic;
    margin-top: 5px
}

.course-blue-button {
    border: none;
    outline: none;
    border-radius: .5rem;
    background: #296D7E;
    padding: 8px 16px;
    color: #fff
}

.course-blue-button:hover {
    background: #f66962;
    color: #fff
}

.course-details-devider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.course-details {
    padding: 2rem 0
}

.course-details-devider .course-description {
    text-align: justify
}

.price-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bolder
}

.special-course-price {
    color: #f66962;
    text-align: center;
    font-size: 2rem;
    line-height: 1.3;
    position: relative;
    font-family: Noto Sans Bengali, sans-serif
}

.price-container .regular-course-price {
    text-decoration: line-through;
    color: rgba(0, 0, 0, .7);
    font-size: 1rem;
    margin-top: 2rem;
    font-family: Verdana, SolaimanLipi
}

.course-schedule p i {
    color: #f66962;
    font-size: 1.25rem
}

.review-out-of {
    font-size: 1.25rem;
    color: #555
}

.review-out-of-text {
    color: #555
}

.review-out-of-star i {
    font-size: 1.25rem;
    color: #555
}

.description-data-info {
    position: relative
}

.showmore-btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 100px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgba(255, 212, 255, .1)), to(#fff));
    background: -o-linear-gradient(top, rgba(255, 212, 255, .1) 30%, #fff);
    background: linear-gradient(180deg, rgba(255, 212, 255, .1) 30%, #fff);
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0
}

.showless-btn,
.showmore-btn-container .showmore-btn {
    border: none;
    outline: none;
    border-radius: 10rem;
    margin: 10px 0;
    font-size: 14px;
    background: #20aaf3;
    padding: 8px 16px;
    color: #fff
}

.showless-btn {
    display: block;
    margin: auto
}

.learn-item i {
    color: #20aaf3;
    font-size: 16px
}

.flex-1 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.subs-title {
    font-size: 18px;
    font-weight: 700;
    color: #296D7E;
    margin-bottom: 20px
}

.course-sec p {
    font-size: 14px
}

.overview-sec h6 {
    font-weight: 600;
    font-size: 14px;
    color: #0b0b0b;
    margin-bottom: 20px
}

.overview-sec ul {
    padding-left: 20px;
    margin: 0 0 20px
}

.overview-sec ul li {
    font-size: 14px;
    margin-bottom: 6px
}

.overview-sec-body {
    padding-bottom: 24px
}

.course-description p,
.course-details p,
.include-sec p,
.feature-sec p {
    margin-bottom: 10px;
}

.course-description ul {
    list-style: disc;
}

.course-description ul li {
    list-style: disc;
    margin-left: 35px;
    margin-bottom: 4px;
}

.accordion-button::after {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: 16px;
    -webkit-transition: var(--bs-accordion-btn-icon-transition);
    -o-transition: var(--bs-accordion-btn-icon-transition);
    transition: var(--bs-accordion-btn-icon-transition);
    position: absolute;
    left: 8px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.accordion-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    font-size: 15px;
    color: #000;
    text-align: left;
    font-weight: 700;
    background-color: var(--bs-accordion-btn-bg);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    -webkit-transition: var(--bs-accordion-transition);
    -o-transition: var(--bs-accordion-transition);
    transition: var(--bs-accordion-transition);
    padding-left: 30px;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #f5f5f5;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

.accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-bg: transparent;
}

.accordion-item {
    color: #000;
    border: none;
    border-bottom: 1px solid #eee;
}

.Modules {
    padding: 15px;
    background: #fafafa;
}

.accordion-body {
    padding: 0 15px;
}

.accordion-body p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #22100d;
    line-height: 1.5;
}

.instructor-wrap {
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    border-bottom: 1px solid #c7c7c7;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.course-sec .course-info,
.inner-banner .course-info,
.instructor-wrap .about-instructor {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about-instructor,
.instructor-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.abt-instructor-img {
    margin-right: 10px
}

.abt-instructor-img img {
    width: 50px;
    height: 50px;
    border: 1px solid #e3e3e3;
    border-radius: 50%
}

.instructor-wrap .rating {
    width: unset;
    margin-bottom: 15px;
    font-size: 14px
}

.instructor-detail h5,
.instructor-detail h6 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px
}

.instructor-detail p {
    font-size: 13px;
    color: #22100d;
    margin-bottom: 0
}

.description-data-info p {
    font-size: 16px;
    color: #22100d;
    margin-bottom: 10px;
    line-height: 1.5;
}

.course-info {
    border-bottom: 1px solid #c7c7c7;
    margin-bottom: 15px;
    padding-bottom: 15px
}

.cou-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 15px
}

.cou-info p {
    font-size: 16px;
    font-weight: 500
}

.instructor-sec ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.instructor-sec ul li {
    font-size: 14px
}

.rev-info {
    font-style: italic
}

.successcard {
    border: 1px dashed #bbb;
    cursor: default;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.successcard:hover {
    border: 1px dashed #20aaf3
}

.successcard-footer {
    border-top: 1px dashed #bbb;
    padding: 12px 0
}

.successcard:hover .successcard-footer {
    border-top: 1px dashed #20aaf3
}

.success-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem
}

.success-user img {
    border: 1px solid #bbb!important;
    border-radius: 200px!important
}

.successcard:hover .successcard-footer .success-user img {
    border: 1px solid #20aaf3!important
}

.success-user h5 {
    font-size: 1rem;
    margin: 0;
    padding: 0
}

.success-user-designation p {
    font-size: 12px;
    margin: 0;
    padding: 0
}

.successstoriss {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    gap: 1rem;
}
.footer-address.justify-content-center.justify-content-md-start i {
    padding-top: 4px;
}