@font-face {
    font-family: 'montserrat';
    src: url('./assets/fonts/Montserrat-VariableFont_wght.ttf');
}
@font-face {
    font-family: 'brighter';
    src: url('../../assets/fonts/brighter-sans-regular.otf');
}

body {
    padding: 0;
    margin: 0;
    font-family: 'montserrat';
}

nav {
    background-color: #454b;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    height: 100px;
}
.nav-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    flex: 5;
}
h1 {
    font-family: 'brighter';
    font-weight: 700;
    font-size: medium;
}
#logo {
    width: 30px;
    margin: 8px;
}
.open {
    display: none;
}
.links {
    margin: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex: 8;
}
nav a, nav p {
    text-decoration: none;
    color: white;
    padding: 6px;
    transition-duration: 0.4ms;
    font-family: 'brighter';
}
nav a:hover {
    color: lightgreen;
    font-weight: bold;
}
.active {
    font-weight: bold;
    margin: 0;
    color: chartreuse;
    cursor: pointer;
    font-family: 'brighter';
}

header {
    background-color: darkgreen;
    padding: 35px;
}
h2 {
    text-align: center;
    color: aliceblue;
    font-size: xx-large;
    font-weight: 800;
}

section:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
}
section:nth-child(3) p {
    font-size: x-large;
    text-align: center;
}
span {
    font-weight: 900;
    font-family: 'brighter';
    color: darkgreen;
}
.apply {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 3em;
    border-radius: 10em;
    background-color: green;
    color: white;
    transition-duration: 400ms;
}
.apply:hover {
    background-color: darkgreen;
}

/* section:nth-child(4) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
} */
h3 {
    background-color: darkblue;
    margin: 2em 0;
    font-size: xx-large;
    font-weight: 800;
    color: white;
    text-align: center;
    padding: 40px;
}

.step {
    padding: 10px 35px;
}
.id {
    width: 3em;
    height: 3em;
    border-radius: 100%;
    cursor: pointer;
    background-color: darkgreen;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: large;
}
.id:hover {
    animation: glow 1s infinite;
}
/* @keyframes glow {
    0%{box-shadow: 0px 0px 0px 0px #52be52;}
    50%{box-shadow: 0px 0px 0px 10px #52be52;}
    100%{box-shadow: 0px 0px 0px 0px #52be52;}
} */
@keyframes glow {
    to{box-shadow: 0px 0px 0px 10px #52be52;}
    /* to{box-shadow: 0px 0px 0px 5px green, 0px 0px 0px 10px #52be52, 0px 0px 5px 15px #a8f1a8;} */
}
.content {
    border-bottom: 2px solid gray;
    padding-bottom: 1em;
}

table {
    width: 80%;
    margin: auto;
}
th, td {
    padding: 15px;
    text-align: center;
    font-size: large;
    height: 4em;
    cursor: pointer;
    transition-duration: 400ms;
}
th {
    background-color: darkgreen;
    color: aliceblue;
}
td {
    background-color: #52be52;
    color: white;
}

.cont {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 40%;
    height: 3em;
    border-radius: 10em;
    margin: 30px auto;
    gap: 10px;
    text-decoration: none;
    background-color: green;
    color: white;
    transition-duration: 400ms;
}
.cont:hover {
    gap: 15px;
    background-color: darkgreen;
}
#fees-div {
    width: 100%;
    overflow-x: scroll;
}
#fees-div::-webkit-scrollbar {
    display: none;
}

@media only screen and (max-width: 720px) {
    .open {
        display: inline;
        width: fit-content;
        padding: 3px;
        text-align: right;
        color: aliceblue;
        font-size: 2em;
        font-weight: bold;
        cursor: pointer;
    }
    #close {
        font-size: 3em;
        font-weight: 600;
        align-self: flex-end;
    }
    .links {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        position: fixed;
        background-color: #222d;
        top: 0;
        left: 0;
        width: 100%;
        height: 1000px;
        margin: 0;
        padding: 0;
    }
    .links a, .links p {
        font-size: x-large;
    }
    #div {
        z-index: -10;
    }
    .cont {
        width: 70%;
    }
}