@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

:root {
    --primary-yellow: #E6C54B; /* Template Gold */
    --text-dark: #1A1A1A;      /* Ink Black for light theme */
    --text-muted: #4A4A4A;     /* Slate for secondary text */
    --warm-white: #FAF7EF;     /* Cloud Background */
    --glass-white: #FFFFFF;    /* White cards background */
    --glass-border: #E8E6E0;   /* Hairline border */
    --card-shadow: 0 8px 24px -16px rgba(26,26,26,0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    font-weight: 400;
    color: var(--text-dark);
    position: relative;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    background-color: var(--warm-white);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    outline: none;
    transition: var(--transition);
    color: inherit;
}

a:hover {
    color: var(--primary-yellow);
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}
.border-20{
	border-radius: 20px;
}
.paragraph-details{
    line-height: 4px;
}

/*
.container {
    max-width: 1240px;
}
*/

.btn-default a {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background-color: #0e0a38;
    padding: 8px 20px;
    border-radius: 4px;
   
}

.btn-default a:hover {
    background-color: #edc523;
}

.overlay {
    position: relative
}
.section-padding{
/*	padding: 80px 0;*/
	padding: 50px 0
}
.section-details{
    padding: 17px 0px;
}

.overlay:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 15, 64, 0.8)
}

.bg-light2 {
    background-color: #fff5ee !important;
}
.bg-gray {
    background-color: #f7f7f7 !important;
}
.bg-light3 {
    background-color: #000 !important;
}
.shadow-none {
    -webkit-box-shadow: 0 0 !important;
    box-shadow: 0 0 !important
}

.bg-cover {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

/*-------------------------------------------------------------------------------------
    Global Dark Theme Overrides
---------------------------------------------------------------------------------------*/
section, .section-padding {
    background-color: var(--warm-white) !important;
    color: var(--text-dark) !important;
}

.page-banner-area {
    padding-top: 180px !important; /* Global fix for stuck header */
    padding-bottom: 100px !important;
    background: var(--warm-white) !important;
    position: relative !important;
}

.bg-light, .bg-gray, .bg-light2 {
    background-color: var(--warm-white) !important;
}

.sec-heading h2 {
    color: var(--text-dark) !important;
}

.sec-heading h4 {
    color: var(--primary-yellow) !important;
}

/* Webinar Listings Styling */
.webinar-single {
    background: var(--glass-white) !important;
    border: 1px solid var(--glass-border) !important;
    padding: 30px !important;
    border-radius: 20px !important;
    box-shadow: var(--card-shadow) !important;
    transition: var(--transition) !important;
    margin-bottom: 25px !important;
}

.webinar-single:hover {
    border-color: var(--primary-yellow) !important;
    transform: translateY(-5px);
}

.webinar-content h3 {
    color: var(--text-dark) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

.webinar-meta li {
    color: var(--text-muted) !important;
    font-size: 14px !important;
}

.webinar-meta li i {
    color: var(--primary-yellow) !important;
    margin-right: 8px !important;
}

.webinar-btn {
    background: var(--primary-yellow) !important;
    color: #000000 !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-align: center !important;
    transition: var(--transition) !important;
    cursor: pointer !important;
}

.webinar-btn:hover {
    background: #1e1b18 !important;
    color: #ffffff !important;
    transform: scale(1.05);
}

/* Contact Page Styling */
.contact-area {
    background: #000000 !important;
}

.contact-desc h2 {
    color: #ffffff !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 40px !important;
}

.contact-cont h3 {
    color: var(--primary-yellow) !important;
    font-size: 1.1rem !important;
    margin-bottom: 5px !important;
}

.contact-cont p, .contact-cont a {
    color: #ffffff !important;
}

.contact-icon i {
    background: rgba(255, 204, 0, 0.1) !important;
    color: var(--primary-yellow) !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    font-size: 20px !important;
}

/* Contact Form Styling */
.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding: 15px 20px !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
}

.contact-form .form-control:focus {
    border-color: var(--primary-yellow) !important;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.2) !important;
}

.submit-btn a {
    background: var(--primary-yellow) !important;
    color: #000 !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    transition: var(--transition) !important;
}

.submit-btn a:hover {
    background: #1e1b18 !important;
    color: #ffffff !important;
    transform: scale(1.05);
}

/* Service Detail Styling */
.category-area.two {
    background: #F4EEE3 !important;
}

.category-single.two {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 15px !important;
    padding: 25px !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.category-single.two:hover {
    border-color: #d4a017 !important;
    background: rgba(0, 0, 0, 0.04) !important;
}

.category-cont {
    text-align: left !important;
    margin-bottom: 10px !important;
}

.category-cont label {
    color: #1e1b18 !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer !important;
}

.category-cont input[type="checkbox"] {
    accent-color: #d4a017 !important;
    width: 18px !important;
    height: 18px !important;
}

/* Quantity and Cart Button Styling */
.btn-grp {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

#demand-date {
    margin-right: 10px !important;
}

#demand-date .form-control {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    color: #1e1b18 !important;
    height: 45px !important;
    border-radius: 10px !important;
    padding: 0 15px !important;
    color-scheme: light !important;
}

.new-qty {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.new-qty p {
    color: var(--text-dark) !important;
    margin: 0 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}

.new-qty .form-control {
    background: var(--glass-white) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-dark) !important;
    width: 60px !important;
    height: 45px !important;
    border-radius: 10px !important;
    text-align: center !important;
}

.register-btn a#cart {
    background: var(--primary-yellow) !important;
    color: var(--text-dark) !important;
    height: 45px !important;
    padding: 0 30px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
}

.register-btn a#cart:hover {
    background: var(--text-dark) !important;
    color: var(--warm-white) !important;
    transform: scale(1.05) !important;
}

.tab-content {
    background: var(--glass-white) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 0 15px 15px 15px !important;
    padding: 40px !important;
    box-shadow: var(--card-shadow) !important;
}

.nav-tabs .nav-link {
    color: #1e1b18 !important;
    background: rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding: 15px 30px !important;
    font-weight: 700 !important;
    margin-right: 5px !important;
    border-radius: 10px 10px 0 0 !important;
    transition: all 0.3s ease !important;
}

.nav-tabs .nav-link.active {
    background: #d4a017 !important; /* Amber */
    color: #000000 !important;
    border-color: #d4a017 !important;
}

.tab-pane, .accordion-body {
    color: #2b2724 !important;
    line-height: 1.8 !important;
}

.tab-pane h2, .tab-pane h3, .tab-pane h4, .tab-pane h5 {
    color: #1e1b18 !important;
    margin-bottom: 20px !important;
    font-weight: 800 !important;
}

.tab-pane p {
    color: #2b2724 !important;
    margin-bottom: 20px !important;
}

.tab-pane ul {
    list-style: none !important;
    padding-left: 0 !important;
}

.tab-pane ul li {
    position: relative !important;
    padding-left: 25px !important;
    margin-bottom: 12px !important;
    color: #2b2724 !important;
}

.tab-pane ul li::before {
    content: '\f00c' !important; /* FontAwesome Check */
    font-family: 'FontAwesome' !important;
    position: absolute !important;
    left: 0 !important;
    color: #d4a017 !important;
    font-size: 14px !important;
}

/* Related Products Styling */
.course-card.two {
    background: var(--glass-white) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 15px !important;
    padding: 20px !important;
    box-shadow: var(--card-shadow) !important;
    transition: all 0.3s ease !important;
}

.course-card.two:hover {
    border-color: var(--primary-yellow) !important;
    background: var(--glass-white) !important;
    box-shadow: 0 15px 35px rgba(26,26,26,0.1) !important;
}

.course-title a {
    color: var(--text-dark) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    display: block !important;
}

.course-content p {
    color: var(--text-muted) !important;
    font-size: 13px !important;
    margin-bottom: 10px !important;
}

.course-content p i {
    color: var(--primary-yellow) !important;
    margin-right: 8px !important;
}

.btn-default a {
    background: var(--primary-yellow) !important;
    color: var(--text-dark) !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.btn-default a:hover {
    background: var(--text-dark) !important;
    color: var(--warm-white) !important;
    transform: scale(1.05) !important;
}

.course-carousel .owl-nav button {
    background: var(--glass-white) !important;
    color: var(--text-dark) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--card-shadow) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
}

.course-carousel .owl-nav button:hover {
    background: var(--primary-yellow) !important;
    color: var(--text-dark) !important;
    border-color: var(--primary-yellow) !important;
}

/* Other Theme Buttons Override */
.contact-btn button {
    background-color: var(--primary-yellow) !important;
    color: var(--text-dark) !important;
    border-radius: 50px !important;
}
.contact-btn button:hover {
    background-color: var(--text-dark) !important;
    color: var(--warm-white) !important;
}

