/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    background: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    position: relative;
    padding-bottom: 79px;
    min-height: 100vh;
    height: 100%;
}

a {
    text-decoration: none;
    color: #000
}

a:hover,
a:active,
a:focus {
    color: #063b5b;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

.btn:focus,
button:focus,
.form-control:focus {
    outline: none;
    box-shadow: none;
}

ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}


/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #063B5B;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #fff;
}


/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #0e1f50;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

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

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


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    z-index: 997;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}

.header-padding {
    padding-top: 121px;
}

.header-padding.withsearch {
    padding-top: 211px;
}

#header.header-scrolled,
#header.header-pages {
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}

#header .logo img {
    padding: 0;
    height: 107px;
    margin: 7px 0px;
    transition: all 0.3s;
}

.menubar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.main-nav {
    position: relative;
}

.main-nav,
.main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav>ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav>ul>li {
    display: inline-block;
    padding: 0px 15px;
    position: relative;
}

.main-nav a {
    display: inline-block;
    position: relative;
    color: #000;
    transition: 0.3s;
    font-size: 16px;
}

.main-nav a img, .mobile-nav  a img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    object-position: 50% top;
    border-radius: 100%;
}

.main-nav a.btn {
    padding: 5px 15px;
    border-radius: 25px;
    color: #fff;
}

.main-nav a.sign-in {
    background-color: #063B5B;
    border: 1px solid #063B5B;
}

.main-nav a.language {
    position: relative;
    background-color: #E6990D;
    border: 1px solid #E6990D;
    padding-right: 30px;
}

.main-nav a.language::before {
    position: absolute;
    top: 50%;
    right: 10px;
    content: '\f0d7';
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Pro";
}

.main-nav a:hover,
.main-nav .active>a,
.main-nav li:hover>a {
    color: #E6990D;
    text-decoration: none;
}

.main-nav a.sign-in:hover {
    background-color: #fff;
    color: #063B5B;
}

.main-nav a.language:hover,
.main-nav .active>a.language,
.main-nav li:hover>a.language {
    background-color: #fff;
    color: #E6990D;
}

.main-nav .drop-down .dropdownmenu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding:10px;
    background-color: #fff;
    box-shadow: 0px 3px 10px #00000030;
    border-radius: 10px;
    transform: translateY(40px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
}

.main-nav .drop-down .dropdownmenu li a{
    display:inline-block;
    padding:5px 10px;
    border-bottom:1px solid #ccc;
    width:100%;
}

.main-nav .drop-down .dropdownmenu li a:hover{
    color:#fff;
    background-color:#E6990D;
}

.main-nav .drop-down .dropdownmenu li:last-child a{
    border-bottom:none;
}

.main-nav .drop-down:hover>.dropdownmenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all 0.3s ease-in-out;
}


/* Mobile Navigation */

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -320px;
    width: 320px;
    padding-top: 18px;
    background: rgb(6 59 91);
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #e99706;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\f077";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down .dropdownmenu {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    border: 0;
    background: none;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    color: #063b5b;
    font-size: 25px;
}

.mobile-nav-bx ul li {
    display: inline-block;
    padding-right: 20px;
    font-size: 18px;
}

.mobile-nav-bx ul li a {
    color: #000000;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgb(0 0 0 / 34%);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

.home-banner {
    background-position: center left;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0px 350px;
    width: 100%;
}

.banner-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #063B5B;
    line-height: 66px;
}

.banner-content h2 span {
    color: #E6990D;
}

.banner-content p {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    margin-bottom: 40px;
    padding-right: 110px;
}

.main-btn {
    padding: 8px 45px;
    border-radius: 25px;
    background-color: #E6990D;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid #E6990D;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.main-btn:hover {
    background-color: #fff;
    color: #E6990D;
}

.our-space {
    margin-top: -163px;
}

.our-space-bx {
    padding: 20px 40px;
    border-radius: 20px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 2px 4px 18px #00000038;
}

.our-space-bx h3 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.our-space-bx-inner {
    text-align: center;
}

.our-space-bx-inner img {
    width: 100%;
    margin-bottom: 15px;
}

.our-space-bx-inner h4 {
    font-size: 30px;
    font-weight: 500;
    color: #E6990D;
    margin: 0;
}

