.portal-page {
    padding: 50px 24px;
    background: #E4E4E4;
}

.portal-sidebar {
    border-radius: 20px;
    background: #FFF;
    padding: 30px;
}


.portal-sidebar .portal-sidebar-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #9B4036;
    margin-bottom: 10px;
}

.portal-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.portal-menu li {
    margin-bottom: 10px;
}

.portal-menu li a {
    display: flex;
    align-items: center;
    padding: 11px 15px;
    font-size: 16px;
    font-weight: 700;
    color: #0B2C39;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    gap: 20px;
}

.caret {
    position: relative;

    i {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        transition: transform 0.3s ease-in-out;
    }
}
.portal-menu li a svg path {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.portal-menu li a:hover {
   color: #9B4036;
}

.portal-dropdown .sub-menu {
    margin: 0;
    padding-left: 15px;
    list-style: none;
}

.portal-dropdown .sub-menu li a {
    font-size: 14px;
}

.portal-dropdown .sub-menu {
    display: none;
}
.portal-dropdown.active .sub-menu {
    display: block;
}

.portal-dropdown.active {
    background: rgba(155, 64, 54, 0.10);
    border-radius: 10px;
}

/*.portal-menu li a:hover svg path {*/
/*    fill: #FFF;*/
/*}*/

.sidebar-footer {
    padding-top: 10px;
    border-top: 1px solid #9B4036;
    margin-top: 90px;
}

.portal-content-header {
    border-radius: 10px;
    /*background: linear-gradient(270deg, #B75A35 0%, #E6AC3B 100%);*/
    background-color: #9B4036;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
}

form.search-form {
    display: flex;
    align-items: center;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.30);
    max-width: 305px;
}

@media(max-width: 1366px) {
    form.search-form {
        max-width: 230px;
    }
}

.search-field-wrapper {
    flex: 1;
}

.search-form label {
    margin-bottom: 0;
}

.search-submit {
    background: transparent;
    border: 0;
    padding: 10px 20px 10px 0;
    color: #9B4036;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}
input.search-field {
   background: transparent;
    border: 0;
    padding: 12px 20px;
    width: 100%;
}

input.search-field::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-size: 16px;
}


.portal-info-notification {
    display: flex;
    align-items: center;
    gap: 10px;
}

.portal-user-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(165, 76, 41, 0.50);
}

.portal-user-status.status-circle {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    justify-content: center;
}