.unsub-btn, .unsub-btn-1 {
    background-color: var(--primary-yellow) !important;
    color: var(--text-dark) !important;
}
.unsub-btn:hover, .unsub-btn-1:hover {
    background-color: var(--text-dark) !important;
    color: var(--warm-white) !important;
}

.button_coupan {
    background-color: #4F5D45 !important;
    color: #FFFFFF !important;
    border-radius: 50px !important;
    padding: 10px 25px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}
.button_coupan:hover {
    background-color: #43503B !important;
    color: #FFFFFF !important;
}

.btn-premium {
    background: #4F5D45 !important;
    color: #FFFFFF !important;
}
.btn-premium:hover {
    background: #43503B !important;
    color: #FFFFFF !important;
}

.pricing-table button {
    background-color: #4F5D45 !important;
    color: #FFFFFF !important;
}
.pricing-table button:hover {
    background-color: #43503B !important;
    color: #FFFFFF !important;
}

.btn-success {
    background-color: #4F5D45 !important;
    border-color: #4F5D45 !important;
    color: #FFFFFF !important;
}
.btn-success:hover, .btn-success:focus, .btn-success:active {
    background-color: #43503B !important;
    border-color: #43503B !important;
    color: #FFFFFF !important;
}

.btn-upcoming {
    background: var(--primary-yellow) !important;
    color: var(--text-dark) !important;
    border-color: var(--primary-yellow) !important;
}
.btn-upcoming:hover {
    background: var(--text-dark) !important;
    color: var(--warm-white) !important;
    border-color: var(--text-dark) !important;
    transform: translateY(-3px) scale(1.02) !important;
}

.secondary-solid-btn {
    background: #4F5D45 !important;
    color: #FFFFFF !important;
}
.secondary-solid-btn:hover {
    background: #43503B !important;
    color: #FFFFFF !important;
}

/* Homepage Header Menu Light Theme (On Light Cream Background) */
.homepage .main-menu-area ul li a {
    color: var(--text-dark) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: rgba(0, 0, 0, 0.02) !important;
}

.homepage .main-menu-area ul li a:hover,
.homepage .main-menu-area ul li a.active {
    border-color: var(--primary-yellow) !important;
    color: var(--primary-yellow) !important;
    background: rgba(230, 197, 75, 0.08) !important;
}

.homepage .header-cart a {
    color: var(--text-dark) !important;
}

.homepage .header-log-reg ul li a {
    color: var(--text-dark) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: rgba(0, 0, 0, 0.02) !important;
}

.homepage .header-log-reg ul li a:hover {
    color: var(--primary-yellow) !important;
    border-color: var(--primary-yellow) !important;
    background: rgba(230, 197, 75, 0.08) !important;
}

/* Innerpage Header Menu Light Theme (On Dark Banner Background) */
.innerpage .main-menu-area ul li a {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.innerpage .main-menu-area ul li a:hover,
.innerpage .main-menu-area ul li a.active {
    border-color: var(--primary-yellow) !important;
    color: var(--primary-yellow) !important;
    background: rgba(230, 197, 75, 0.08) !important;
}

.innerpage .header-cart a {
    color: #ffffff !important;
}

.innerpage .header-log-reg ul li a {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.innerpage .header-log-reg ul li a:hover {
    color: var(--primary-yellow) !important;
    border-color: var(--primary-yellow) !important;
    background: rgba(230, 197, 75, 0.08) !important;
}

.innerpage .header-log-reg ul li small {
    color: rgba(255, 255, 255, 0.5) !important;
}

/*--------------------------------------------------------------------
    Preloader
---------------------------------------------------------------------*/
.preloader {
    background-color: #222;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

.preloader .spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

.d-table {
    width: 100%;
    height: 100%
}

/*-------------------------------------------------------------------------------------
    Header
---------------------------------------------------------------------------------------*/

.header-area {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    transition: var(--transition) !important;
}

/* Sticky header removed */

.header-top-area {
    background-color: #1a1a1a;
    padding: 8px 0;
    font-size: 13px;
}

.header-contact-info li {
    color: #fff;
    display: inline-block;
    padding-left: 20px;
}

.header-contact-info li a:hover {
    color: var(--primary-yellow);
}

.header-btm-area {
    padding: 15px 0;
}

.main-menu-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    background: transparent !important; /* Transparent background */
    padding: 10px 0 !important;
    display: inline-block !important;
    border: none !important;
    box-shadow: none !important;
}

.site-logo img {
    max-width: 160px !important;
    height: auto !important;
}

.main-menu-area ul li {
    display: inline-block;
    position: relative;
    padding: 0 5px !important;
}

.main-menu-area ul li a {
    font-size: 14px !important;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 20px !important;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 50px !important;
    transition: var(--transition) !important;
    background: rgba(0, 0, 0, 0.02) !important;
}

.main-menu-area ul li a::after {
    display: none !important;
}

.main-menu-area ul li a:hover,
.main-menu-area ul li a.active {
    border-color: var(--primary-yellow) !important;
    color: var(--primary-yellow) !important;
    background: rgba(255, 204, 0, 0.05) !important;
}

.main-menu-area .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000 !important;
    width: 260px;
    padding: 15px 0;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border: 1px solid rgba(255, 204, 0, 0.2) !important;
    backdrop-filter: blur(10px);
}

.main-menu-area ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu-area .sub-menu li {
    display: block;
    padding: 0;
}

.main-menu-area .sub-menu li a {
    padding: 12px 25px !important;
    font-size: 14px !important;
    display: block;
    color: #ffffff !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    text-transform: capitalize !important;
}

.main-menu-area .sub-menu li a:hover {
    background: rgba(255, 204, 0, 0.08) !important;
    color: #ffcc00 !important;
    padding-left: 35px !important;
}

.header-cart a {
    color: var(--text-dark);
    font-size: 22px;
    position: relative;
}

.header-cart a span {
    background: #ffcc00; /* Pure Logo Yellow */
    color: #000;
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -12px;
}

/* Login/Register Fix */
.header-log-reg ul {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
}

.header-log-reg ul li a {
    color: var(--text-dark) !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 6px 15px !important;
    border-radius: 50px !important;
    background: rgba(0, 0, 0, 0.02) !important;
}

.industry-premium-box h4 {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.industry-premium-box:hover h4 {
    color: #ffcc00 !important;
}

.header-log-reg ul li a:hover {
    color: #ffcc00 !important;
    border-color: #ffcc00 !important;
    background: rgba(255, 204, 0, 0.05) !important;
}

.header-log-reg ul li small {
    color: #ddd;
}

.mean-container a.meanmenu-reveal {
    background-color: #222;
    border-radius: 5px;
}

/*-------------------------------------------------------------------------------------
    Counter Area
---------------------------------------------------------------------------------------*/

.counter-area {
    background-color: #222;
    background-image: url(../images/banner-bg-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 95px 0 80px;
    position: relative;
}

.counter-title.two p {
    color: #fff;
}
.counter-single {
    margin-left: 25px;
}

.counter-wrap {
    padding: 100px 65px 0;
}

.counter-single h2 {
    color: #edc523;
    font-size: 50px;
    font-weight: 700;
}

.counter-single p {
    color: #222;
    font-size: 20px;
    font-weight: 500;
}

/*-------------------------------------------------------------------------------------
    Hero Area (Banner)
---------------------------------------------------------------------------------------*/
.hero-area {
    padding: 180px 0;
    position: relative;
    background-attachment: fixed;
}

.hero-area:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 100%);
}

.caption-content {
    position: relative;
    z-index: 10;
}

.caption-content h4 {
    color: var(--primary-yellow);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 6px;
    font-weight: 700;
    margin-bottom: 20px;
}

.caption-content h2 {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.caption-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
}

.caption-content ul {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.caption-content li a {
    display: inline-block;
    background: var(--primary-yellow);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

.caption-content li a:hover {
    background: #fff;
    color: var(--primary-yellow);
    transform: translateY(-3px);
}

.caption-content li .btn-bg {
    background: transparent;
    border: 2px solid #fff;
}

.caption-content li .btn-bg:hover {
    background: #fff;
    color: var(--text-dark);
}

/*-------------------------------------------------------------------------------------
    Section Heading
---------------------------------------------------------------------------------------*/

.sec-heading {
    text-align: center;
    margin-bottom: 60px;
}

.sec-heading h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    letter-spacing: 4px;
    font-weight: 800;
    margin-bottom: 15px;
}

.sec-heading h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.sec-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.content h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    color: #fff;
}

.content p {
    color: #fff;
}

.course-search {
    position: relative;
    margin: 50px 100px 55px;
    padding: 30px;
    background-color: #FFFFFFBD;
    border-radius: 10px 10px 10px 10px;
}

.course-search input {
    height: 60px;
    padding-left: 20px;
}

.search-btn {
    position: absolute;
    top: 35px;
    right: 31px;
    height: 50px;
    padding: 0 20px;
    border-radius: 4px;
    background-color: #edc523;
    color: #fff;
    font-size: 20px;
    margin-right: 5px;
    border: 0;
}

.hero-feat {
    padding: 0 20%;
}

.feat-icon img {
    width: 60px;
}

.feat-cont h3 {
    color: #fff;
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    margin: 0;
}

.feat-cont p {
    color: #fff;
}

.feat-cont {
    padding-left: 20px;
}

.hero-area.four {
    background-image: url(../images/banner-6.jpg);
    padding-bottom: 270px;
}

.card {
    box-shadow: 0 20px 27px 0 rgb(0 0 0 / 5%);
}
.img-md {
        width: 3rem;
    height: 3rem;
    margin-right: 15px;
}
.btn-link {
    transition-property: color,background-color;
    box-shadow: none;
    border-radius: 0;
    text-decoration: none!important;
	    color: #000;
    font-weight: 500;
}
.btn-link:hover{
	color:#edc523;
}
.text p{
	color: #000!important;
}

/*-------------------------------------------------------------------------------------
    Section Heading
---------------------------------------------------------------------------------------*/

/*
.sec-heading {
    margin-bottom: 40px
   
}
*/
.sec-heading h4{
    margin-top: 45px;
}
.sec-heading h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    color: #edc523;
    letter-spacing: 1px;
	margin: 0;
}

