/* Base CSS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px;
    color: #000000;
    font-weight: 700;
}

body {
    color: #000000;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    background: #F6F9F9;
}

.selector-for-some-widget {
    box-sizing: content-box;
}

a:hover {
    text-decoration: none
}


/*---------------------- Header area start ----------------------*/

.menu-close {
    left: 12px;
    position: absolute;
    top: 10px;
    line-height: 1;
    font-size: 15px;
    color: #2f2f2f;
    background: #fff;
    border-radius: 3px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 10px;
    transition: .3s;
    cursor: pointer;
}

.menu-close:hover {
    background-color: #008080;
    color: #1C1C1C;
}

.offcanvas-area {
    position: fixed;
    right: -100%;
    height: 100%;
    width: 300px;
    background: #101010;
    z-index: 6;
    padding-top: 35px;
    -webkit-transition: .4s;
    transition: .4s;
    visibility: hidden;
    top: 0;
}

.offcanvas-area.active {
    right: 0;
    visibility: visible;
}

.offcanvas-area .main-menu ul li a {
    font-size: 17px;
    color: #FCFCFC;
    display: block;
    text-decoration: none;
    line-height: 1.1;
    padding: 14px 23px;
    border-bottom: 1px solid #ffffff59;
    text-transform: uppercase;
    transition: .3s
}

.offcanvas-area .main-menu ul li:first-child a {
    border-top: 1px solid #ffffff59;
}

.offcanvas-area .main-menu ul li a:hover, .offcanvas-area .main-menu ul li a[aria-expanded="true"] {
    color: #008884;
}

.offcanvas-menu .main-menu ul {
    display: block;
    padding-top: 60px;
    padding-left: 0;
    margin-bottom: 65px;
}

.offcanvas-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 5;
}

.offcanvas-overlay.active {
    opacity: .4;
    visibility: visible;
}

.menu-open {
    font-size: 21px;
    color: #101010;
    display: none;
    cursor: pointer;
    position: relative;
    top: 0px;
    margin-left: 18px;
    margin-right: -6px;
    line-height: 1;
    transition: .3s;
}

.menu-open:hover {
    color: #008080;
}

.sidebar-close {
    position: absolute;
    top: 8px;
    line-height: 1;
    font-size: 15px;
    color: #2f2f2f;
    background: #fff;
    border-radius: 3px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 10px;
    transition: .3s;
    cursor: pointer;
    display: none;
}

.sidebar-close:hover {
    background-color: #008884;
    color: #1C1C1C;
}

.sidebar-open {
    font-size: 22px;
    color: #1C1C1C;
    line-height: 1;
    cursor: pointer;
    display: none;
    transition: .3s;
    margin-left: 8px;
}

.sidebar-open:hover {
    color: #008080;
}

.header {
    background-color: #fff;
    padding: 18px 0;
    padding-right: 35px;
    padding-left: 80px;
    border-bottom: 1px solid #d9d9d99d;
}

.header-nav li a {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #828282;
    transition: .3s;
    text-decoration: none;
    position: relative;
    margin: 0 16px;
}

.header-nav ul {
    display: flex;
    align-items: center;
}

.header-nav li a::after {
    position: absolute;
    bottom: -19px;
    left: 0;
    content: '';
    background: #008884;
    height: 3px;
    width: 100%;
    border-bottom: 10px;
    opacity: 0;
    transition: .3s;
}

.header-nav li a:hover {
    color: #008884;
}

.header-nav li a:hover::after {
    opacity: 1;
}

.header-nav li a.active::after {
    opacity: 1;
}

.header-btns {
    position: relative;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.header-btns a {
    font-size: 20px;
    line-height: 1;
    color: #232325;
    margin-left: 26px;
    transition: .3s;
}

.header-btns a:hover {
    color: #008884;
}

/*---------------------- Header area end ----------------------*/


/*---------------------- Sidebar area start ----------------------*/

.sidebar {
    background: #333333;
    border-right: 1px solid #E0E0E0;
    border-radius: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 225px;
    max-height: 100vh;
    overflow-y: auto;
    padding: 25px 23px;
    height: 100vh;
}

.sidebar-profile {
    text-align: center;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 20px;
}

.sidebar-profile h5 {
    font-size: 21px;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0;
}

.sidebar-profile-thumb {
    color: #fff;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 15px;
}

.sidebar-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav ul li a:hover {
    color: #FF5F5F;
}

.sidebar-nav ul li a {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    margin-top: 40px;
    transition: .3s;
}

.sidebar-nav ul li a span {
    font-size: 20px;
    flex: 0 0 auto;
    min-width: 22px;
    margin-right: 15px;
}

.sidebar-footer h5 {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    color: #FFFFFF;
    text-align: center;
    margin: 0 -9px;
}

.sidebar-logo {
    max-width: 98px;
    margin: 0 auto;
    margin-bottom: 2px;
}

/*---------------------- Sidebar area end ----------------------*/


/*---------------------- Main area start ----------------------*/
.main {
    padding-left: 224px;
    min-height: 100vh;
}

.main-wrapper {
    padding: 25px 10px;
}

.section-title h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.1;
    text-transform: uppercase;
}

