* {
    box-sizing: border-box;
}
body {
    font-family: "Inter", sans-serif;
    background-color: #FFFFFF;
    margin: 0px auto;
    min-height: 100vh;
    width: auto;
    display: contents;
}
a {
    text-decoration: none;
    color: inherit;
}
a.regular {
    text-decoration: underline;
    color: #094CAD;
    font-weight: 500;
}
a.regular:hover,
a.regular-white:hover {
    color: #E8B445;
}
a.regular-white {
    text-decoration: underline;
    color: #FFFFFF;
    font-weight: 500;
}
a.regular:hover {
    color: #E8B445;
}

:root {
    --right-modal-width: 50%;
}
.right-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: var(--right-modal-width);
    height: 100vh;
    background-color: white;
    border-left: 1px solid #ccc;
    z-index: 1000;
}
.top-modal {
    position: fixed;
    top: -100%;
    width: 100%;
    height: auto;
    background-color: #063576;
    border-bottom: 1px solid #ccc;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 5px 24px 24px 24px;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
@keyframes slideIn {
    from {
        right: -100%;
    }
    to {
        right: 0%;
    }
}
@keyframes slideOut {
    from {
        right: 0%;
    }
    to {
        right: -100%;
    }
}
@keyframes slideUp {
    from {
        top: 0%;
    }
    to {
        top: -100%;
    }
}
@keyframes slideDown {
    from {
        top: -100%;
    }
    to {
        top: 0%;
    }
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(9, 76, 173, 0.5);
    z-index: 999;
    display: none;
}
.modalOverlay {
    position: absolute;
    background: #FFFFFF;
    z-index: 999;
    display: none;
    padding: 16px;
    width: 280px;
    height: auto;
    border-radius: 20px;
}
.body-content {
    display: flex;
    width: 100%;
    position: relative;
    flex-flow: column;
}
.header {
    background-color: #094CAD;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.inner-header {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: space-between;
    color: #FFFFFF;
    padding: 16px 24px;
    width: 100%;
    max-width: 1200px;
}
.inner-header .sign-in-modal {
    display: none;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 50px;
    justify-content: flex-end;
}
.inner-header .sign-out-modal {
    display: none;
    height: 45px;
    width: 57px;
}
.inner-header .sign-in {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-end;
}
.inner-header .sign-out {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: flex-end;
}
.header-link {
    font-weight: 600;
    color: #FFFFFF;
    fill: #FFFFFF;
    height: 20px;
    display: flex;
    flex-flow: row;
    gap: 8px;
    cursor: pointer;
}
.header-link:hover {
    color: #E8B445;
    fill: #E8B445;
}
.orange-background {
    align-items: center;
    background-color: #E8B445;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 60px;
    height: min-content;
    justify-content: center;
    overflow: visible;
    position: relative;
    z-index: 1;
}
.orange-layer {
    flex: none;
    inset: 0;
    mix-blend-mode: overlay;
    opacity: .24;
    position: absolute;
    z-index: 0;
}
.blue-background {
    align-items: center;
    background-color: #094CAD;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 60px;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.blue-image-background {
    position: absolute;
    border-radius: inherit;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: repeat;
    background-position: center center;
    background-size: 5120.00px;
    background-image: url(./../image/background.jpg);
    border: 0;
    z-index: 0;
}
.footer {
    background-color: #094CAD;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 32px 0px;
    color: #FFFFFF;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5em;
    gap: 32px;
}
.blue-button {
    background-color: #094CAD;
    text-align: center;
    border: 1px solid #094CAD;
    border-radius: 10px;
    color: #F2D38B;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.70659px 0.70659px -0.625px, rgba(0, 0, 0, 0.145) 0px 1.80656px 1.80656px -1.25px, rgba(0, 0, 0, 0.137) 0px 3.62176px 3.62176px -1.875px, rgba(0, 0, 0, 0.125) 0px 6.8656px 6.8656px -2.5px, rgba(0, 0, 0, 0.106) 0px 13.6468px 13.6468px -3.125px, rgba(0, 0, 0, 0.05) 0px 30px 30px -3.75px;
}
.blue-button:hover,
.orange-button:hover {
    color: #FFFFFF;
    border: 1px solid #222222;
    box-shadow: none;
}
.orange-button {
    background-color: #E8B445;
    text-align: center;
    border: 1px solid #E8B445;
    border-radius: 10px;
    color: #063576;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.70659px 0.70659px -0.625px, rgba(0, 0, 0, 0.145) 0px 1.80656px 1.80656px -1.25px, rgba(0, 0, 0, 0.137) 0px 3.62176px 3.62176px -1.875px, rgba(0, 0, 0, 0.125) 0px 6.8656px 6.8656px -2.5px, rgba(0, 0, 0, 0.106) 0px 13.6468px 13.6468px -3.125px, rgba(0, 0, 0, 0.05) 0px 30px 30px -3.75px;
}
.orange-line-button {
    text-align: center;
    border: 1px solid #F2D38B;
    border-radius: 10px;
    color: #094CAD;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}
.white-button {
    border: 1px solid #E8B445;
    background-color: #FFFFFF;
    border-radius: 10px;
    transform: none;
    transform-origin: 50% 50% 0px;
    cursor: pointer;
    text-align: center;
    color: #E8B445;
}
.white-button.clicked {
    border-color: #094CAD;
    background-color: #4B7BCE;
    color: #FFFFFF;
}
.white-button.none {
    border-color: rgba(226, 228, 233, 0.5);
    background-color: rgba(226, 228, 233, 0.5);
    color: #000000;
    cursor: default;
}
.orange-button-pop {
    background-color: #E8B445;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.125px;
    color: #4B7BCE;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    fill: #4B7BCE;
    cursor: pointer;
}
.orange-button-pop .svg {
    width: 20px;
}
.orange-button-pop:hover {
    background-color: #094CAD;
    color: #E8B445;
    fill: #E8B445;
}
.ivory-button {
    border: 1px solid #E8B445;
    background-color: #FDF6E8;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 24px;
}

.regular-form .section {
    width: 100%;
    margin-bottom: 18px;
    position: relative;
}
.regular-form .label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 1.5em;
    margin-bottom: 10px;
    color: #2C3642;
}
.regular-form .text-input,
.regular-form .text-input-orange,
.regular-form .select-input,
.regular-form .textarea-input
 {
    background: #F2F2F2;
    border-radius: 8px;
    border: 1px solid #F2F2F2;
    letter-spacing: 0em;
    line-height: 1.2em;
    font-size: 16px;
    font-weight: 400;
    padding: 14px;
    color: #333333;
    height: 50px;
    width: 100%;
}
.regular-form input:focus,
.regular-form select:focus,
.regular-form textarea:focus
{
    border-color: #0099FF;
    outline: none;
}
.regular-form .text-input-orange {
    border-color: #E8B445;
}
.container-title {
    font-family: "Montserrat", serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1em;
    color: #094CAD;
    text-align: center;
}
.back {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    flex-flow: row;
    gap: 8px;
    height: min-content;
    overflow: visible;
    padding: 0px;
    color: #094CAD;
    fill: #094CAD;
    font-weight: 600;
}

.footer .item-container {
    width:100%;
    display: flex;
    flex-direction: row;
    padding: 0px 50px;
    justify-content: space-between;
}
.footer .item-container .right-links {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.item-container .edit {
    flex: none;
    position: absolute;
    right: 16px;
    top: 16px;
    width: auto;
    z-index: 1;
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    height: 40px;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
    border: 1px solid #E8B445;
    border-radius: 10px;
}
.dashboard-content .header-row {
    border-bottom: 1px solid #B88D2F;
    place-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex: 0 0 auto;
    flex-flow: row;
    gap: 16px;
    padding: 16px;
    width: 100%;
}
.dashboard-content .header-row .cell {
    font-weight: 700;
    color: #094CAD;
    width: 30%;
}
.dashboard-content .odd-row {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    flex-flow: row;
    gap: 16px;
    height: min-content;
    padding: 16px;
    width: 100%;
}
.dashboard-content .even-row {
    align-items: center;
    background-color: rgba(242, 211, 139, 0.25);
    border-radius: 10px;
    display: flex;
    flex: 0 0 auto;
    flex-flow: row;
    gap: 16px;
    padding: 16px;
    width: 100%;
}

/* small screen mobile */
@media screen and (max-width: 799px) {
    :root {
        --right-modal-width: 100%;
    }
    .inner-header img {
        height: 30px;
    }
    .inner-header .sign-in-modal {
        display: flex;
    }
    .inner-header .sign-out-modal {
        display: flex;
    }
    .inner-header .sign-in {
        display: none;
    }
    .inner-header .sign-out {
        display: none;
    }
    .footer .item-container {
        flex-direction: column-reverse;
        gap: 40px;
        justify-content: center;
        padding: 16px 24px;
    }
    .footer .item-container .right-links {
        flex-direction: column;
        gap: 32px;
    }
    .footer .item-container .right-links .separator {
        display: none;
    }
    .orange-background,
    .blue-background {
        gap: 32px;
    }
    .container-title {
        font-size: 32px;
    }
    .dashboard-content .even-row,
    .dashboard-content .odd-row {
        padding: 16px 8px;
    }
}
/* medium screen ipad */
@media screen and (max-width: 1199px) and (min-width: 800px) {
    :root {
        --right-modal-width: 75%;
    }
    .footer .item-container {
        flex-direction: column-reverse;
        gap: 32px;
        justify-content: center;
    }
    .footer .item-container .right-links {
        justify-content: center;
    }
}
/* large screen desktop */
@media screen and (min-width: 1200px) {

}