.sec-heading h2 {
    font-size: 37px;
    line-height: 55px;
    font-weight: 600;
    text-transform: uppercase;
	    margin-bottom: 20px;
}

/*-------------------------------------------------------------------------------------
    Course Category Area
---------------------------------------------------------------------------------------*/
.input-btn .form-control{
    border-radius: 5px !important;
    margin-left: 10px;
    font-weight: bolder;

}

.backgroung-box{
   background-color: aliceblue;
    padding: 30px 60px;
    border-radius: 10px;
}
.category-details{
    margin-top: 38px;
}

.category-single {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    text-align: center;
}

.category-single:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-yellow);
}

.category-single img {
    border-radius: 12px;
    margin-bottom: 25px;
    width: 100%;
    transition: var(--transition);
}

.category-single:hover img {
    transform: scale(1.05);
}

.category-single h4 a {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    display: block;
    margin-bottom: 15px;
}

.category-single h4 a:hover {
    color: var(--primary-yellow);
}

.category-single p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Custom Buttons for Cards */
.btn-premium {
    background: var(--primary-yellow);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.btn-premium:hover {
    background: var(--text-dark);
    color: #fff;
}

.category-single.two {
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 0px;
    padding: 20px;
}

.category-single.two .category-icon {
    float: left;
    width: 30%;
    padding-right: 20px;
    padding-top: 10px;
}
/*
.category-single.two .category-cont {
    float: left;
}
*/
.avialble-btn{
    margin-bottom: 15px;
    margin-top: 35px;
}
.category-cont label {
    display: flex;
    margin-bottom: .5rem;
}
.category-cont input{
	margin-right: 6px;
}
.category-cont h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.category-area.two .btn-default a {
    margin-top: 20px;
}

.category-single.four img {
    width: 50px;
}

.category-single.four {
    margin-bottom: 30px;
    padding: 45px 20px 20px;
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 51, 51, 0.05) !important;
    box-shadow: 0 0 30px 0 rgba(51, 51, 51, 0.05) !important
}

.category-single.four:hover {
    -webkit-box-shadow: 0px 20px 30px 0 rgba(51, 51, 51, 0.1) !important;
    box-shadow: 0px 20px 30px 0 rgba(51, 51, 51, 0.1) !important
}

.category-single.four p a {
    color: #edc523;
}

.category-single.four p a:hover {
    color: #C54703;
}

.course-cat.btn-default a {
    margin-top: 25px;
}

/*-------------------------------------------------------------------------------------
    Courses Area
---------------------------------------------------------------------------------------*/

.course-card.two {
    margin: 10px 5px;
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0
}

.course-card.two:hover {
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0
}

.course-card.two h5 {
    position: absolute;
    top: 7px;
    left: 5px;
    color: #fff;
    background-color: #edc523;
    padding: 4px 15px;
    font-size: 12px;
    line-height: 22px;
    margin-top: 15px;
    margin-left: 15px;
    border-radius: 4px;
}

.slider.owl-carousel .owl-nav > div {
    position: absolute;
    top: 233px;
    left: -66px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    border-radius: 4px;
    margin-left: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-weight: 900;
    color: #696969;
}

.feature-area.two button {
    position: absolute;
    border: 0;
    height: 30px;
    top: 6px;
    right: 19px;
    color: #edc523;
    background-color: transparent;
}

.feature-area.two input {
    padding-left: 20px;
}

.tutor-course-form select {
    height: 50px !important;
    color: #222
}

.tutor-courses h5 {
    color: #222;
    font-weight: 400;
    font-size: 16px;
}

.tutor-courses span {
    font-weight: 600;
}

.feature-text {
    color: #353535;
    padding: 10px 0;
    margin-top: 10px;
}

.course-sidebar .form-check-label {
    font-size: 16px;
    cursor: pointer;
    color: #222;
}

.search-result {
    margin-bottom: 50px;
}

.course-sidebar-search input {
    height: 50px;
    padding-left: 50px;
}

.course-sidebar-search {
    position: relative;
    margin-right: 25px;
}

.course-sidebar-search button {
    position: absolute;
    top: 12px;
    border: 0;
    background-color: transparent;
    font-size: 20px;
    color: #949597;
    left: 10px;
}

.course-sidebar h4 {
    font-size: 20px;
    color: #222;
    margin: 40px 0 18px;
    font-weight: 700;
}

.course-archive {
    padding: 100px 0;
}

.form-check {
    margin-bottom: 14px;
}

.course-card.four h5 {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #fff;
    background-color: #edc523;
    padding: 4px 15px;
    font-size: 12px;
    line-height: 22px;
    border-radius: 4px;
}

.course-card-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px;
    background-color: #fff;
    border-radius: 4px;
}

.course-card-icon img {
    width: 15px;
}

.course-rating ul li i {
    margin-right: 2px;
}

.course-content.four {
    padding: 25px 15px 15px;
}

.course-price.four span {
    color: #edc523;
    font-size: 16px;
    font-weight: 500;
    float: left;
}

.course-cart {
    float: right;
}

.course-meta li {
    display: inline-block;
    margin-right: 20px;
}

.course-meta li i {
    margin-right: 2px;
    color: #757c8e;
}

.course-content h4.course-title {
    margin: 6px 0 15px;
	    font-size: 16px !important;
    line-height: 22px !important;
}
.course-title a {
    color: #222;
    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 700;
    text-transform: capitalize;
}

.course-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #5b616f;
    margin-top: 16px;
}

.course-author .avator {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: #7fc562;
    display: block;
    text-align: center;
    border-radius: 50%;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    margin-right: 10px;
}

.course-author span {
    font-weight: 500;
    margin-left: 6px;
    color: #222;
}

.course-cart i {
    color: #edc523;
}

.course-cart a {
    margin-left: 5px;
    color: #222;
    font-weight: 500
}

.course-cart a:hover {
    color: #edc523;
}

.course-pagination li {
    display: inline-block;
}

.course-pagination li a,
.course-pagination li span {
    background-color: #eff1f7;
    display: block;
    width: 45px;
    height: 45px;
    line-height: 46px;
    border-radius: 4px;
    margin: 0 4px;
    font-weight: 700;
    font-size: 18px;
}

.course-pagination li span,
.course-pagination li a:hover {
    background-color: #edc523;
    color: #fff;
}

.course-carousel.owl-carousel .owl-nav > div {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 40px;
    color: #696969;
    left: -30px;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.course-carousel.owl-carousel .owl-nav > div:hover {
    color: #edc523
}

.course-carousel.owl-carousel .owl-nav .owl-next {
    left: auto;
    right: -30px;
}
.course-carousel .course-content {
    padding: 20px;
    text-align: left;
}
.course-carousel .course-content p{
	margin-bottom: 5px;
	font-size: 13px;
}
.course-carousel .course-content p i{
	padding-right: 10px;
    font-size: 14px;
    font-weight: bolder;
    color: #edc523;
}
.course-carousel .course-content .btn-default a {
    margin-top: 15px;
}
/*-------------------------------------------------------------------------------------
    About Area
---------------------------------------------------------------------------------------*/


.about-img {
    position: relative;
}

/*
.about-img > img {
    width: 300px
}
*/

.about-img img {
    border-radius: 105px 0 105px 0 ;
	width: 100%;
}

.about-img-inner {
    position: absolute;
    top: -85px;
    right: 50px;
    width: 300px;
}

.about-img-two {
    position: absolute;
    top: 145px;
    right: 0;
    width: 270px;
}


/*
.about-cont {
    margin-left: 50px
}
*/

.about-cont h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    color: #edc523;
    letter-spacing: 1px;
}