.banner-curve-img {
    position: absolute;
    bottom: 0;
    left: 0;
}

.banner-curve-img img {
    width: 100%;
}

.our-video {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 320px 0px;
    margin-top: -164px;
    position: relative;
}

.youtube-video iframe {
    border-radius: 20px;
}

.popular-course img {
    width: 100%;
    border-radius: 0px 90px;
}

.popular-course-content {
    padding: 30px 60px;
    border-radius: 0px 70px;
    background-color: #fff;
    box-shadow: 2px 4px 18px #00000038;
    position: relative;
}

.course-box .popular-course-content {
    margin-left: -110px;
}

.course-box-pad .popular-course-content {
    margin-right: -110px;
}

.popular-course-content h4 {
    font-weight: 600;
    font-size: 30px;
    color: #000;
}

.popular-course-content p {
    font-weight: 500;
    font-size: 15px;
    color: #000;
}

.section-header h3 {
    color: #2750A7;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    margin-bottom: 80px;
}

.popular-course-content .btn {
    padding: 10px 30px;
    background: #FAE6C3;
    border: 1px solid #E6990D;
    border-radius: 20px;
    color: #000;
    transition: all 0.3s ease-in-out;
}

.popular-course-content .btn:hover {
    background: #e6990d;
    color: #fff;
}

.course-box-pad {
    padding: 160px 0px;
}

.section-header.red h3 {
    color: #EF3341;
    margin-bottom: 25px;
}

.main-features-content {
    padding: 110px 0px;
    background-image: url(../images/main-features.png);
    background-repeat: repeat;
    background-size: contain;
    position: relative;
}

.main-features-content::before {
    position: absolute;
    top: 17px;
    left: 0;
    width: 100%;
    height: 98%;
    content: '';
    background-color: #55769f;
}

.main-features-cont-bx {
    position: relative;
}

.main-features-cont-bx h3 {
    font-weight: 600;
    font-size: 35px;
    color: #FF5B7E;
}

.main-features-cont-bx h6 {
    font-size: 25px;
    color: #fff;
    margin-bottom: 40px;
}

