@font-face {
    font-family: 'Caveat';
    src: url('./Caveat-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


label {
    margin-bottom: 10px;
}

input[type="submit"]:hover {
    background-color: #0062cc;
}

.custom-file-input {
    cursor: pointer;
}

.custom-file-label:hover {
    background-color: #0062cc;
}

.hidden {
    display: none;
}

.question-icon {
    color: #85c8ff;
}

.index-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.index-card-header {
    flex-shrink: 0;
}

.index-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.index-card-body p {
    margin-bottom: 1rem;
}

.index-card-body a {
    align-self: flex-start;
}

.index-card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
}

.justified-text {
    text-align: justify;
}

html,
body {
    height: 100%;
}

p {
    font-size: medium;
    font-family: Arial, sans-serif;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    /* Add additional styles for your content section */
}

footer {
    /* background-color: #f8f9fa; */
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
    /* Set margin-top to auto to push the footer to the bottom */
}

footer p {
    margin: 0;
}

.background-class {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    background-position: bottom left;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-image: url("brain5.png");
    background-size: cover;
    background-attachment: fixed;
    overflow: auto;
    opacity: 0.8;
    /* Set the desired opacity value (0.5 in this example) */
}

.navbar {
    margin-bottom: 0;
    /* Remove the default margin */
}

.navbar-brand {
    color: #1E4687 !important;
    font-family: "Caveat";
    font-weight: bold;
    font-size: 1.8rem;
    padding: 5px 10px;
    background-color: #DAE3F3;
    border-radius: 15px;
}

/* Default font size for desktop */
.navbar-brand {
    font-size: 36px;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .navbar-brand {
        font-size: 4vw;
        /* Adjust the value as needed */
    }
}

.nav-link {
    font-size: 1.2rem;
    font-weight: bold;
    /* Increase the font size */
}

.navbar-light .navbar-nav .nav-link {
    color: #4472C4;
    /* Non-selected color */
    margin-right: 10px;
    /* Add right margin to create space between items */
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #325EA9;
    /* Hovered color */
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: #1E4687;
    /* Selected color */
}


.left-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex-grow: 1;
}

footer {
    position: relative;
    z-index: 9999;
  }

footer {
    /* position: fixed;
    bottom: 0; */
    width: 100%;
    padding: 20px;
    text-align: center;
}

.index-p {
    color: #2F5597;
}

.index-h {
    color: #1E4687;
}

.paragraph-frame {
    position: relative;
    padding: 20px;
    border-radius: 20px;
}

.paragraph-frame::before,
.paragraph-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
}

.paragraph-frame::before {
    top: -10px;
    left: -10px;
    width: 35%;
    height: 35%;
    border-top: 10px solid #2F5597;
    border-left: 10px solid #2F5597;
}

.paragraph-frame::after {
    bottom: -10px;
    right: -10px;
    width: 35%;
    height: 35%;
    border-bottom: 10px solid #2F5597;
    border-right: 10px solid #2F5597;
}

/* .fixed-image {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: -1;
  } */

.full-width {
    width: 100%;
}

.no-bullet {
    list-style: none;
}