:root {
    --primary-color: #00196e;
    --secondary-color: #ffad1d;
    --border-color: #e1e1de;
}

.j_fs-28 {
    font-size: 26px;
}

.j_btn-explore.download {
    margin-top: 42px;
}

/* breadcumb */

.breadcumb__global {
    border-bottom: 1px solid var(--border-color);
}

.applying__breadcumb {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 14px 0;
    margin-top: 0;
    margin-bottom: 0;
}

.applying__breadcumb li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--primary-color);
}

.applying__breadcumb li a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #8a8a8a;
    transition: all 0.3s linear;
}

.applying__breadcumb li a:hover {
    color: var(--primary-color);
    transition: all 0.3s linear;
}

/* sidebar */

.sidebar {
    padding: 80px 36px 0 0;
    border-right: 1px solid var(--border-color);
}

.sidebar .sidebar__sections {
    list-style: none;
    padding-left: 0;
    /* min-height: 372px; */
    /* border-bottom: 1px solid var(--border-color); */
}

.sidebar .sidebar__sections--item a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #8a8a8a;
    margin-bottom: 14px;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s linear;
}

.sidebar .sidebar__sections--item a.active,
.sidebar .sidebar__sections--item a:hover {
    color: var(--primary-color);
    transition: all 0.3s linear;
}

.sidebar .sidebar__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.sidebar__buttons .sidebar__buttons--title {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    color: #8a8a8a;
    margin: 0;
}

.sidebar__buttons .sidebar__buttons--link {
    padding: 8px 0;
    width: 100%;
    border: 1px solid var(--border-color);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    transition: all 0.3s linear;
}

.sidebar__buttons .sidebar__buttons--link:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transition: all 0.3s linear;
}

/* content */

/* .areas .content {
    position: relative;
    overflow: hidden;
}

.areas .content.toggled {
    overflow: visible;
}

.areas .content.toggled::after {
    display: none;
}

.areas .content::after {
    content: '';
    display: block;
    width: 100%;
    height: 150px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 70%,
        rgba(255, 255, 255, 1) 100%
    );
    position: absolute;
    bottom: 0;
    left: 0;
}

.areas .toggle.j_btn-explore {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    color: #8a8a8a;
}

.areas .toggle.j_btn-explore::after {
    border-color: #8a8a8a;
    top: 7px;
    transform: rotate(135deg);
} */

.content__container {
    padding: 80px 0 40px 50px;
}

.content__container .content-title,
.content__container h3 {
    font-size: 56px;
    line-height: 60px;
    font-weight: 400;
    max-width: 80%;
    margin: 0;
    margin-bottom: 36px;
}

.content__container .content-sub-title,
.content__container h4 {
    font-size: 32px;
    line-height: 36px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 36px 0 16px;
}

.content__container .content p {
    margin-bottom: 10px;
}

.content__container .degrees ul {
    padding-left: 25px;
}

.content__container ul li {
    padding-bottom: 8px;
}

.content__container .content {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #222222;
}

.content__container .content img {
    width: 100%;
    height: auto;
    margin: 16px 0;
}

.areas,
.double {
    padding-bottom: 80px;
}

/* tabs */

.tab_content--box {
    max-height: 0px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.tab_content--box.active {
    margin: 40px 0px;
    max-height: 1000px;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
}

.tab_content--box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tab_content--box-content {
    display: flex;
    align-items: flex-start;
    /* gap: 32px; */
}

.tab_content--box-img {
    margin-left: 32px;
}

.tab_content--box-header .heading {
    font-size: 32px;
    line-height: 36px;
    font-weight: 400;
    color: var(--primary-color);
}

.tab_content--box-header .close {
    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.tab_content--box-img img {
    width: 224px;
    height: 224px;
    object-fit: cover;
}

.tab_content--box-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #222;
}

.tab_content--box-text p {
    margin-bottom: 0;
}

.tab_content--box-text a,
.tab_content--box-text .text {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding: 12px 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    margin-top: 32px;
    display: block;
    width: fit-content;
    transition: all 0.3s linear;
}

.tab_content--box-text a:hover,
.tab_content--box-text .text:hover {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    transition: all 0.3s linear;
}

.readmore {
    display: none;
}

@media screen and (max-width: 991px) {
    section.amount {
        margin-top: 0;
    }

    .tab_content--box-img img {
        width: 100%;
        height: auto;
    }

    .tab_content--box-img {
        margin-top: 36px;
        margin-left: 0;
    }
}