.portal-user-info-box {
    display: flex;
    align-items: center;
    background-color: #9B4036;
    border-radius: 20px;
    justify-content: space-between;
    margin-bottom: 24px;
    background-image: url('../img/banner-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portal-user-info-box .porter-user-info-box-content {
    padding: 30px;
}

.porter-user-info-box-content .user-title {
    font-family: 'Manrope', sans-serif;
    color: #341C06;
    font-size: clamp(30px, 2.5vw, 50px);
    margin-bottom: 0;
}

.porter-user-info-box-content .user-subtitle {
    font-family: 'Manrope', sans-serif;
    color: #341C06;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 30px;
}

.porter-user-info-box-content .description {
    font-size: 17px;
    color: #341C06;
    margin: 0;
}

.portal-user-status.status-box, .user-dropdown-wrapper {
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    height: 54px;
    background: rgba(155, 64, 54, 0.50);
}

.portal-user-status.status-box span {
    display: block;
    font-size: 9px;
    font-weight: 400;
}

/*User Dropdown Menu*/

.user-dropdown-wrapper {
    position: relative;
    text-align: center;
}

.user-dropdown-toggle {
    padding: 10px 16px;
    font-size: 1rem;
    background: #00ffd5;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #111;
    font-weight: 500;
}

.user-dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    transform: translateY(-10px);
    list-style: none;
    background: #fff;
    padding: 0;
    margin: 10px 0 0;
    border-radius: 6px;
    width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.user-dropdown-menu li {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #000;
}

.user-dropdown-menu li:hover {
    background: #333;
    color: #fff;
}

.user-dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.user-dropdown-wrapper {
    padding: 0;
}

.dropdown-toggle {
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-toggle:hover {
    color: #fff;
}

 /*Info Box*/
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
    column-gap: 24px;
    row-gap: 24px;
    margin-bottom: 40px;
}

.info-box {
    background-color: #FEFCFC;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    transition: all 0.3s ease-in-out;
}

.info-box .info-box__title {
    font-family: 'Manrope', sans-serif;
    text-align: center;
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 700;
    margin-bottom: 0;
}

.info-box .info-box__icon {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 20px 150px 0 rgba(165, 76, 41, 0.20);
}

.info-box:hover {
    background-color: #9B4036;
}

.info-box:hover .info-box__title {
    color: #fff;
}

.services-section {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

/* Service Card Style */
.services-title {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 0;
    color: #000;
}

.services-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.services-boxes.column-3 {
    grid-template-columns: repeat(3, 1fr);
}


.services-boxes.column-2 {
    grid-template-columns: repeat(2, 1fr);
}

@media(max-width: 991px) {
    .services-boxes.column-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {
    .services-boxes.column-2, .services-boxes.column-3 {
        grid-template-columns: repeat(1, 1fr);
    }
}


.services-boxes .services-box {
    padding: 0;
}

.services-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

.services-box .portal-btn {
    display: block;
}

.service-box__container {
    display: flex;
    gap: 10px;

}

.service-box__container a {
    flex: 1;
    text-align: center;
}

.portal-service-widget-item .service-box {
    padding: 20px;
}

.service-box__image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.service-box__image > a {
    display: block;
    position: relative;
}

.service-box__image .video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #9B4036;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.service-box__image .video-icon i {
    margin-left: 3px;
}

.service-box__image img {
    width: 100%
}

.services-boxes .service-box__content {
    padding: 20px;
}

.service-box__title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    line-height: 1.5;
}

.service-box__title a {
    color: #000;
}

.service-box__meta {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.service-box__meta li {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color: #000;
}

.service-box__meta-icon img {
    width: 18px;
}

p.service-box__description {
    color: #603813;
    font-size: 18px;
}

.service-box__title a:hover {
    color: #9B4036;
}

/* Blog Style */
.blog-category-lists {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
}

.blog-category-lists li a {
    display: block;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.30);
    color: #0B2C39;
    border-radius: 10px;
}

.blog-category-lists li a.active, .blog-category-lists li a:hover {
    color: #9B4036;
}

.blog-item .service-box__title {
    margin-bottom: 10px;
}

.blog-item p {
    color: #9A9A9A;
}

.blog-item  p.author-meta {
    color: #603813;
    font-size: 18px;
}

.blog-item  .service-box__image {
    margin-bottom: 0;
}

a.read-more {
    text-transform: uppercase;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
}

.portal-btn {
    font-family: 'Manrope', sans-serif;
    display: inline-block;
    padding: 12px 30px;
    text-align: center;
    background-color: #627D7E;
    border: 1px solid #627D7E;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
    color: #fff;
}

.portal-btn.btn-secondary {
    background-color: #9B4036;
    border-color: #9B4036;
}

.portal-btn.btn-secondary:hover {
    background-color: transparent;
    color: #9B4036;
    border-color: #9B4036;
}

.portal-btn:hover {
    background-color: transparent;
    color: #627D7E;
    border-color: #627D7E;
}

a.portal-btn.btn-outline{
    background-color: transparent;
    color: #9B4036;
    border-color: rgba(155, 64, 54, 0.50);
}

a.portal-btn.btn-outline:hover {
    background-color: #9B4036;
    color: #fff;
    border-color: #9B4036;
}

a.portal-btn:hover {
    background-color: transparent;
    color: #627D7E;
}

/*Service List Widget*/
.portal-service-widgets .portal-service-widget-item:not(:last-child) {
    margin-bottom: 10px;
}

/*.portal-service-widget-item .service-box__content {*/
/*    background: #fff;*/
/*    padding: 20px;*/
/*    border-radius: 10px;*/
/*}*/

.portal-service-widget-item ul.service-box__meta {
    justify-content: unset;
    gap: 11px
}

.portal-service-widget-item .service-box__content h3.service-box__title {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.25px;
}

.portal-service-widget-item .service-box__content a.portal-btn {
    font-size: 16px;
    padding: 9px 20px;
}

.portal-widget-title {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #7D7D7D;
}

/*Widget Calendar Style*/

.calendar {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    background: #fff;
    width: 100%;
    border-radius: 15px;
    border: 1px solid #F5F5F5;
    padding: 20px;
    margin-bottom: 45px;
}

.cal-head {
    text-align: center;
    position: relative;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-head h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    background: #fff;
    padding: 0 25px;
    border-radius: 10px;
    margin-bottom: 0;
}

.cal-head #prev,
.cal-head #next {
    position: absolute;
    top: 10px;
    width: 40px;
    height: 40px;
    border: 0;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.cal-head #prev:hover,
.cal-head #next:hover,
.cal-head #prev:focus,
.cal-head #next:focus {
    opacity: 0.8;
    box-shadow: 3px 0px 3px #ccc;
}