.feature-box {
    background-color: #fff;
    background-image: url(../images/features/bg-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 2px 4px 18px #00000038;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    height: 100%;
    background-position: 16px 16px;
}

.feature-box h4 {
    font-weight: 600;
    font-size: 16px;
    color: #E6990D;
    margin-bottom: 10px;
}

.feature-box p {
    font-weight: 600;
    font-size: 14px;
    color: #000;
    padding: 0px 20px;
}

.feature-box img {
    width: 100%;
    margin-bottom: 10px;
}

.footer {
    padding: 30px 0px 25px;
    background-color: #06BFAD;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.footer p {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

.or-tag {
    text-align: center;
    position: relative;
    margin-top: 20px;
    color: #000;
}

.or-tag::before {
    width: 100px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    background-color: #000;
}

.or-tag span {
    background-color: #fff;
    position: relative;
    padding: 5px 10px;
    font-weight: 600;
}

.sign-in-area {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15px 0px 60px;
    min-height: calc(100vh - 168px);
}

.signin-box {
    padding: 40px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 2px 4px 18px #00000038;
}

.signin-box h4 {
    font-weight: 600;
    font-size: 36px;
    color: #063B5B;
    text-align: center;
}

.signin-box p {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    width: 85%;
    margin: 0px auto 30px auto;
}

.signin-box form {
    padding: 0px 125px;
}
.fa-eye:before {
    content: "\f06e" !important;
}
.signin-box .form-control , .signin-box .form-select{
    border: 1px solid #B7BAB9;
    border-radius: 20px;
    padding: 16px 1.75rem;
}

.signin-box .form-control:focus,
.signin-box .form-control:visited,
.signin-box .form-control:active,
.signin-box .form-control:hover {
    border: 1px solid #E6990D;
    background-color: #fff;
}

#togglePassword{
    position:absolute;
    top:50%;
    right:20px;
    transform:translateY(-50%);
}

.signin-box .form-floating>label {
    padding: 0px 10px;
    top: 17px;
    left: 16px;
    height: auto;
}

.signin-box .form-floating>.form-control:not(:placeholder-shown)~label,
.signin-box .form-floating>.form-control:focus~label {
    transform: scale(0.85) translateY(-30px) translateX(0.15rem);
    background-color: #fff;
    opacity: 1;
}

.signin-box .form-floating>.form-control:not(:placeholder-shown),
signin-box .form-floating>.form-control:focus {
    padding-top: 0.625rem;
}

.login-btn {
    background: #E6990D;
    border: 1px solid #E6990D;
    box-shadow: 2px 4px 18px #00000038;
    border-radius: 20px;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    line-height: 163.02%;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.login-btn:hover {
    color: #E6990D;
    background-color: #fff;
}

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

.social-login a {
    display: inline-block;
    margin: 0px 10px;
}

.social-login a img {
    width: 35px;
}

.login-bx-footer p {
    font-weight: 600;
    font-size: 14px;
    color: #000;
    margin: 0;
}

.login-bx-footer p a {
    color: #063B5B;
    letter-spacing: 0.02em;
    font-size: 18px;
    margin-left: 5px;
}

.contact-content {
    color: #000;
}

.contact-content h4 {
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 50px;
}

.contact-content p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 67px;
}

.contact-content address {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.about-area {
    padding: 270px 0px 65px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-content {
    background-image: url(../images/about-bg.png);
    padding: 20px 100px 50px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.about-content h4 {
    font-weight: 500;
    font-size: 40px;
    color: #063B5B;
    text-align: center;
}

.about-content p {
    font-weight: 500;
    font-size: 16px;
    text-align: justify;
}

.inner-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 200px 0px 150px;
}

.inner-banner-content h4 {
    font-weight: 600;
    font-size: 35px;
    color: #063B5B;
    margin-bottom: 25px;
}

.inner-banner-content p {
    font-weight: 600;
    font-size: 30px;
    color: #E6990D;
}

.subscription-bx {
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: 2px 4px 18px #00000038;
    position: relative;
    height: 100%;
}

.section-pad {
    padding: 50px 0px;
}

.subscription-bx h4 {
    font-weight: 500;
    font-size: 25px;
    color: #EF3341;
    margin-bottom: 10px;
    text-align: center;
}

.subscription-bx p {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: center;
}

.subscription-bx h3 {
    font-weight: 500;
    font-size: 40px;
    line-height: 60px;
    color: #41A943;
    text-align: center;
    margin: 34px 0px;
}

.subscription-bx ul li {
    position: relative;
    padding-left: 30px;
    padding-bottom: 16px;
    font-weight: 500;
    font-size: 16px;
}

.subscription-bx ul li span {
    color: #B7BAB9;
}

.subscription-bx ul li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
}

.subscription-bx .btn {
    width: 270px;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
}

.subscription-bx .main-btn {
    background-color: #FF5B7E;
    border: 1px solid #FF5B7E;
}

.subscription-bx .main-btn:hover {
    color: #FF5B7E;
    background-color: #fff;
}

.subscription-bx .outline-btn {
    border: 1px solid #B7BAB9;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.subscription-bx .outline-btn:hover {
    background-color: #B7BAB9;
    color: #fff;
}

.subscription-bx .box-label {
    position: absolute;
    top: 24px;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5px 15px 5px 5px;
    text-align: center;
    width: 80px;
    display: inline-block;
    line-height: 12px;
    color: #fff;
    font-size: 12px;
    background-position: center left;
}

.subscription-bx h2 {
    font-weight: 500;
    font-size: 20px;
    color: #28499A;
    text-align: center;
}

.subscription-bx h6 {
    font-weight: 500;
    font-size: 13px;
    padding: 5px 14px;
    background: #D9D9D9;
    display: inline-block;
    border-radius: 20px;
}

.checkout-form .form-control {
    border: 1px solid #B7BAB9;
}

.debit-card-feild a {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #635BFF;
}

.debit-card-feild .card-num {
    border-radius: 20px 20px 0px 0px;
    border-bottom: none;
}

.debit-card-feild .card-expiry-month {
    border-radius: 0px 0px 0px 20px;
}

.debit-card-feild .card-expiry-year {
    border-radius: 0px;
}

.debit-card-feild .card-cvc{
    border-radius: 0px 0px 20px 0px;
}

.address-flied #floatingInput {
    border-radius: 20px 20px 0px 0px;
    border-bottom: none;
}

.debit-card-feild .card{
    border:none;
    background:transparent;
}

.address-flied .zip-code {
    border-radius: 0px 0px 20px 20px;
}

.cart-bx {
    padding: 20px 35px;
    background: #F1F1F1;
    border-radius: 20px;
}

.cart-bx table {
    width: 100%;
}

.cart-bx table td {
    font-weight: 400;
    font-size: 16px;
    padding: 5px;
}

.cart-bx table td:last-child {
    text-align: right;
}

.total-amount td {
    padding-top: 30px !important;
    font-weight: 400 !important;
    font-size: 24px !important;
    color: #0070E0;
}

.pay-btn {
    background-color: #0070E0;
    border: 1px solid #0070E0;
    width: 100%;
    text-align: center;
    padding: 7px 20px;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.pay-btn:hover {
    color: #0070E0;
    background-color: #fff;
}

.class-type {
    position: relative;
    margin: 0px 10px;
}

.class-type img {
    width: 100%;
}

.class-type h3 {
    font-size: 24px;
    margin-bottom:10px;
}

.class-cover{
    padding: 20px;
    width: 100%;
    min-height: 160px;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: end;
    margin-bottom:10px;
}

.class-type.yellow h3 {
    color: #FBC02D;
}

.class-type.red h3 {
    color: #EF3341;
}

.class-type.green h3 {
    color: #41A943;
}

.class-type.blue h3 {
    color: #419DA9;
}

.right-arrow {
    text-align: center;
}

.classes-box {
    padding: 30px 0px;
}

.classes-box h4 {
    font-weight: 600;
    font-size: 24px;
}

.bx-bg-grey {
    background-color: #EEEFF3;
    ;
}

.search-box-area {
    padding: 20px 0px;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    position: fixed;
    width: 100%;
    top: 121px;
    z-index: 5;
}

.search-box {
    padding: 5px 8px;
    background: #FFFFFF;
    border: 1px solid #B7BAB9;
    border-radius: 20px;
    position: relative;
}

.search-box .form-select {
    background-color: #2750A7;
    border-radius: 20px;
    color: #fff;
    background-image: url(../images/classes/dropdown.png);
    background-size: 17px 10px;
}

.search-box .keytype {
    position: relative;
}

.search-box .search-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.search-box .form-control {
    border: none;
    padding: 5px 35px 5px 10px;
    font-size:14px;
}

.search-box .form-control::placeholder {
    color: #000;
}

.material-desc {
    background-color: #F1F1F1;
    padding-bottom: 80px;
}

.material-bx {
    text-align: center;
    margin-bottom: 30px;
}

.material-bx img {
    width: 100%;
    margin-bottom: 20px;
}

.material-bx h4 {
    font-weight: 600;
    font-size: 15px;
}

.material-area {
    background: #F1F1F1;
    padding: 15px 0px 60px;
}

.material-area h3 {
    font-weight: 600;
    font-size: 30px;
    color: #FF5B7E;
    margin-bottom: 40px;
}

.material-desc-top {
    background: linear-gradient(176.39deg, #555A5F 2.62%, #838B93 88.04%);
    border-radius: 20px 20px 0px 0px;
    padding: 60px 70px 30px;
    min-height: 280px;min-height: 280px;
}

.material-desc-top.inner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 280px;
}

.material-desc-top.inner::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 20px 20px 0px 0px;
}

.material-category {
    padding: 23px 70px 30px;
    background-color: #fff;
    border-radius: 20px;
}

.material-desc-top-content h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: #FF5B7E;
}