.my-courses-item {
    background: #FFFFFF;
    box-shadow: 0px 8px 8px rgba(50, 50, 71, 0.08), 0px 8px 16px rgba(50, 50, 71, 0.06);
    border-radius: 20px;
    transition: .3s;
    padding: 18px 26px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    border: 2px solid transparent;
}

h5 {
    font-size: 21px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 14px;
}

.progress-chart {
    text-align: center;
}

.my-courses-item:hover {
    border-color: #008884;
}

.my-courses-thumb {
    background: #008080;
    border-radius: 100px;
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    margin-right: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
}

.my-courses-content p {
    margin: 0;
    line-height: 1;
}


.my-courses-item.red:hover {
    border-color: #FF5F5F !important;
}

.my-courses-item.light-red:hover {
    border-color: #FFB7B7 !important;
}

.my-courses-item.red .my-courses-thumb {
    background: #FF5F5F;
}

.my-courses-item.light-red .my-courses-thumb {
    background: #FFB7B7;
}

.progress-chart-box {
    background: #FFFFFF;
    box-shadow: 0px 8px 16px rgba(50, 50, 71, 0.06);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
}

.progress-chart-top {
    display: flex;
    align-items: flex-start;
}

.progress-chart-top p {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    color: #1C1C1C;
    padding-right: 10px;
    margin-bottom: 12px;
    padding-left: 12px;
    padding-top: 6px;
}

.progress-chart-top p span {
    background: linear-gradient(180deg, #008884 15.3%, #8E92BC 96.65%);
    height: 6px;
    width: 6px;
    border-radius: 50px;
    flex: 0 0 auto;
    margin-right: 7px;
}

.announcement-item-thumb {
    width: 64px;
    height: 64px;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid #478DA0;
    margin-right: 15px;
    flex: 0 0 auto;
}

.announcement-item-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.announcement-item {
    background: #FFFFFF;
    box-shadow: 0px 8px 8px rgba(50, 50, 71, 0.08), 0px 8px 16px rgba(50, 50, 71, 0.06);
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 18px 16px;
    margin-bottom: 14px;
    transition: .3s;
}

.announcement-item-content h6 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: #11263C;
    margin-bottom: 6px;
}

.announcement-item-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0;
}

.op-5 {
    opacity: .5 !important;
}

.apply-card {
    background: #DEEFEF;
    border-radius: 10px;
    height: 100%;
    min-height: 179px;
    padding: 20px;
    padding-top: 1px;
    width: 251px;
    flex-shrink: 0;
}

.apply-card-content h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 16px;
    text-transform: inherit;
}

.apply-card-content p {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    letter-spacing: -0.02em;
    color: #999999;
    margin-bottom: 6px;
}

.apply-card-icon {
    background: #20B2AA;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    height: 73px;
    width: 75px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    margin: 0 auto;
    margin-bottom: 15px;
    margin-top: -42px;
}

.apply-btns a {
    background: #FF5F5F;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    padding: 6px 10px;
    transition: .3s;
    margin-top: 10px;
}

.apply-btns a img {
    max-width: 18px;
    margin-right: 7px;
}

.apply-btns a:hover {
    background: #008080;
    color: #fff;
}

.overview-box {
    background: #FFFFFF;
    box-shadow: 0px 8px 16px rgba(50, 50, 71, 0.06);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 21px;
}

.overview-card {
    width: 375px;
    height: auto;
    background: #008884;
    border-radius: 10px;
    padding: 20px;
    list-style: none;
    flex-shrink: 0;
}

.overview-card-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffffff7a;
    padding-bottom: 12px;
}

.overview-card-body li {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    margin-bottom: 9px;
}

.overview-card-body li span {
    min-width: 30px;
    margin-right: 7px;
}

.overview-card-body li:last-child {
    margin: 0;
}

.overview-cards {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 7px;
    margin-bottom: 50px; 
}

.apply-cards {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-top: 42px;
    padding-bottom: 5px; 
}
 

.qa-list {
    background: #FFFFFF;
    box-shadow: 0px 8px 8px rgba(50, 50, 71, 0.08), 0px 8px 16px rgba(50, 50, 71, 0.06);
    border-radius: 20px;
    padding: 14px 12px;
    margin-bottom: 20px;
}

.qa-list-item {
    border-bottom: 1px solid #E0E0E0;
    padding: 6px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.qa-list-item-content h6 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 3px;
}

.qa-list-item-content p {
    letter-spacing: -0.02em;
    font-size: 16px;
    margin: 0;
    line-height: 1.3;
}

.text-sm {
    font-weight: 500;
    font-size: 12px;
    padding-top: 5px;
    margin-left: 4px;
}

.invoice-item {
    background: #FFFFFF;
    box-shadow: 0px 8px 8px rgba(50, 50, 71, 0.08), 0px 8px 16px rgba(50, 50, 71, 0.06);
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    margin-bottom: 12px;
}

.invoice-content h6 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.invoice-content b {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #11263C;
}

.invoice-content small {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    margin-left: 4px;
}

.invoice-content {
    width: 100%;
}

.invoice-icon {
    flex: 0 0 auto;
    margin-right: 9px;
}

/*---------------------- Main area end ----------------------*/