@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --link-color: #3AB1E5;
    --lighter-blue: #9FDCF61A;
    --light-blue: #9FDCF6;
    --bright-blue: #1A4A97;
    --blue: #76AEFF;
    --bluish-gray: #37464F;
    --font-color-gray: #77808B;
    --font-color-dark-gray: #77808B;
    --font-color-light-gray: #A2A9B0;
    --border-color-light-blue: #9FDCF680;
    --white: #ffffff;
    --black: #000000;
    --gray: #F8F9FA;
    --font-xxx-large: 60px;
    --font-xx-large: 38px;
    --font-x-large: 32px;
    --font-large: 26px;
    --font-medium: 20px;
    --font-small: 16px;
    --font-x-small: 12px;
    --font-xx-small: 9px;
    --gap: 40px;
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}

* {
    box-sizing: border-box;
}

html, body {
    width: 100vw;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--font-color-black);
}

body {
    padding-top: 115px; /* nav adjustment */
}

.bright-blue {
    color: var(--bright-blue);
}

.light-blue {
    color: var(--light-blue);
}

.bold {
    font-weight: 700;
}

.bold-with-color {
    font-weight: 700;
    color: #808080;
}

.with-indent {
    padding-left: 1em;
    padding-top: 1em;
}


h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

p {
    line-height: 1.8rem;
}

h1.title {
    font-size: var(--font-xxx-large);

}

h2.title {
    font-size: var(--font-xx-large);
    line-height: 2.5rem;
}

h3.title {
    font-size: var(--font-x-large);
}

h4.title {
    font-size: var(--font-large);
}

h6.title {
    font-size: var(--font-small);
}

#app section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 1600px;
    margin: 0;
}

.button {
    color: var(--white);
    background-color: var(--bright-blue);
    padding: 10px 20px;
    border-radius: 10px;
    border: 0px;
    cursor: pointer;
}

.button-content {
    color: var(--white);
    background-color: var(--bright-blue);
    padding: 10px 20px;
    border-radius: 5px;
    border: 0px;
    text-decoration: none;
    cursor: pointer;
}

button.button-control {
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 20px;
    margin: 0px 10px;
    background-color: var(--bright-blue);
    color: var(--white);
    font-size: var(--font-medium);
    cursor: pointer;
}

button.button-control:disabled {
    background-color: #F0F9FF;
    color: #C9DCEC;
    cursor: not-allowed;
}

.page-title {
    background-image: url("/site/assets/images/bg/aboutus.png");
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 60px 0px;
    background-size: cover;
}

.none {
    display: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
}
