html {
    font-size: 18px;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color:#1A1A1A;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Epilogue', sans-serif;
    color: #1580FF;
}

h1 {
    font-size: 2em;
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.25rem;
}
a {
    text-decoration: none;
    color: white;
}

p {
    margin: 0;
}

img {
    width: 100%;
}

 table {
     margin-bottom: 2rem;
 }

#sub_menu_container {
    position: relative;
    z-index: 1;
}

.sub_menu_point.active {
    color: #1580FF;
}

.menu-wrapper {
    padding: 2rem;
    background: linear-gradient(180deg, #1681FF 0%, #0075FF 100%);
}

.logo-box {
    max-width: 36rem;
    margin: auto;
    text-align: center;
    color: white;
}

.logo-box img {
    padding: 1rem;
    max-width: 12rem;
    min-width: 3rem;
}

.logo-box h1 {
    color: white;
}

.main-menu {
    margin: auto;
    max-width: 30rem;
    padding: 2em;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(3rem, 12rem)); 
    grid-auto-flow: row;
    gap: 0rem 1rem;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0px 6px 11px rgba(0, 80, 201, 0.45);
    border-radius: 25px;
    font-family: 'Epilogue', sans-serif;
    text-align: center;
    font-size: 1rem;
    color: white;
    justify-content: center;
    align-content: center;
}

.main-menu p {
    margin: 0;
}
.main-menu-link {
    display: block;
}

.main-menu-icon {
    position: relative;
    
}

.main-menu-icon::before {
    content: '';
    position: absolute;
    width: 66%;
    height: 66%;
    left: 2.2rem;
    top: 2.2rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #00B2FF 100%);
    box-shadow: 0px 6px 11px rgba(0, 80, 201, 0.45);
    border-radius: 99999px;
    z-index: 1;
}

.main-menu-icon img {
    position: relative;
    z-index: 2;
}

#top_nav {
    padding: 1.5rem 3rem;
    box-sizing: border-box;
    font-family: "Epilogue", sans-serif;
    display: grid;
    grid-auto-flow: column;
    justify-items: center;
    margin-bottom: 3em;
    text-align: center;
    font-size: 0.75rem;
    background-color: #1580FF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    gap: 3rem;
    overflow-x: auto;
}

#top_nav a {
    display: inline-block;
    min-width: 6rem;
    width: 6rem;
}

#top_nav a:hover {
    color: white;
    text-decoration: underline;
}

.nav_icon_container::before {
    content: '';
    position: absolute;
    width: 66%;
    height: 66%;
    left: 1.25em;
    top: 1.25em;
    background: linear-gradient(180deg, #FFFFFF 0%, #00B2FF 100%);
    box-shadow: 0px 6px 11px rgba(0, 80, 201, 0.45);
    border-radius: 99999px;
    z-index: 1;
}

.nav_icon_container {
    position: relative;
}

.nav_icon_container img {
    position: relative;
    z-index: 2;
} 

.active_icon:before {
    background: linear-gradient(180deg,#fdaee3 0%, #db0080 100%);
}

#sub_menu_container {
    font-family: "Epilogue", sans-serif;
    position: fixed;
    top: 8rem;
    right: 0px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 1rem;
    border-radius: 1rem 0rem 0rem 1rem;
    z-index: 3;
}

.sub_menu {
    position: absolute;
    right: 0rem;
    top: 5rem;
    margin: 0;
    padding: 2rem;
    list-style-type: none;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 3rem;
    border-radius: 1rem 0rem 0rem 1rem;
    z-index: 3;
}

.sub_menu li {
    margin-bottom: 0.5rem;
}

.sub_menu li:hover {
    color: #007bff;
    cursor: pointer;
}

#sub_menu_toggle {
    font-size: 1.5rem;
}

#sub_menu_toggle:hover {
    color: #0075FF;
    cursor: pointer;

}

.content {
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    max-width: 120ch;
    padding: 0 1rem;
}

.content a {
    color: #1580FF;
}

.content ul {
    margin-bottom: 2rem;
}

.content p {
    margin-bottom: 1rem;
}

.video_container {
    margin-bottom: 2rem;
}

.page_content {
    display: none;
}

.active {
    display: block;
}

.row {
    margin-bottom: 2rem;
    display: grid;
    grid-auto-columns: 1fr 3fr;
    grid-auto-flow: column;
}

.img_container_general {
    display: grid;
    grid-auto-columns: 1fr 1fr;
    grid-auto-flow: column;
    gap: 2em;
    padding-bottom: 2em;
    justify-content: center;
}

.img_container_general img {
    max-width: 60ch;
}

.border_important {
    padding: 3%;
    margin-bottom: 1em;
    border: 3px solid #1580FF;
}

.button_clickable {
    height: 8em;
    width: 16em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #F0F5F6;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    box-shadow: 5px 5px 5px #e5e5e5;
}

.button_clickable p {
    margin: 0;
}

.modal_link {
    color: #1580FF !important;
}

.modal_link:hover,
.modal_link:focus {
    color: #1580FF;
    cursor: pointer;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 3; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal_img_container {
    width: 100%;
    max-width: 320px;
}

.modal_img_container > img {
    max-height: 200px;
    margin: 0 2px 0 2px;

}

/* Modal Content/Box */

.modal_content {
    background-color: #fefefe;
    margin: 10% auto; /* 15% from the top and centered */
    padding: 2% 4% 2% 4%;
    width: 100%; /* Could be more or less, depending on screen size */
    line-height: inherit;
    max-width: 120ch;
}

.modal_content img {
    margin-bottom: 20px;
    max-width: 100%;
}

.button_clickable {
    margin-bottom: 1rem;
}

@media screen and (max-width: 2000px) {
    .sub_menu {
        display: none !important;
    }
    .sub_menu.collapse {
        display: block !important;
    }
}