.about-cont h2 {
    font-size: 37px;
    line-height: 42px;
    font-weight: 600;
    margin-bottom: 20px;
	color: #fff;
}
.home_about p
{
 font-family: "Montserrat", sans-serif !important;
	color: #fff;
}
.about-cont a {
    margin-top: 30px
}

.about-img.two {
    width: 100%;
    margin-top: 0;
}

.about-area.three .sec-heading {
    margin-top: 40px;
}



.about-img-four img {
    border-radius: 20px;
}

.about-area.four .sec-heading {
    margin: 55px 140px 0;
}

.about-area.five {
    padding: 0;
}

.row.about-counter-wrap {
    margin: 0 130px;
}

.about-img-four.margin {
    margin-top: -110px;
}
/*-------------------------------------------------------------------------------------
    About Page
---------------------------------------------------------------------------------------*/
.abt-page-img img{
	position: relative;
}
.abt-page-img:after{
	position: absolute;
	content: "";
	top: 20px;
    left: -15px;
    width: 100%;
    height: 90%;
    border-radius: 20px;
    background: #edc523;
	z-index: -1;
	
}
/*-------------------------------------------------------------------------------------
    Cal To Action Area
---------------------------------------------------------------------------------------*/
.call-to-action-area {
    background-image: url(../images/banner-1.jpg);
}

.call-to-action-cont h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    color: #edc523;
    letter-spacing: 1px;
}

.call-to-action-cont h2 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

.call-to-action-cont .btn-default a {
    margin-top: 20px;
    background-color: #fff;
    color: #edc523;
}

.call-to-action-cont .btn-default a:hover {
    background-color: #edc523;
    color: #fff;
}
/*-------------------------------------------------------------------------------------
    Pricing Area
---------------------------------------------------------------------------------------*/
.pt-30{
	padding-top: 30px;
}
.pt-40{
	padding-top: 40px;
}
.pricing-info{
    margin-top: 41px;
}
.pricing-table {
    padding:25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(51, 51, 51, 0.10);
    position: relative;
    transition: 0.5s;
	margin-bottom: 30px;
}

.pricing-table:hover {
    -webkit-box-shadow: 0 20px 40px rgba(51, 51, 51, 0.10);
    box-shadow: 0 20px 40px rgba(51, 51, 51, 0.10);
}

.pricing-table h4 {
font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 20px;
    background: #e9e9e9;
    color: #000000;
    padding: 10px 15px;
    border-radius: 4px;
}

.pricing-table-currency {
    font-size: 24px;
    font-weight: 700;
    color: #222;
}
.pricing-table-price p{
	font-size: 14px;
    line-height: 22px;
}
.pricing-table-price p i{
	padding-right: 10px;
	font-size: 14px;
	font-weight: bolder;
	color: #edc523;
}
.pricing-table-price-text {
    color: #222;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
}

.pricing-table-body {
    margin-top: 25px;
}

.pricing-table-body li {
    color: #696969;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 15px;
}

.pricing-feat-text {
    display: inline-block;
}

.pricing-table-feature-tooltip {
    border-bottom: 1px dotted;
    cursor: pointer;
}

.pricing-table-feature-tooltip-text {
    position: absolute;
    top: 221px;
    left: 50px;
    width: 250px;
    padding: 10px 20px;
    background-color: #FDECE2;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    visibility: hidden;
}

.pricing-table-feature-tooltip:hover .pricing-table-feature-tooltip-text {
    visibility: visible;
    opacity: 1;
}

.pricing-table button {
    border: 0;
    color: #fff;
    background-color: #edc523;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 26px;
    letter-spacing: 1px;
    margin-top: 23px;
}


.pricing-table button:hover {
    background-color: #222;
}

/*-------------------------------------------------------------------------------------
    Course Area
---------------------------------------------------------------------------------------*/


.course-card {
    margin-bottom: 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.10);
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.10);
    overflow: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #fff;
    position: relative
}

.course-card:hover {
    -webkit-box-shadow: 0 10px 40px rgba(51, 51, 51, 0.10);
    box-shadow: 0 10px 40px rgba(51, 51, 51, 0.10);
}

.course-content {
    padding: 30px 35px;
	    text-align: center;
}

.course-price {
    color: #edc523;
    font-size: 24px;
    font-weight: 700;
}
.cart-list{
    margin-top: 33px;
}

.course-title a {
    color: #222;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.course-title a:hover {
    color: #edc523;
}

.star-rating-group {
    color: #f4c150;
    display: inline-block;
    text-align: left;
    font-size: 18px;
}

.course-rating-count {
    margin-left: 5px;
    font-size: 16px;
    color: #696969;
}

.course-content-footer {
    border-top: 1px solid #efecec;
    padding-top: 20px;
    margin: 25px 0;
    font-size: 15px;
    color: #696969;
}

.course-duration {
    float: left;
}

.course-user {
    float: right;
}

.course-content-footer ul li i {
    color: #696969;
    margin-right: 2px;
}

.course-card.three .course-thumbnail {
    position: relative
}

.course-card.three h5 {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #edc523;
    background-color: #fff;
    padding: 4px 15px;
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
    border-radius: 4px;
}

.category-btn a {
    margin-top: 30px;
}

.feat-course-area {
    padding: 1px 0

}
.product-list{
    margin-bottom: 56px;
}
.course-area.two {
    padding: 90px 0;
}

.course-area.three {
    padding: 90px 0 100px;
}


/*-------------------------------------------------------------------------------------
    Webinar Area
---------------------------------------------------------------------------------------*/

.webinar-single {
    padding: 20px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.10);
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.10);
    margin-bottom: 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    overflow: hidden;
	height: 300px;		    
}
.webinar-single.webinar_home
{
	height: 100px;
	padding: 15px !important;
	background:#fff;
	box-shadow: none;
	border-radius: 0;
	border: 1px solid #eee;
	margin-bottom: 15px;
}
.webinar-single:hover {
    -webkit-box-shadow: 0 10px 40px rgba(51, 51, 51, 0.10);
    box-shadow: 0 10px 40px rgba(51, 51, 51, 0.10);
	background: #ffc107;
}

.webinar-img {
    max-width: 100%;
    float: left;
}

.webinar-img img {
    border-radius: 10px;
}

.webinar-content {
    padding: 20px 0 0;
    float: left;
    width: 100%;
}
.webinar_home .webinar-content
{
	padding: 0;
}
.webinar-content h3{
    color: #222;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    text-transform: capitalize;
}
.webinar-content h3 {
    color: #222;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
}

.webinar-content h3:hover {
    color: #000;
}

.webinar-meta li {
    display: inline-block;
    margin-right: 10px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    margin-left: 12px;
	font-family: "Montserrat", sans-serif;	  
}

.webinar-meta li i {
    color: #f00;
    margin-right: 5px;
}

.webinar-meta span {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    margin-left: 12px;
	font-family: "Montserrat", sans-serif;	    
}

.webinar-content p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
}

.webinar-btn {
    font-size: 15px;
    line-height: 25px;
    color: #000;
    border: 1px solid #ffc107;
    border-radius: 0;
    padding: 5px 15px;
    display: inline-block;
    margin-top: 5px;
	background:#ffc107;
}
.webinar-single:hover .webinar-btn
{
	background: #000;
	color: #fff;
}

.webinar-area.two {
    background-color: #f7f7f7;
    padding: 100px 0;
}

.webinar-area.three {
    padding: 100px 0 70px;
}

.webinar-area.four {
    padding: 80px 0 90px;
}

.Webinar-area.two {
    padding: 90px 0 70px
}

/*-------------------------------------------------------------------------------------
    Industries We Cover Section
---------------------------------------------------------------------------------------*/
.indu-box{
	text-align: center;
}
.indu-img{
	width: 80px;
	height: 80px;
	margin: 0 auto;
	line-height: 80px;
	border-radius: 50%;background: #fde7a3;
}
.indu-img img{
	width: 100%;
	max-width: 40px;
	margin: 10px 0;
}
.indu-box h4{
	font-size: 16px;
}

/*-------------------------------------------------------------------------------------
    Webinar Single Page
---------------------------------------------------------------------------------------*/
.webinar-meta-info li {
    display: inline-block;
    font-weight: 700;
    font-size: 24px;
    margin-right: 35px;
    line-height: 34px;
}

.webinar-meta-info li img {
    width: 22px;
    margin-right: 10px;
}

.webinar-meta-info {
    width: 85%;
    margin: 0 auto;
    -webkit-box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
    padding: 40px;
    margin-top: -50px;
    background-color: #fff;
    border-radius: 10px;
}