.material-desc-top-content p {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.material-desc-top-content h4 {
    font-weight: 600;
    font-size: 24px;
    color: #FBC02D;
    line-height: 35px;
    display: flex;
    align-items: center;
}

.material-desc-top-content img {
    width: 22px;
    margin: 0px 4px;
}

.material-desc-top-content h4 span {
    font-weight: 500;
    font-size: 16px;
}

.material-desc-top-content h4 .rating-text {
    color: #02CCC0;
    padding: 0px 10px
}

.material-desc-top-content h4 .rating-count {
    color: #fff;
}

.material-desc-bottom {
    padding: 40px 70px;
    background-color: #fff;
    border-radius: 0px 0px 20px 20px;
}

.material-desc-bottom-content {
    margin-bottom: 30px;
}

.material-desc-bottom-content h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #2750A7;
}
.btn-close{
    position:absolute;
    top:10px;
    right:10px;
    z-index:1;
}

#preview .btn-close{
        background-color: #fff;
}
.material-desc-bottom-content ul {
    margin-bottom: 30px;
}

.material-desc-bottom-content ul li {
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    padding-left: 30px;
}

.material-desc-bottom-content ul li img {
    width: 22px;
    position: absolute;
    top: 4px;
    left: 0;
}

.material-desc-bottom-content .accordian-heading {
    padding: 18px 30px;
    background-color: #686E74;
}

