:root {
    --cardColorGray: rgb(237, 237, 237);
    --cardColor: rgb(222, 242, 255);
}

@font-face {
    font-family: "Rubik";
    src: url(Rubik-VariableFont_wght.ttf);
}

@font-face {
    font-family: "Space Grotesk";
    src: url(SpaceGrotesk-VariableFont_wght.ttf);
}

html {
    height: 100vh;
    scroll-behavior: smooth;
}

body {
    font-family: "Rubik";
    text-align: center;
    margin: 0px;
    overscroll-behavior-y: none;
    height: 100vh;
    box-sizing: border-box;
}

.header {
    position: fixed;
    width: 100%;
    height: 65px;
    background-color: rgb(2, 1, 77);
    top: 0px;
    left: 0px;
    color: white;
    box-shadow: 0px 5px 6px #888888;
    z-index: 5;
    user-select: none;
}

.headerLinks {
    display: flex;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.headerLink {
    margin: 0px 5px;
    cursor: pointer;
    transition-duration: 250ms;
    padding: 10px;
    border-radius: 15px;
    font-size: 17px;
    display: block;
    color: white;
    text-decoration: none;
}

.headerLink:hover {
    background-color: rgb(80, 79, 141);
}

.headerLinks img {
    margin: 0px 5px;
    cursor: pointer;
    transition-duration: 250ms;
    padding: 10px;
    border-radius: 15px;
    height: 17px;
    z-index: 20;
}

.headerLinks img:hover {
    background-color: rgb(80, 79, 141);
}

.headerLink.activeLink {
    background-color: rgb(217, 55, 60);
}

.logo {
    height: 55px;
}

.navButton {
    width: 500px;
    height: 65px;
    border: 3px solid black;
    border-radius: 20px;
    font-family: "Rubik";
    color: black;
    background-color: rgb(253, 170, 170);
    font-size: 20px;
    transition-duration: 250ms;
    cursor: pointer;
    margin: 20px;
    max-width: 90%;
}

.navButton:hover {
    scale: 105%;
    background-color: white;
    color: red;
    border: 3px solid red;
}

.logoSection {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardContainer {
    width: 90%;
    position: relative;
    left: 5%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.excessCard {
    width: 300px;
    height: 400px;
    border: 3px solid black;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 0px;
    box-sizing: border-box;
    margin: 20px;
    background-color: var(--cardColor);
}

.excessCard p {
    display: inline-block;
    width: 100%;
    margin: 0px;
}

.cardImg {
    max-height: 65%;
    border-radius: 20px;
}

.itemName {
    font-size: 32px;
}

.homePageImage {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Space Grotesk";
    font-weight: 600;
    user-select: none;
}

.image {
    width: 100%;
}

.image img {
    width: 100%;
    filter: brightness(50%);
    border-bottom: 3px solid black;
}

.text {
    position: absolute;
    color: white;
    font-size: 70px;
}

.filterButton {
    border-radius: 20px;
    border: none;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: "Rubik";
    background-color: rgb(216, 216, 216);
    transition-duration: 250ms;
    cursor: pointer;
    padding: 0px 20px;
}

.filterButton p {
    margin-left: 10px;
    color: black;
}

.filterButton:hover {
    background-color: rgb(188, 188, 188);
}

.tutorialCard {
    width: 700px;
    height: 275px;
    background-color: var(--cardColor);
    border: 3px solid black;
    border-radius: 30px;
    position: relative;
    margin: 20px;
}

.tutorialImg {
    width: 350px; 
    height: 196px;
    border-radius: 25px;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    max-width: calc(100% - 350px);
}

.tutorialText {
    height: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    width: 325px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 20px;
    box-sizing: border-box;
}

.tutorialText p {
    width: 100%;
    font-size: 16px;
    margin: 0px;
}

.tutorialText h1 {
    width: 100%;
    margin: 0px;
}

.move-down {
    transform: translateY(6px);
}

.icon-fill {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

#filterPopup {
    z-index: 15;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    left: 0px;
    top: 0px;
    display: none;
}

.filterCard {
    width: 500px;
    height: 550px;
    background-color: var(--cardColorGray);
    border: 3px solid black;
    border-radius: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkboxContainer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.closeFilter {
    position: absolute;
    top: 20px;
    width: 40px;
    height: 40px;
    font-size: 28px;
    border-radius: 100%;
    border: 3px solid red;
    color: red;
    background-color: white;
    transition-duration: 250ms;
    right: 20px;
    rotate: 0deg;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.closeFilter:hover {
    color: white;
    background-color: red;
    rotate: 90deg;
}

.applyFilters {
    position: absolute;
    bottom: 20px;
    width: 175px;
    height: 45px;
    font-size: 20px;
    border-radius: 25px;
    border: 3px solid green;
    color: green;
    background-color: white;
    transition-duration: 250ms;
    left: calc((100% - 200px) / 2);
    font-family: "Rubik";
}

.applyFilters:hover {
    color: white;
    background-color: green;
}

.filterCheckbox {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 17px;
    margin: 10px 10px;
    padding-top: 3px;

}

.filterCheckbox input {
    display: none;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 23px;
    width: 23px;
    background-color: #eee;
    border: 2px solid black;
    border-radius: 10px;
  }

.filterCheckbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.filterCard label input:checked ~ .checkmark {
    background-color: rgb(217, 55, 60);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.filterCheckbox input:checked ~ .checkmark:after {
    display: block;
}

.filterCheckbox .checkmark:after {
    left: 8px;
    top: 5px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.restrictedVideo {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: default;
}

.restrictedVideoPopup {
    top: 40px;
    right: 15px;
    width: 200px;
    height: 70px;
    background-color: white;
    position: absolute;
    box-shadow: -1px 1px 10px 3px rgb(0, 0, 0);
    border-radius: 20px;
    padding: 15px;
    display: none;
    font-size: 15px;
}

.infoPopup:hover .restrictedVideoPopup {
    display: block;
}

.pageContainer {
    position: relative;
    min-height: 100vh;
    padding-top: 65px;
    box-sizing: border-box;
}
.contentWrap {
    padding-bottom: 110px;
}

.footer {
    width: 100%;
    min-height: 80px;
    background-color: rgb(2, 1, 77);
    padding: 15px 50px;
    box-sizing: border-box;
    color: white;
    text-align: left;
    bottom: 0px;
    position: absolute;
    left: 0px;
}

.toolCard {
    width: 750px;
    height: 350px;
    border: 3px solid black;
    border-radius: 40px;
    position: relative;
    margin: 15px;
    box-sizing: border-box;
}

.toolCard img {
    position: absolute;
    right: 40px;
    height: 80%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 300px;
}

.toolText {
    height: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 40px;
    box-sizing: border-box;
}

.toolText p {
    width: 100%;
    font-size: 16px;
    margin: 0px;
}

.toolText h1 {
    width: 100%;
    margin: 0px;
}

.toolButton {
    width: 80%;
    height: 40px;
    font-family: "Rubik";
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    transition-duration: 250ms;
    border-radius: 50px;
    color: black;
    text-decoration: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 10px;
}

.toolButton:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

#menu {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: none;
}

.blur {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
    animation-name: fadeIn;
    animation-duration: 250ms;
}

#menuContent {
    background-color: rgb(2, 1, 77);
    height: 100%;
    position: absolute;
    width: 400px;
    right: 0px;
    max-width: 90%;
    animation-name: slide;
    animation-duration: 250ms;
    animation-timing-function: ease-out;
    box-shadow: -5px 0px 30px #000000;
    text-align: left;
    padding: 0px 35px;
    box-sizing: border-box;
    overflow-y: scroll;
    overscroll-behavior: contain;
}

.slideOut {
    right: -400px;
    animation-name: slideOut !important;
    display: none;
}

.fadeOut .blur {
    opacity: 0;
    animation-name: fadeOut !important;
}

@keyframes slide {
    0% {right: -400px;}
    100% {right: 0px;}
}

@keyframes slideOut {
    0% {right: 0px; display: block;}
    100% {right: -400px; display: none;}
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 0.7;}
}

@keyframes fadeOut {
    0% {opacity: 0.7;}
    100% {opacity: 0;}
}

.menuSection {
    width: 100%;
    display: flex;
    align-items: center;
}

.menuSection p {
    margin: 0px 10px;
}

.menuSection hr {
    height: 2px;
    background-color: white;
    border: none;
}

.menuLink {
    cursor: pointer;
    transition-duration: 250ms;
    padding: 10px;
    border-radius: 15px;
    font-size: 17px;
}

.smallScreenLinks {
    display: none;
}

.menuLink:hover {
    background-color: rgb(80, 79, 141);
}

@media screen and (max-width: 730px) {
    .headerLink {
        display: none;
    }
    .smallScreenLinks {
        display: block;
    }
}

.centerPage {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    flex-wrap: wrap;
    height: fit-content;
}

.programContainer {
    text-align: left;
    width: 700px;
    max-width: 90%;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

.program {
    width: 100%;
    height: fit-content;
    position: relative;
    padding-left: 20px;
}

.learnMoreButton {
    width: 200px;
    height: 30px;
    border: 3px solid rgb(2, 1, 77);
    padding: 15px;
    border-radius: 20px;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: calc(50% - 15px);
    background-color: rgb(2, 1, 77);
    color: white;
    transition-duration: 250ms;
    cursor: pointer;
    user-select: none;
}

.learnMoreButton:hover {
    color: rgb(2, 1, 77);
    background-color: white;
    transform: translateX(15px);
}

.learnMoreButton span{
    margin-left: 10px;
}

.learnMoreButton2 {
    width: 200px;
    height: 30px;
    border: 3px solid rgb(217, 55, 60);
    padding: 15px;
    border-radius: 20px;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(217, 55, 60);
    color: white;
    transition-duration: 250ms;
    cursor: pointer;
    user-select: none;
    margin-top: 10px;
}

.learnMoreButton2:hover {
    color: rgb(217, 55, 60);
    background-color: white;
    transform: translateX(15px);
}

.learnMoreButton2 span{
    margin-left: 10px;
}

.learnMoreButton3 {
    width: 200px;
    height: 30px;
    border: 3px solid rgb(217, 55, 60);
    padding: 15px;
    border-radius: 20px;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: calc(50% - 15px);
    background-color: rgb(217, 55, 60);
    color: white;
    transition-duration: 250ms;
    cursor: pointer;
    user-select: none;
}

.learnMoreButton3:hover {
    color: rgb(217, 55, 60);
    background-color: white;
    transform: translateX(15px);
}

.learnMoreButton3 span{
    margin-left: 10px;
}

ul {
    text-align: center;
    list-style-position: inside;
    padding: 0;
}

li {
    margin: 10px;
}

.thinPage {
    width: 800px;
    max-width: 90%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.anchorLink {
    font-family: "Rubik";
    font-size: 17px;
    background-color: rgba(0, 0, 0, 0.1);
    transition-duration: 250ms;
    border-radius: 50px;
    color: black;
    text-decoration: none;
    position: relative;
    margin: 5px 10px;
    padding: 7px 20px;
    display: inline;
}

.anchorLink:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.anchorContainer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#scrollToTop {
    background-color: rgb(2, 1, 77);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
    border: 3px solid white;
    animation-name: buttonFadeIn;
    animation-duration: 150ms;
}

@keyframes buttonFadeIn {
    0% {opacity: 0;}
    100% {opacity: 0.7;}
}

.arrow {
    border: none;
    border-top: 3px solid white;
    border-right: 3px solid white;
    width: 15px;
    height: 15px;
    rotate: -45deg;
    margin-top: 8px;
    margin-left: 7px;
}

.schedule {
    width: fit-content;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.peopleOpenTo {
    height: 100%;
    flex: 1;
}

table, th, td {
    border: 2px solid black;
    border-collapse: collapse;
    vertical-align: top;
    background-color: white;
}

.scheduleTable {
    position: relative;
    width: 875px;
    margin: 15px;
}

.scheduleTable h3 {
    margin: 0;
}

.scheduleTable td {
    padding: 15px 15px 0 15px;
    box-sizing: border-box;
    width: 20%;
    font-size: 15px;
}

#tableButton {
    background-color: rgb(2, 1, 77);
    color: white;
    cursor: pointer;
    padding: 12px 18px;
    width: 905px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    max-width: 90%;
    font-family: "Rubik";
    border-radius: 15px;
    margin-top: 10px;
}

.collapsibleActive, #tableButton:hover {
    background-color: rgb(23, 22, 125) !important;
}

.collapsibleActiveBorder {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

#tableButton p {
    color: white;
    font-weight: bold;
    float: right;
    margin: 0;
    margin-left: 5px;
}

#collapsibleTable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
    width: 905px;
    max-width: 90%;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow-x: scroll;
}

.groupText {
    margin: 5px 0px;
}

.homeSectionContainer {
    width: 700px;
    max-width: 90%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.homeSectionContainerText {
    flex: 1;
    padding: 50px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.showcaseSection {
    width: 100%;
    text-align: left;
    background-color: var(--cardColorGray);
    padding: 10px 30px 30px 30px;
    box-sizing: border-box;
    border-radius: 30px;
    margin: 30px 0px;
}

.showcaseSection img {
    width: 90%;
    margin-left: 5%;
    border-radius: 25px;
}

.showcaseImageContainer {
    width: 100%;
    display: flex;
    align-items: center;
}

.homePageInfo {
    width: 800px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cardColorGray);
    padding: 20px;
    border-radius: 20px;
}