.cal-head #prev:before,
.cal-head #next:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-color: #141414;
    border-width: 2px 2px 0 0;
}

.cal-head #prev {
    left: 20px;
    transform: translate(-50%, -50%) rotate(-135deg);
}

.cal-head #next {
    right: -20px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.days, .dates {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    row-gap: 7px;
}

.days li, .dates li {
    width: calc(100% / 7);
    text-align: center;
    font-size: 18px;
}

.days {
    margin-bottom: 15px;
    gap: 0;
}

.days li {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #C4C4C4;
}


.dates li span {
    width: 100%;
    height: 46px;
    max-width: 44px;
    display: inline-flex;
    border-radius: 8px;
    background: #F5F5F5;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
}


@media(max-width: 1600px) {
    .dates li span {
        max-width: 36px;
    }
}

@media(max-width: 1440px) {
    .dates li span {
        max-width: 32px;
    }
}

.dates li span:hover {
    color: #9B4036;
}

.dates li:not(.old):not(.today) span:hover {
    border-radius: 7.245px;
    border: 1.811px solid #9B4036;
    background: rgba(165, 76, 41, 0.16);
    color: #9B4036;
}

.dates li.old span {
    background: transparent;
   color: #C4C4C4;;
}

.dates li.today span {
    background: #9B4036;
    color: #fff;
}

.button-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.button-container button {
    width: 50%;
    padding: 12px 20px;
    border: 0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    background-color: #9B4036;
    color: #fff;
}

.button-container button.btn-gray {
    background-color: #D9D9D9;
    color: #000;
}

@media(max-width: 1366px) {
    .button-container {
        flex-direction: column;
        gap: 10px;
    }

    .button-container button {
        width: 100%;
    }
}


/*Tabs Style*/
.nav-pills {
    gap: 20px;
    margin-bottom: 24px;
}
.nav-pills .nav-link {
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    background: #fff;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-pills .nav-link.active {
    background: #9B4036;
    color: #fff;
}

.nav-pills .nav-link.active svg path {
    fill: #fff;
}

.col-to-action-area {
    margin-bottom: 40px;
}

.call-to-action {
    text-align: center;
}

.call-to-action h2.section-title {
    font-size: 36px;
    color: #0B2C39;
}

.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 50px;
    font-weight: 800;
}

.request-form-wrapper {
    display: flex;
    gap: 24px;
    margin-bottom: 50px;
}

.request-form-box {
    border-radius: 20px;
    background-color: #fff;
    padding: 20px;
    max-width: 50%;
    flex: 1 0 0;
    text-align: center;
}

.request-form-box p {
    margin-bottom: 35px;
}

h2.request-form-title {
    color: #000;
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
}

.form-group input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid  #8C8C8C;
    background: #FFF;
    height: 50px;
    padding: 10px;
    margin-bottom: 20px;
}

/* Courses Details Page */
.courses-banner-wrapper {
    background: #fff;
    border-radius: 10px;
}



.courses-banner {
    position: relative;
    padding: 50px;
    background-color: #9B4036;
    border-radius: inherit;
    background-image: url('../img/banner-image2.png');
    z-index: 1;
}

.courses-banner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(83, 34, 29, 0.60);
    border-radius: inherit;
    z-index: 1;
}

.courses-banner__title {
    font-family: 'Manrope', sans-serif;
    color: #fff;
    font-size: 60px;
    position: relative;
    z-index: 2;
}

.courses-details-content {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.courses-details-info-title {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 0;
    color: #000;
    text-transform: uppercase;
}

.courses-features {
    background: #fff;
    margin-top: 24px;
    border-radius: 10px;
    padding: 20px;
}

.courses-features h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
}

.courses-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.courses-features ul li {
    position: relative;
    padding-left: 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 36px;
}

.courses-features ul li:before {
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    background: #9B4036;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.on-demand-related-section {
    margin-top: 50px;
}

@media(max-width: 1600px) {
    .portal-sidebar {
        padding: 30px 16px;
    }

    .portal-menu li a {
        gap: 12px;
    }
}

@media(max-width: 1366px) {
    /*.portal-menu li a {*/
    /*    font-size: 16px;*/
    /*    padding: 20px 16px;*/
    /*}*/

    .portal-service-widget-item .service-box__content h3.service-box__title {
        font-size: 18px;
    }
}

@media(max-width: 1280px) {
    .days li {
        font-size: 16px;
    }

    .dates li span {
        max-width: 36px;
    }

     .dates {
        gap: 6px;
    }
}