.material-desc-bottom-content .accordian-heading h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    margin: 0;
    position: relative;
}

.material-desc-bottom-content .accordian-heading h5 span {
    position: absolute;
    top: 0;
    right: 0;
}

.material-desc-bottom-content .accordion-button {
    background-color: #F7F9FA;
    color: #000;
    padding-left: 60px;
    font-weight: 400;
    font-size: 14px;
}

.material-desc-top-content {
    position: relative;
}

.material-desc-bottom-content .accordion-button span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
}

.material-desc-bottom-content .accordion-item {
    border-bottom: 1px solid #B7BAB9;
    border-right: 1px solid #B7BAB9;
    border-left: 1px solid #B7BAB9;
    border-radius: 0;
}

.material-desc-bottom-content .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0;
}

.material-desc-bottom-content .accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

.material-desc-bottom-content .accordion-button:not(.collapsed) {
    color: #000;
    background-color: #F7F9FA;
    border-bottom: 1px solid #B7BAB9;
}

.accordion-button::after {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
}

.accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(-180deg);
}

.accordion-body ul li {
    padding-bottom: 20px;
    position: relative;
}

.accordion-body ul li a {
    color: #EF3341;
    text-decoration: underline;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
}

.accordion-body ul li .preview-btn {
    position: absolute;
    top: 0;
    right: 15px;
}

.accordion-body ul li a img {
    width: 22px;
    margin-right: 15px;
}

.accordion-body ul li .preview-btn span {
    font-weight: 500;
    font-size: 12px;
    margin-left: 10px;
}

.more-section {
    width: 100%;
    border: 1px solid #000000;
    padding: 18px 0px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    color: #000;
    border-radius: 0;
}

.more-section:hover {
    background-color: #000;
    color: #fff;
}

.material-price-box {
    padding: 35px 30px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 3px 10px #00000030;
    margin-top: -270px;
    position: relative;
}

.material-price-box h4 {
    color: #EF3341;
    font-weight: 500;
    font-size: 25px;
    margin-bottom: 10px;
    text-align: center;
}

.material-price-box p {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

.material-price-box h5 {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #28499A;
    text-align: center;
}

.material-price-box span {
    background: #D9D9D9;
    border-radius: 20px;
    font-weight: 500;
    font-size: 12px;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 20px;
}

.material-price-box .btn {
    width: 100%;
    padding: 10px 0px;
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    border-radius: 20px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.material-price-box .add-cart-btn {
    background-color: #2750A7;
}

.material-price-box .add-cart-btn:hover {
    background-color: #1342a5;
}

.material-price-box .buy-btn {
    background-color: #FF5B7E;
}

.material-price-box .buy-btn:hover {
    background-color: #f5325b;
}

.material-price-box ul {
    margin-top: 20px;
}

.material-price-box ul li {
    padding-bottom: 18px;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    padding-left: 35px;
}

.material-price-box ul li img {
    width: 22px;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.material-desc-bottom-content p {
    margin-bottom: 10px;
}

.text-greyed {
    color: #B7BAB9;
}

.material-desc-bottom-content .see-more-btn {
    padding: 10px 35px;
    border: 1px solid #000000;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.material-desc-bottom-content .see-more-btn:hover {
    background-color: #000000;
    color: #fff;
}

.customer-review {
    padding-top: 30px;
}

.review-header {
    position: relative;
}

.review-header h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: #EF3341;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 38px;
}

.review-header-content {
    position: absolute;
    top: 0;
    right: 0;
}

.review-header-content h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 45px;
    margin-bottom: 0;
}

.review-header-content h4 a {
    text-decoration: underline;
}

.review-header-content h4 span {
    color: #FBC02D;
}

.rated-star {
    text-align: center;
    padding-left: 140px;
}

.rated-star img {
    width: 16px;
    margin-right: 5px;
}

.testimonial-box {
    padding: 0px 30px 30px;
    text-align: center;
}

.profile-img img {
    width: 116px !important;
    height: 116px !important;
    object-fit: cover;
    object-position: 50% top;
    border-radius: 100%;
    margin: 0px auto 10px
}

.rating-star {
    margin-bottom: 10px;
}

.rating-star img {
    width: 24px !important;
    display: inline-block !important;
    margin-right: 10px;
}

.testimonial-box h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 10px;
}