#countdown.countdown-three .syotimer__body {
    padding: 0 230px;
    margin-top: 100px
}

#countdown.countdown-three .syotimer__body > div {
    margin-right: 25px;
}

#countdown.countdown-three .syotimer-cell__value {
    color: #222;
}

#countdown.countdown-three .syotimer-cell__unit {
    color: #222;
    font-weight: 500;
}

#countdown.countdown-three .syotimer-cell {
    -webkit-box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
    width: 160px;
    height: 160px;
    padding-top: 45px;
    border-radius: 100%;
    text-align: center
}

.webinar-single-area h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
}

.webinar-single-desc .about {
    margin-bottom: 50px;
    margin-top: 100px
}

.webinar-single-desc li {
    padding: 10px 0;
    font-size: 16px;
    line-height: 26px;
    color: #696969;
}

.webinar-single-desc li i {
    color: #edc523;
    padding-right: 8px;
}

.key-topic-single h4 {
    font-weight: 700;
}

.key-topic-single img {
    width: 20px;
    margin-right: 15px;
}

.key-topic-single p {
    padding-left: 35px;
}

.webinar-single-desc list-content {
    margin-bottom: 86px;
    overflow: hidden;
}

.webinar-single-desc .list-content {
    margin-bottom: 50px;
}

.webinar-single-desc .list-content h2 {
    margin-left: -15px;
}

.key-topic h2 {
    margin-bottom: 25px;
}


.speakers-area h2 {
    margin-left: 15px;
    margin-bottom: 30px;
}

.contact-form.webinar {
    margin-left: 0
}

.webinar-registration.contact h2 {
    margin-bottom: 30px;
}

.webinar-area.four.single {
    padding-bottom: 0;
}

.webinar-area.four.single h2 {
    margin-left: 15px;
    margin-bottom: 20px;
}
/*-------------------------------------------------------------------------------------
  client logo
---------------------------------------------------------------------------------------*/
.client-logo{
    text-align: center;
  /*  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    background-color: rgba(19, 15, 64, 0.8); */
    border-radius: 12px;
    width: 100%;
   
}



/*-------------------------------------------------------------------------------------
    Faq Area
---------------------------------------------------------------------------------------*/

.faq-area {
    background-color: #f7f7f7;
}

.faq-img {
    padding-right: 40px;
}

.faq-img img {
    border-radius: 20px;
}

.card {
    margin: 0 18px 16px 0;
    border: none;
	top: -54px;
}


.card-header {
    position: relative;
    background-color: #fff;
    border-bottom: none;
    padding: 20px 7px;
    letter-spacing: 1px;
}

.card-header.active:before {
    content: '-';
    font-size: 35px;
}

.card-body.current {
    display: block;
}

.card-header:before {
    content: '+';
    position: absolute;
    right: 35px;
    top: 13px;
    height: 30px;
    font-size: 25px;
    font-weight: 600;
    color: #edc523;
    line-height: 30px;
}

.card-header a {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 25px;
    color: #222;
    margin-left: 20px;
}

.card-header a:hover {
    color: #edc523;
}

.card-body {
    padding: 19px 10px 6px 26px;
    color: #696969;
    font-size: 16px;
    line-height: 28px;
}

.card-header.two a:hover {
    color: #222;
}

.faq-area.two {
    background-color: #fff;
}

.faq-area.two .card-header {
    -webkit-box-shadow: 0 0 5px rgb(51 51 51 / 10%);
    box-shadow: 0 0 5px rgb(51 51 51 / 10%);
}

.faq-area.two .card-body {
    -webkit-box-shadow: 0 0 15px rgb(51 51 51 / 10%);
    box-shadow: 0 0 15px rgb(51 51 51 / 10%);
}

.faq-area.three {
    padding: 90px 0 80px
}

/*-------------------------------------------------------------------------------------
    Why Choose Area
---------------------------------------------------------------------------------------*/



.why-choose-area h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 15px;
}

.why-choose-btn {
    margin: 50px 160px 0 0;
}

.why-choose-btn a {
    background-color: #edc523;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 26px;
    letter-spacing: 1px;
    padding: 14px 30px;
}

.why-choose-btn a:hover {
    background-color: #222;
}

.why-choose-single {
    margin-bottom: 20px;
    overflow: hidden;
}

.why-choose-icon {
    max-width: 21%;
    float: left;
    margin: 7px 20px 0 0;
}

.why-choose-icon img {
    width: 138px;
}

.why-choose-cont {
    max-width: 79%;
    float: left;
}

.why-choose-cont h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.why-choose-area .sec-heading {
    padding-left: 0;
    margin-bottom: 20px
}

.why-choose-img {
    padding-right: 35px;
}

.why-choose-img img {
    border-radius: 20px;
}

.choose-single.three {
    padding: 40px 40px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-top: 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.choose-single.three:hover {
    -webkit-box-shadow: 0 20px 30px rgba(51, 51, 51, 0.10);
    box-shadow: 0 20px 30px rgba(51, 51, 51, 0.10)
}

.why-choose-icon.three {
    margin: 0 0 20px;
    max-width: 100%;
    float: none;
}

.why-choose-cont.three {
    max-width: 100%;
    float: none;
}

/*-------------------------------------------------------------------------------------
    Become Instructor Page
---------------------------------------------------------------------------------------*/


.step-flow {
    padding: 0 30px;
}

.steps-icon img {
    width: 45px;
    margin: 40px;
}

.steps-icon {
    position: relative;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    width: 125px;
    height: 125px;
    margin: 0 auto
}

.steps-label {
    padding: 7px 10px;
    color: #fff;
    background: #edc523;
    font-size: 12px;
    position: absolute;
    top: 5px;
    right: 0px;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 20px;
    line-height: 1;
}

.step-flow h2 {
    margin: 25px 0 15px;
    color: #222;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}


.countdown-steps {
    margin-left: 67px;
}

.step-flow.two span {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    color: #151515;
    margin: 17px;
}

.step-flow.two p {
    margin-left: 20p;
}

.countdown.two {
    margin: 25px 0 0;
}

.work-area.two {
    padding: 75px 0 10px;
}


.revenue-img {
    margin-right: 30px
}

.revenue-img img {
    border-radius: 20px;
}

.sec-heading p {
    margin: 14px 0px 22px;
}
.tag-btn-services{
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    
}
.tag-btn{
    display: inline-flex;
    gap: 5px;
    padding: 0 20px;
    align-items: center;
    white-space: nowrap;
    
}


.register-btn a {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #fff;
    background-color: #edc523;
    padding: 10px 20px;
    border-radius: 4px;
}
.register-btn.express a
{
 background-color: #222;
color:#fff 
}
.register-btn a:hover {
    background-color: #222;
}
.register-btn.express a:hover
{
background-color: #edc523;	
}
.new-qty p
{
	display:inline-block;
}
.new-qty input{
	display:inline-block;
	width:80px !important;
    border-radius: 0% !important;
}
.joining-area {
    padding: 100px 0 60px;
}

.joining-img img {
    border-radius: 20px;
    margin-bottom: 26px;
}

.joining-area p {
    font-size: 18px;
}


.regist-group {
    padding: 55px;
    -webkit-box-shadow: 0 0 30px rgba(51, 51, 51, 0.10);
    box-shadow: 0 0 30px rgba(51, 51, 51, 0.10);
    border-radius: 10px;
}

.registration-form-wrap {
    -webkit-box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
    padding: 40px;
    border-radius: 5px;
	background: #ffffff;
}

.registration-form-wrap input {
    height: 50px;
    font-size: 15px;
}

.registration-form-wrap label {
    color: #000000;
    font-size: 13px;
    font-weight: 500;
}

.registration-form-wrap input::-webkit-input-placeholder {
    color: #B0B6C8;
}

.registration-form-wrap input:-ms-input-placeholder {
    color: #B0B6C8;
}

.registration-form-wrap input::placeholder {
    color: #B0B6C8;
}

.registration-form-wrap .form-group {
    margin-bottom: 20px;
}

/*-------------------------------------------------------------------------------------
    Login Form
---------------------------------------------------------------------------------------*/
.login-bg{
	background-image: url("../images/login-bg.webp");
	
}
.nav-menu{
    background: none;
    border: none;
    padding: 0 20px 35px;
}
.accordion-body p{
	font-size: 15px;
	color: #000;
}

.accordion-body ul{
	list-style: square;
	padding: 0 0 0 30px;
}
.accordion-body ul li{
	position: relative;
	padding: 0 0 10px;
}
#myTab .btn-list .nav-link{
    font-size: 16px;
	font-weight: bold;
	margin: 0 10px 0 0;
	letter-spacing: 1px;background: #ffffff;
}
.btn-list .active{
    color: white !important;
    background: #edc523 !important;
}
.tab-content.accordion {
    display: block;
    padding: 20px;
}
.login-area {
    padding: 100px 0
}

.login-form-wrap {
    padding: 60px 55px;
    -webkit-box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
}

.login-form-wrap h3 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px
}

