:root {
    --brand-color: #003b75;
    --error-color: #e4140e;
    --default-text-color: #000000;
    --default-font-size: 1.2rem;
    --header-text-color: #000000;
    --header-background-color: rgba(255, 255, 255, .7);
    --footer-text-color: #000000;
    --footer-background-color: #013974;
}

* {
    scroll-margin-top: 6rem;
}

html,
body {
    height: 100%;
    min-height: 100%;
    background-color: #04e7bc;
    background-image: url("../img/mainback2.png");
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    color: var(--default-text-color);
    font-family: MyriadPro, sans-serif;
    font-size: var(--default-font-size);
}

body.sticking {
    background-color: rgba(0, 0, 0, .95);
}

@media (orientation: portrait) {}

@media (orientation: landscape) {}

a {
    color: var(--brand-color);
    text-decoration: underline;
}

a.gst-link {
    color: var(--brand-color) !important;
    text-decoration: underline !important;
}

a:hover {
    color: var(--brand-color);
    text-decoration: underline;
}

textarea {
    resize: none;
}

main {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding: 0;
}

footer {
    padding: 2rem 7rem;
    background-color: var(--footer-background-color);
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul li {
    display: inline-block;
    color: var(--footer-text-color);
}

footer a {
    margin-left: 1.75rem;
    color: var(--footer-text-color);
    line-height: 32px;
    text-decoration: none;
}

footer a:hover {
    color: var(--footer-text-color);
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

h1.headline {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 0;
    background: transparent;
    z-index: 10;
}

body.sticking .navbar {
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .5) 40%, rgba(0, 0, 0, 0) 90%);
}

body.sticking .navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.bg-light {
    background-color: var(--header-background-color) !important;
}

.navbar-dark .navbar-toggler {
    border-radius: 0;
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-brand img {
    width: 110px;
}

.nav-link {
    padding-left: 1.75rem !important;
    color: var(--header-text-color) !important;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
}

.nav-link.active {
    font-weight: bold;
}

.nav-link img {
    width: 2rem;
}

.full-width {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
}

.to-upper {
    text-transform: uppercase;
}

.break-out {
    position: relative;
    left: calc(-1 * (100vw - 100%) / 2);
    width: 100vw;
}

.error {
    color: var(--error-color);
}

.error-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 1.125rem;
    color: var(--error-color);
}

.form-control.error~.error-feedback {
    display: block;
}

.form-control {
    font-size: var(--default-font-size);
}

.card-header a {
    color: var(--default-text-color);
}

.card.card-link-list {
    --bs-card-border-radius: .5rem;
    --bs-card-inner-border-radius: .5rem;
    --bs-card-inner-border-radius: .5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.card.card-link-list ul li {
    padding: 0;
}

.card.card-link-list ul li a {
    color: var(--default-text-color);
    text-decoration: none;
}

.dropdown-item {
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.4rem;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x) !important;
}

a.btn {
    text-decoration: none;
}

.btn,
.dropdown-menu {
    font-size: var(--default-font-size);
}

.btn-primary {
    width: 100%;
    padding: .6rem 1.5rem;
    color: var(--default-text-color);
    font-size: 1.25rem;
    /* font-weight: bold; */
    line-height: 1.1;
    border: none;
    border-radius: 2rem;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.btn-lg {
    padding: .6rem 1.5rem;
    font-size: 1.5rem;
    line-height: 1.1;
}

.btn-lg i {
    font-size: 2rem;
}

.btn-mug {
    padding: .75rem 1.5rem;
    color: var(--default-text-color);
    border: none;
    background-color: rgba(255, 255, 255, .95);
    border-radius: .5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.btn-upload {
    width: 100%;
    color: var(--default-text-color);
    background-color: rgba(255, 255, 255, 1);
    border: none;
    border-radius: .5rem;
}

.btn-action,
a.btn-action {
    padding: 0 .5rem !important;
    font-size: 1.75rem;
    line-height: 1.25;
}

.btn-back {
    position: fixed;
    top: .75rem;
    left: .5rem;
    color: #000000;
    text-decoration: none;
    z-index: 10;
}

body.sticking .btn-back {
    color: #ffffff;
}

.progress,
.progress-stacked {
  --bs-progress-bar-bg: #79c7cb;
}

@media (max-width: 991.98px) {
    footer {
        padding: 1.5rem 0;
    }

    footer ul li {
        display: block;
        text-align: center;
    }

    footer a {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .nav-link {
        padding-left: 0 !important;
    }
}

@media (max-width: 575.98px) {
    main {
        margin: inherit;
    }

    .navbar-brand img {
        height: 50px;
    }
}