.testimonial-box p {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
}

.testimonial-box a {
    display: flex;
    color: #2750A7;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
}

.testimonial-box a img {
    margin-left: 10px;
    width: 30px !important;
    transition: all 0.3s;
}

.testimonial-box:hover>a img {
    transform: translateX(10px);
}

.owl-nav {
    text-align: center;
}

.owl-nav button {
    margin: 0px 8px;
}

.owl-nav button span {
    width: 40px;
    height: 40px;
    border: 2px solid #000000;
    border-radius: 100%;
    display: inline-block;
    font-size: 40px;
    transition: all 0.3s ease-in-out;
    line-height: 32px;
}

.owl-nav button:hover>span {
    background-color: #000;
    color: #fff;
}

.rate {
    float: left;
    height: 46px;
    margin-bottom: 20px;
}

.rate:not(:checked)>input {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.rate:not(:checked)>label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
}

.rate:not(:checked)>label:before {
    content: '★ ';
}

.rate>input:checked~label {
    color: #ffc700;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.add-review-box h4 {
    font-weight: 600;
    font-size: 20px;
}

.add-review-box textarea.form-control {
    border-radius: 20px;
    border: 1px solid #B7BAB9;
}

.add-review-box textarea.form-control::placeholder {
    color: #000;
}

.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-body {
    padding: 30px 40px 40px;
}

.user-profile {
    background-color: #E9E7DB;
    padding: 91px 0px 80px;
}

.user-profile .section-header h3 {
    color: #FF5B7E;
    letter-spacing: 0.02em;
    font-size: 40px;
    margin-bottom: 20px;
}

.user-profile-pic {
    text-align: center;
    position: relative;
}

.user-profile-pic .main-img {
    object-fit: cover;
    object-position: 50% top;
    width: 150px;
    height: 150px;
    border-radius: 100%;
}