.login-form-wrap input {
    height: 50px;
    border-radius: 6px;
}

.login-form-wrap .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.login-form-wrap input[type="checkbox"] {
    height: auto;
}

.login-form-wrap .checkbox label,
.forgot-pass a {
    font-size: 16px;
    color: #757c8e;
}

.login-btn a {
    display: inline-block;
    background-color: #edc523;
    width: 100%;
    padding: 15px 0 13px;
    border-radius: 6px;
    height: 50px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 25px 0 20px;
}

.login-btn a:hover {
    background-color: #222;
}

.new-registration {
    color: #5b616f;
    font-size: 16px;
}

.new-registration a {
    display: inline-block;
    color: #edc523;
    font-weight: 500;
    margin-left: 10px;
}

.new-registration a:hover {
    color: #0056b3;
}


/*-------------------------------------------------------------------------------------
    Instructor Area
---------------------------------------------------------------------------------------*/

.instruction-area {
    background-color: #f7f7f7;
    padding: 100px 0 130px;
}

.instruction-single {
    padding: 20px;
    -webkit-box-shadow: 0 0 15px rgba(51, 51, 51, 0.10);
    box-shadow: 0 0 15px rgba(51, 51, 51, 0.10);
    border-radius: 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #fff;
    position: relative;
}

.instruction-single:hover {
    -webkit-box-shadow: 0 10px 50px rgba(51, 51, 51, 0.10);
    box-shadow: 0 10px 50px rgba(51, 51, 51, 0.10);
}

.instruction-img img {
    border-radius: 8px;
}

.instruction-cont h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 30px;
}

.instruction-btn {
    margin-bottom: -45px;
    margin-top: 35px;
}

.instruction-btn a {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background-color: #edc523;
    padding: 14px 30px;
    border-radius: 4px;
}

/*-------------------------------------------------------------------------------------
    learn
---------------------------------------------------------------------------------------*/

.learn {
    padding: 40px 0 45px;
}

.icon {
    max-width: 10%;
    display: block;
    float: left;
    margin-top: 1px;
}

.learn-cont {
    max-width: 90%;
    margin-left: 36px;
}

.icon i {
    color: #edc523;
    font-size: 25px;
}


/*-------------------------------------------------------------------------------------
    key-topic
---------------------------------------------------------------------------------------*/

.icon img {
    width: 20px;
    margin: 3px 10px 0 6px;
}

.learn-cont h4 {
    font-weight: 700;
}

/*-------------------------------------------------------------------------------------
    Contact
---------------------------------------------------------------------------------------*/

.contact-form {
    padding: 30px 50px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 15px 0px rgb(51 51 51 / 10%);
    box-shadow: 0px 0px 15px 0px rgb(51 51 51 / 10%);
}

.contact label {
    margin-top: 20px;
    color: #222;
    font-size: 16px;
}

.contact label:after {
    content: "*";
    color: #f56c6c;
    margin-left: 3px;
}

.contact p {
    margin: 17px 0 7px;
    color: #222;
}

.contact input {
    padding: 15px 0px 15px 20px;
    font-size: 16px;
    height: 55px;
    border-radius: 5px;
}

.contact textarea {
    height: 130px;
}

.contact-btn {
    margin: 20px 0;
}

.contact-btn button {
    background-color: #edc523;
    color: #fff;
    border-radius: 4px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 26px;
    letter-spacing: 1px;
    border: none;
}

.contact-btn button:hover {
    background-color: #222;
}
.form-control:focus {
    border-color: #222;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgb(19 15 64 / 39%);
}
/*-------------------------------------------------------------------------------------
    team area
---------------------------------------------------------------------------------------*/

.team-area {
    padding: 95px 0 70px;
}

.instructor-single {
    text-align: center;
    border-radius: 10px;
/*
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
*/
    overflow: hidden;
    margin-bottom: 0px;
    padding: 10px 10px 5px 10px;
/*    background-color: #fff;*/
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.instructor-single.shadow-none {
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0;
}


/*
.instructor-single:hover {
    -webkit-box-shadow: 10px 0 30px rgba(51, 51, 51, 0.15);
    box-shadow: 10px 0 30px rgba(51, 51, 51, 0.15);
}
*/

/*
.instructor-single.shadow-none:hover {
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0
}
*/

.instructor-image {
    position: relative;
}
.instructor-image img{
	border-radius: 127px;

}
    
.instructor-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #edc523;
    width: 65%;
    margin: 0 auto;
    padding: 10px 0;
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
}

.instructor-single li {
    display: inline-block;
}

.instructor-single li a {
    display: block;
    text-align: center;
    font-size: 15px;
    margin: 0 6px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
}

.instructor-single li a:hover {
    color: #222;
}

.instructor-single:hover .instructor-links {
    visibility: visible;
    opacity: 1;
    bottom: 40px;
}

.instructor-body {
    padding: 26px 0 5px;
}

.instructor-body h4 {
    color: #222;
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
}

/*-------------------------------------------------------------------------------------
    Blog Area
---------------------------------------------------------------------------------------*/

.blog-area {
    background-color: #fff;
    padding: 5px 0 100px;
}

.blog-post-single {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.blog-post-single:hover {
    -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10);
}

.blog-post-content {
    padding: 30px 20px 15px;
}

.blog-post-content h3 a {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px;
    text-transform: capitalize;
    color: #222;
}

.blog-post-content h3 a:hover {
    color: #edc523;
}

.post-meta {
    margin-bottom: 15px;
}

.post-media img {
    border-radius: 5px 5px 0 0;
}

.post-meta li {
    display: inline-block;
}

.post-meta li a i {
    font-size: 15px;
    margin-right: 31px;
    color: #edc523;
}

.post-meta span {
    margin-left: 8px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    color: #696969;
}

.post-meta span:hover {
    color: #edc523;
}

.blog-area.two {
    padding: 100px 0;
}

.widget {
    padding: 30px 40px 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 15px rgba(51, 51, 51, 0.10);
    box-shadow: 0 0 15px rgba(51, 51, 51, 0.10);
}

.search-form {
    position: relative
}

.search-form input {
    width: 100%;
    height: 55px;
    border: 0;
    background-color: #f1f1f1;
    padding-left: 20px;
    border-radius: 5px;
}

.search-form button {
    position: absolute;
    right: 40px;
    top: 30px;
    height: 55px;
    width: 60px;
    border: 0;
    background-color: #edc523;
    font-size: 20px;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    color: #fff;
}

.search-form button:hover {
    background-color: #222;
}

.widget h4 {
    color: #222;
    padding-bottom: 15px;
    font-weight: 700;
    font-size: 24px;
}

.latest-post.widget {
    padding-bottom: 20px;
}

.recent-post-single {
    overflow: hidden;
    margin-bottom: 20px;
}

.recent-post-thumb.two img {
    margin: 0;
}

.recent-post-cont.two {
    padding: 0 0 0 20px;
}

.recent-post-cont.two a {
    color: #222;
    font-weight: 700;
}

.recent-post-cont.two span {
    color: #696969;
}

.menu-services-icon.two {
    margin: 0 0 0 15px;
}

.widget-list li {
    padding: 0 0 15px;
}

.widget-list li a {
    color: #696969;
}

.widget-list li i {
    color: #edc523;
    padding-right: 5px;
}

.menu-list.widget {
    padding-bottom: 20px;
}

.widget-list li a:hover {
    color: #edc523;
}

.all-posts-wrap {
    padding-right: 40px
}

.blog-posts {
    margin: 0 0 100px;
}

.blog-posts h3 {
    margin-bottom: 15px;
}

.blog-post-thumb img {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.blog-posts-meta {
    padding-bottom: 10px;
}

.blog-posts-meta ul li i {
    margin-right: 6px;
    font-size: 16px;
    color: #edc523;
}

.blog-posts-meta ul li {
    display: inline-block;
}

.blog-posts-meta ul li a {
    color: #696969;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 15px;
    margin-right: 15px;
}

.blog-posts-meta ul li a:hover {
    color: #edc523;
}

.blog-posts h3 a {
    color: #222;
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
}

.blog-posts h3 a:hover {
    color: #edc523;
}

.blog-area.two p {
    line-height: 1.8;
}

.blog-posts.two {
    margin: 0 30px 0 0;
}

.omexo-post-btn {
    margin: 30px 0 0;
    overflow: hidden
}

.omexo-post-btn a {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 26px;
    letter-spacing: 1px;
    background-color: #edc523;
    border-radius: 4px;
    padding: 14px 30px;
    color: #fff;
    display: inline-block
}

.omexo-post-btn a:hover {
    background-color: #222;
}

.blog-pagination li {
    display: inline-block;
}

.blog-pagination li a,
.blog-pagination li span {
    width: 55px;
    height: 55px;
    background-color: #f7f7f7;
    display: block;
    border: 1px solid #e6f0fa;
    border-radius: 5px;
    font-weight: 500;
    line-height: 55px;
    font-size: 16px;
    margin: 0 5px;
}

.blog-pagination li i {
    font-size: 20px;
}

.blog-pagination li a:hover,
.blog-pagination li span {
    border-color: #edc523;
    background-color: #edc523;
    color: #fff;
}

.feature-page.two {
    margin: 0 250px;
}

.entry-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0 15px;
}

