.flex-content.sticky-sidebar {
    padding: 80px 0 0 0;
    overflow: clip;
}

.flex-content.sticky-sidebar .sidebar {
    position: sticky;
    top: 80px;
}
body.logged-in .flex-content.sticky-sidebar .sidebar {
    /* top: 112px; */
}

.flex-content.sticky-sidebar .sidebar .nav {
    --bs-nav-link-color: var(--medium-gray);
    --bs-nav-link-font-size: 22px;
    --bs-nav-link-font-weight: 500;
    --bs-nav-link-padding-x: 0;
    padding-bottom: 150%;
}
.flex-content.sticky-sidebar .sidebar .nav-link.active {
    color: var(--navy-blue);
    font-size: 36px;
    font-weight: 800;
}

.flex-content.sticky-sidebar .card {
    --bs-card-bg: #FFF;
    --bs-card-border-width: 0;
    --bs-card-border-radius: 40px 0 40px 0;
    --bs-card-inner-border-radius: 40px;
    --bs-card-spacer-y: 40px;
    --bs-card-spacer-x: 40px;
}
.flex-content.sticky-sidebar .card p {
	font-size: 16px;
	line-height: 26px;
	color: #3c5266;
}
.flex-content.sticky-sidebar .card h3 {
	font-size: 30px !important;
	font-weight: 700;
	color: #3c5266;
}
.flex-content.sticky-sidebar .card-img-top {
    border-top-right-radius: 0;
}
.flex-content.sticky-sidebar .card .h2 {
    color: var(--dark-gray);
}

@media (max-width: 992px) {
	.flex-content.sticky-sidebar .sidebar .nav-link.active {
    font-size: 30px;
    }
	.flex-content.sticky-sidebar .card h3 {
		font-size: 24px !important;
	}
}

@media (max-width: 767px) {
    .sidebar {
        display: none;
    }
	.flex-content.sticky-sidebar {
		padding: 60px 0 0 0;
	}
}