.user-profile-pic span {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profile-pic span img {
    width: 20px;
}

.user-profile-pic span input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.user-other-details h4 {
    font-weight: 600;
    font-size: 17px;
    color: #2750A7;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.user-other-details p {
    font-weight: 600;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0;
    margin: 0;
    word-break: break-all;
}

.user-other-details .form-control {
    background-color: #FFFFFF;
    border: 1px solid #C4C4C4;
    border-radius: 20px;
    padding: 10px 24px;
}

.user-other-details .form-control::placeholder {
    color: #000;
}

.user-other-details .save-btn {
    font-weight: 500;
    font-size: 16px;
    background: #E6990D;
    border: 1px solid #E6990D;
    border-radius: 20px;
    color: #fff;
    padding: 10px 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: 100%;
}

.user-other-details .save-btn:hover {
    background-color: #fff;
    color: #E6990D;
}

.benefit-box {
    display: flex;
    align-items: center;
}

.benefit-box .count {
    width: 65px;
    background: #FFFFFF;
    height: 65px;
    font-size: 35px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.benefit-box .count.yellow {
    border: 3px solid #FBC02D;
    color: #FBC02D;
}

.benefit-box .count.green {
    border: 3px solid #41A943;
    color: #41A943;
}

.benefit-box .count.blue {
    border: 3px solid #419DA9;
    color: #419DA9;
}

.benefit-box .benefit {
    font-weight: 500;
    font-size: 16px;
    width: 70%;
}

.nav-pills .nav-link {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.02em;
    margin-right: 30px;
    padding: 8px 40px;
    border-radius: 0;
}

.nav-pills .nav-link.active {
    color: #063B5B;
    background-color: transparent;
    border-bottom: 3px solid #E6990D;
}

.inprogress-area {
    background-color: #EEEFF3;
    padding-bottom: 60px;
}

.inprogress-content {
    margin-top: 60px;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
}

.course-thumb-img {
    position: relative;
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center center;
    padding:15px;
    border-radius:10px;
    display:flex;
    align-items:end;
    min-height:200px;
}

.course-thumb-img img {
    width: 100%;
}

.course-thumb-img h3 {
    font-weight: 700;
    font-size: 40px;
    word-break:break-all;
    margin:0;
}

.course-thumb-img.yellow h3 {
    color: #FBC02D;
}

.course-thumb-img.green h3 {
    color: #41A943;
}

.course-box-content span {
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.course-box-content h3 {
    font-weight: 600;
    font-size: 25px;
    color: #E1525F;
}

.course-progress {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.course-progress span {
    margin: 0;
}

.course-progress .progress {
    width: 90%;
    margin-right: 10px;
    height: 6px;
    background-color: #E3E3E3;
}

.progress-bar {
    background-color: #063b5b;
}

.course-box-content p {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}

.course-box-content .continue-btn {
    padding: 8px 25px;
    border-radius: 20px;
    border: 1px solid #E1525F;
    background-color: #E1525F;
    margin-top: 10px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
}

.course-box-content .continue-btn i {
    font-size: 26px;
    line-height: 16px;
    margin-left: 10px;
}

.course-box-content .continue-btn:hover {
    background-color: #fff;
    color: #E1525F;
}

.inprogress-content.completed .continue-btn {
    width: auto;
    display: inline-block;
    margin: 0;
}

.inprogress-content.completed p {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.inprogress-content.completed p img {
    position: absolute;
    top: 5px;
    left: 0;
}

.rate-us {
    display: inline-block;
    padding: 10px 20px;
}

.page-breadcumb {
    padding: 15px 0px;
    background: #FFFFFF;
    border: 1px solid #B7BAB9;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.page-right-btns {
    text-align: right;
}

.page-right-btns ul li {
    display: inline-block;
    padding: 0px 20px;
}

.page-right-btns ul li a {
    color: #FF5B7E;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f105';
    font-family: "Font Awesome 5 pro";
}

.breadcrumb-item a {
    color: #FF5B7E;
}

.course-list {
    padding: 30px 20px 30px 0px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.course-list h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
    padding-left: 20px;
}

.course-list ul li {
    margin-bottom: 30px;
    padding-left: 56px;
    position: relative;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
}

.course-list ul li.active::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #2750A7;
    content: '';
}

.course-list ul li img {
    position: absolute;
    top: 4px;
    left: 20px;
}

.course-list ul li span {
    font-weight: 500;
    font-size: 12px;
    line-height: 26px;
}

.course-details-content {
    border: 1px solid #4F5355;
    border-radius: 0px;
    padding: 100px 100px;
}

.bottom-btns {
    text-align: center;
    margin-top: 50px;
}

.course-details-content h2 {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 47px;
    line-height: 32px;
}

.course-details-content p {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 20px;
}

.course-details-content h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
}

.course-details-content video, .course-details-content img {
    width: 100%;
}

.course-content {
    padding: 40px 0px;
}

.classes-box .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -200px;
}

.classes-box .owl-nav .owl-prev span,
.classes-box .owl-nav .owl-next span {
    opacity: 0;
}

.classes-box .owl-nav .owl-next,
.classes-box .owl-nav .owl-prev {
    background-image: url(../images/classes/right-arrow.png) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    width: 60px;
    height: 60px;
}

.classes-box .owl-nav .owl-prev {
    transform: rotate(180deg);
}

.classes-box .owl-nav .owl-prev.disabled,
.classes-box .owl-nav .owl-next.disabled {
    opacity: 0;
}

.no-data-found{
    padding:60px 0px;
    text-align:center;
}

.no-data-found h3{
    font-size:24px;
    font-weight:600;
    color:#ddd;
    margin:0;
}

#otp-field {
    display: none;
}

#password-field {
    display: none;
}

.alert{
    margin:0;
}

@media (min-width: 1300px) {
    .container {
        max-width: 1280px;
    }
}