.block-quote {
    background-color: #f5f5f5;
    border: 0;
    padding: 25px 30px 35px;
    margin: 35px 0;
}

.block-quote i {
    color: #dedede;
    font-size: 30px;
    font-style: italic;
    line-height: 40px;
}

.block-quote p {
    margin: 0 0 8px;
    font-style: italic;
    line-height: 1.8;
}

.block-quote h6 {
    color: #edc523;
    font-size: 18px;
    font-weight: 700;
}

.blog-post-thumb.two {
    margin: 0 30px 0 0;
}

.blog-post-thumb.two ul li {
    padding-bottom: 8px;
    line-height: 28px;
    font-weight: 400;
    font-size: 16px;
    color: #696969;
}

.entry-footer {
    margin-top: 15px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    position: relative;
}

.post-tags {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    padding-right: 20px;
}

.post-tag a {
    display: inline-block;
    background-color: #edc523;
    color: #fff;
    font-size: 13px;
    padding: 0px 12px;
    border-radius: 4px;
    margin-right: 0;
    margin-left: 8px;
}

.entry-footer ul {
    position: absolute;
    top: 26px;
    left: 56px;
}

.entry-footer ul li {
    display: inline-block;
    margin-right: 10px;
}

.entry-footer ul li a {
    display: inline-block;
    background-color: #edc523;
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 4px;
}

.comment-form input {
    height: 50px;
}

.comment-respond {
    margin-top: 60px;
}

.comment-respond h4 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.comment-respond p {
    margin-bottom: 28px;
}

.comment-respond form {
    font-size: 16px;
    line-height: 28px;
    color: #696969;
}

/*-------------------------------------------------------------------------------------
    Page Title Area
---------------------------------------------------------------------------------------*/

.page-banner-area {
    background-image: url("../images/breadcrumb.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0 35px;
    position: relative;
}

.page-banner-area:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(19 15 64 / 41%);
}

.banner-content h1 {
font-size: 50px;
    line-height: 60px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.banner-content p {
    color: #fff;
}

.banner-content a {
    color: #fff;
    padding-right: 10px;
}

.banner-content span {
    padding-right: 10px;
}
.top-heading h1{
    font-size: 27px;
    line-height: 43px;
   color: #fff;
}
.top-heading p{
    color: #fff;
    line-height: 15px;
}
/*-------------------------------------------------------------------------------------
    Instructor Profile Area
---------------------------------------------------------------------------------------*/

.inst-profile-area {
    padding: 100px 0;
}

.instructor-info {
    padding: 20px 20px 50px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.1);
    border-radius: 10px;
    text-align: center;
}

.instructor-img {
    background-image: url(../images/overlay-bg.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 50px 50px 30px;
}

.instructor-img img {
    border-radius: 4px;
}

.instructor-body h4 {
color: #222;
    font-size: 20px;
    font-weight: 700;
    line-height: 12px;
}

.ins-social-icons li {
    display: inline-block;
}

.ins-social-icons li a {
    display: block;
    text-align: center;
    width: 35px;
    height: 35px;
    font-size: 16px;
    line-height: 38px;
    margin: 0 3px;
    color: #fff;
    background-color: #edc523;
    border-radius: 4px;
}

.contact-info {
    padding: 30px 0 20px;
}

.contact-info li {
    margin: 0 30px;
    font-size: 16px;
    line-height: 22px;
    padding: 10px 0;
    color: #696969;
}

.contact-info li i {
    color: #edc523;
    font-size: 14px;
    padding-right: 5px;
}

.contact-btn a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background-color: #edc523;
    padding: 12px 30px;
    border-radius: 4px;
}

.contact-btn a:hover {
    background-color: #222;
}

.inst-profile-area h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px
}

.inst-profile-area .course-title {
    line-height: normal;
    font-size: inherit
}

.inst-profile-area .category-btn a {
    margin-top: 0;
}

.about-instructor {
    padding: 20px;
}

.skill-rate {
    padding: 20px;
}

.skill-name {
    color: #696969;
    font-size: 16px;
    line-height: 28px;
}

.skill-level-text {
    color: #696969;
    font-size: 16px;
    line-height: 28px;
    float: right;
}

.progress {
    border-radius: 100px;
    height: 10px;
    background-color: #fca97c;
}

.progress-bar {
    background-color: #edc523;
}

.experience {
    padding: 20px 0 20px 20px;
}

.counter-single.three {
    margin: 0 10px 0 20px;
    padding: 25px 20px 20px 20px;
    background-color: #F7F7F7;
    border-radius: 10px;
}

.courses {
    padding: 35px 20px 0;
}

.ins-profile-counter {
    margin-bottom: 20px;
}

.category-btn.two a {
    margin: 32px 0 10px;
}

.instructor-details h4 {
    font-weight: 700;
}

/*-------------------------------------------------------------------------------------
    Contact Area
---------------------------------------------------------------------------------------*/

.contact-desc {
    margin: 0px 50px 40px 0
}

.contact-area h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
}

.contact-info-single {
    margin-bottom: 30px;
}

.contact-icon img {
    width: 45px;
}

.contact-icon {
    float: left;
    margin: 7px 20px 0 0;
	font-size: 50px;
	display: contents;
}

.contact-cont h3 {
    font-size: 22px;
    font-weight: 700;
}
.contact-cont a {
    color: #edc523;
    font-size: 25px;
}

.contact-form {
    padding: 50px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 15px rgba(51, 51, 51, 0.10);
    box-shadow: 0 0 15px rgba(51, 51, 51, 0.10);background: #fff;
}

.contact-form input {
    height: 55px;
    padding-left: 20px;
    margin-bottom: 20px;
}

.contact-form textarea {
    padding: 15px 0px 15px 20px;
    font-size: 16px;
    margin-bottom: 20px;
}

.submit-btn a {
    display: inline-block;
       padding: 13px 60px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff!important;
    background-color: #edc523;
    border-radius: 4px;
    margin-top: 15px;
}

.submit-btn a:hover {
    background-color: #222;
}

/*-------------------------------------------------------------------------------------
 cart Area
---------------------------------------------------------------------------------------*/



select.form-control {
    padding-right: 38px;
    background-position: center right 17px;
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNv…9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
    background-repeat: no-repeat;
    background-size: 9px 9px;
	height: 45px !important;
}
.button_coupan{
    border: none;
    background-color: #edc523;
    color: #fff;
}
.button_coupan:hover{
    
    background-color: #222;
}
.form-control:not(textarea) {
    height: 44px;
}
.form-control {
    padding: 0 18px 3px;
    border: 1px solid #dbe2e8;
    border-radius: 6px;
    background-color: #fff;
    color: #606975;
    font-family: "Maven Pro",Helvetica,Arial,sans-serif;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.shopping-cart,
.wishlist-table,
.order-table {
    margin-bottom: 20px
}

.shopping-cart .table,
.wishlist-table .table,
.order-table .table {
    margin-bottom: 0
}

.shopping-cart .btn,
.wishlist-table .btn,
.order-table .btn {
    margin: 0
}

.shopping-cart>table>thead>tr>th,
.shopping-cart>table>thead>tr>td,
.shopping-cart>table>tbody>tr>th,
.shopping-cart>table>tbody>tr>td,
.wishlist-table>table>thead>tr>th,
.wishlist-table>table>thead>tr>td,
.wishlist-table>table>tbody>tr>th,
.wishlist-table>table>tbody>tr>td,
.order-table>table>thead>tr>th,
.order-table>table>thead>tr>td,
.order-table>table>tbody>tr>th,
.order-table>table>tbody>tr>td {
    vertical-align: middle !important
}

.shopping-cart>table thead th,
.wishlist-table>table thead th,
.order-table>table thead th {
    padding-top: 17px;
    padding-bottom: 17px;
    border-width: 1px
}

.shopping-cart .remove-from-cart,
.wishlist-table .remove-from-cart,
.order-table .remove-from-cart {
    display: inline-block;
    color: #ff5252;
    font-size: 18px;
    line-height: 1;
    text-decoration: none
}

.shopping-cart .count-input,
.wishlist-table .count-input,
.order-table .count-input {
    display: inline-block;
    width: 100%;
    width: 86px
}
.count-input select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px);
    text-align: center;
    padding: 0;
}
.shopping-cart .product-item,
.wishlist-table .product-item,
.order-table .product-item {
    display: table;
    width: 100%;
    min-width: 150px;
    margin-top: 5px;
    margin-bottom: 3px
}

.shopping-cart .product-item .product-thumb,
.shopping-cart .product-item .product-info,
.wishlist-table .product-item .product-thumb,
.wishlist-table .product-item .product-info,
.order-table .product-item .product-thumb,
.order-table .product-item .product-info {
    display: table-cell;
    vertical-align: top
}

.shopping-cart .product-item .product-thumb,
.wishlist-table .product-item .product-thumb,
.order-table .product-item .product-thumb {
    width: 130px;
    padding-right: 20px
}

.shopping-cart .product-item .product-thumb>img,
.wishlist-table .product-item .product-thumb>img,
.order-table .product-item .product-thumb>img {
    display: block;
    width: 100%
}

@media screen and (max-width: 860px) {
    .shopping-cart .product-item .product-thumb,
    .wishlist-table .product-item .product-thumb,
    .order-table .product-item .product-thumb {
        display: none
    }
}

.shopping-cart .product-item .product-info span,
.wishlist-table .product-item .product-info span,
.order-table .product-item .product-info span {
    display: block;
    font-size: 13px
}

.shopping-cart .product-item .product-info span>em,
.wishlist-table .product-item .product-info span>em,
.order-table .product-item .product-info span>em {
    font-weight: 500;
    font-style: normal
}

.shopping-cart .product-item .product-title,
.wishlist-table .product-item .product-title,
.order-table .product-item .product-title {
    margin-bottom: 6px;
    padding-top: 5px;
    font-size: 16px;
    font-weight: 500
}

.shopping-cart .product-item .product-title>a,
.wishlist-table .product-item .product-title>a,
.order-table .product-item .product-title>a {
    transition: color .3s;
    color: #374250;
    line-height: 1.5;
    text-decoration: none
}

.shopping-cart .product-item .product-title>a:hover,
.wishlist-table .product-item .product-title>a:hover,
.order-table .product-item .product-title>a:hover {
    color: #0da9ef
}

.shopping-cart .product-item .product-title small,
.wishlist-table .product-item .product-title small,
.order-table .product-item .product-title small {
    display: inline;
    margin-left: 6px;
    font-weight: 500
}

.wishlist-table .product-item .product-thumb {
    display: table-cell !important
}

@media screen and (max-width: 576px) {
    .wishlist-table .product-item .product-thumb {
        display: none !important
    }
	.card {
    margin: 0 0px 16px 0;
    top: 20px;
}
}

.shopping-cart-footer {
    display: table;
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid #e1e7ec
}
.shopping-cart-footer .column.text-lg strong{
	font-size: 22px;
}
.shopping-cart-footer>.column {
    display: table-cell;
    padding: 5px 0;
    vertical-align: middle
}

.shopping-cart-footer>.column:last-child {
    text-align: right
}

.shopping-cart-footer>.column:last-child .btn {
    margin-right: 0;
    margin-left: 15px
   
}


@media (max-width: 768px) {
    .shopping-cart-footer>.column {
        display: block;
        width: 100%
    }
    .shopping-cart-footer>.column:last-child {
        text-align: center
    }
    .shopping-cart-footer>.column .btn {
        width: 100%;
        margin: 12px 0 !important
    }
	.card {
    margin: 0 0px 16px 0;
    top: 20px;
}
}

.coupon-form .form-control {
    display: inline-block;
    width: 100%;
    max-width: 235px;
    margin-right: 12px;
}

.form-control-sm:not(textarea) {
    height: 36px;}

/*-------------------------------------------------------------------------------------
    Footer Area
---------------------------------------------------------------------------------------*/
.footer-top-area {
    background: #1e1b18;
    padding: 150px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widget.logo {
    padding-right: 40px;
}

.footer-widget h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.footer-widget li {
    padding: 0 0 15px;
}

.footer-widget li a {
    display: block;
    color: #dedede;
    font-weight: 400;
}

.footer-widget li a:hover {
    color: #edc523;
}

.footer-widget.footer-cat li i {
    color: #edc523;
}

.footer-widget.logo img {
    max-width: 160px;
    margin-bottom: 20px;
}

.footer-widget.logo p {
    color: #dedede;
}

.footer-widget.logo img {
    max-width: 160px;
    margin-bottom: 20px;
}

.footer-widget.logo p,
.footer-bottom-area p {
    color: #dedede;
}

.footer-widget.logo h6 {
    color: #fff;
    font-weight: 700;
    margin: 25px 0 10px;
}

.footer-social-icons li {
    display: inline-block;
    padding-right: 15px;
}

.footer-social-icons li a,
.footer-widget.footer-contact li p {
    color: #fff;
}

.footer-social-icons li a:hover,
.recent-post-cont a:hover {
    color: #edc523;
}

.footer-post-single {
    overflow: hidden;
    margin-bottom: 20px;
}

.recent-post-thumb {
    float: left;
    width: 30%;
}

.recent-post-cont {
  

    padding: 0 20px 0 10px;
}

.recent-post-thumb img {
    border-radius: 5px;
}

.recent-post-cont a {
    display: block;
    color: #dedede;
    font-weight: 400;
}

.recent-post-cont span {
    color: #dedede;
    font-size: 13px;
}

.footer-widget.footer-contact li {
    color: #dedede;
    position: relative;
    padding-left: 35px;
    font-size: 15px;
    line-height: 25px;
}

.footer-widget.footer-contact li i {
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 6px;
    color: #edc523;
}

.footer-widget.footer-contact li i.fa.fa-map-marker {
    font-size: 30px;
}

.footer-widget.footer-contact li i.fa.fa-phone {
    font-size: 24px;
}

.footer-widget.footer-contact .info {
    margin-top: 10px;
}

.footer-bottom-area {
    background: #151311;
    padding: 20px 0;
}
.unsub-btn {
display: inline-block;
    background-color: #edc523;
    color: #000000;
    padding: 9.5px 15px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
}
.unsub-btn:hover {
    background-color: #222;
    color: #edc523;
}
.tag-buttons-container {
 /*   display: flex;*/
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 35px;
  }
  
  .tag-buttons {
    display: inline-flex;
    gap: 20px;
    padding: 0 20px;
    align-items: center;
    white-space: nowrap;
  }
  
  .tag-button {
    display: block;
    background-color: #8b8582;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    margin-top: 20px;
  }
  
  .tag-button:hover {
    background-color:#222;
  }
  
  .tag-button.active {
    
    color: white;
    background: #edc523;
  }
  
  .post {
    margin: 20px 0;
    padding: 10px;
  
  }
  .post-details{
    list-style: disc;
    margin-left: 16px;
    font-size: 16px;
    line-height: 26px;
    color: #696969;
  }
  .description-list{
    text-align: center;
    
  }
  .description-name{
    font-size: 34px;
  }
  
  #loadMoreButton {
    width: 120px;
    height: 40px;
    padding: 13px;
    line-height: 0px;
    background-color: white;
    border: 1px solid rgb(34, 34, 34);
    border-radius: 2px;
    font-weight: 400;
    cursor: pointer;
    margin: 0 auto;
  }
  
  #loadMoreButton:hover {
    background-color: #f0f0f0;
  }
  .pricing-table a {
    border: 0;
    color: #fff;
    background-color: #222;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 26px;
    letter-spacing: 1px;
    margin-top: 20px;
	display:inline-block;
}
.pricing-table a:hover {
    background-color: #edc523;
	color: #fff;
}
.register-btn
{
	margin-left:15px;
}
.related
{
	background:#f6f6f6;
	padding:50px;
	margin-bottom:0 !important
}

@media screen and (max-width:768px) {
    .caption-content li a{
        margin-bottom: 20px;
    }
    .hero-area {
        padding: 69px 0;
    }
    .client-logo {
        width: 94%;
        margin-left: 10px;
    }
    .client-details img{
        width: 100%;
    }
    .about-cont h4 {
        margin-top: 30px;
    }
    .about-cont h2{
        margin-right: 46px;
		color:#fff;
    }
    .category-area{
        padding: 0px 0px 40px;
    }
    .about-cont p{
        margin-right: 89px;
    }
    .category-section{
        width: 100%;
        margin-left: 0px;
    }
    .category-single{
        margin-bottom: 20px;
    }
    
    
}

.unsub-btn-1 {
	background-color: #edc523;
    display: inline-block;
    color: #000000;
    padding: 9.5px 15px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
}
.unsub-btn-1:hover {
    background-color: #000;
    color: #FF630E;
}
