@import url('https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10,400;0,400;0,500;0,700&display=swap');

/* common */
:root {
    --bground:   white;
    --fground:   black;
    --primary:   #0F8EED;
    --primary-l: #78DEF3;
    --primary-m: #167488;
    --primary-d: #0046A2;
    --secondary: #ED7D31;
    --txt-light: #636363;
    --txt-dark:  #2F3C48;
    --btn-light: #3786EE;
    --btn-mid:   #1268D9;
    --btn-dark:  #0046A2;
    --p-grad-l:  linear-gradient(135deg, var(--primary) 10%, var(--primary-d));
    --p-grad-r:  radial-gradient(at 0% 0%, var(--primary) 10%, var(--primary-d));
    --lt-grad:   linear-gradient(180deg, var(--primary), var(--primary-l));
    --dk-grad:   linear-gradient(180deg, var(--primary), var(--primary-m));
    --soft-shad: 0 0 10px rgb(107, 107, 107, 0.33);
    --hard-shad: 0 0 5px rgb(0, 0, 0, 0.3);
    --s-bground: #eee;
} 
html {
    scroll-behavior: smooth;
}
body {
    min-width: 300px;
    margin: auto;
    position: relative;
    min-height: 100vh;
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #888; 
}
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}
body.locked {
    overflow-y: hidden;
}
* {
    font-family: 'Inter', 'Helvetica', 'Arial', sans-serif;
}
h1, h2, h3 {
    font-weight: 700;
    margin: 0;
    color: var(--txt-dark);
}
p, pre, blockquote {
    font-weight: 400;
    color: var(--fground);
    font-size: 16px;
}
p.small {
    font-size: 14px;
}
p.centered {
    text-align: center;
}
p.big {
    font-size: 20px;
    color: var(--txt-dark);
}
p.med {
    font-size: 18px;
}
p.big-quote {
    font-size: 20px;
    max-width: 615px;
    font-variation-settings: "slnt" -10;
}
p.restricted {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}
p.restricted-large {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
p.restricted-left {
    max-width: 615px;
}
p.tpad {
    padding-top: 10px;
}
p a {
    color: var(--primary-m);
    text-decoration: underline;
    text-underline-offset: 2px;
}
p a:hover {
    text-decoration-thickness: 2px;
}
p a:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 0;
    border-radius: 5px;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 34px;
}
h3 {
    font-size: 24px;
}
h2.centered {
    text-align: center;
}
h3.big {
    font-size: 35px;
}
blockquote {
    border-left: 3px solid var(--primary);
    margin-inline-start: 25px;
    padding-inline-start: 13px;
}
hr.splitter {
    border-style: solid;
    border: none;
    border-top: 3px solid #ddd;
    width: 200px;
    margin: 60px 0;
}
.shadowed {
    text-shadow: 0 0 16px #00000096;
}

/* nav */
.navwrapper {
    background-image: linear-gradient(180deg, #00000080, transparent);
    z-index: 9999;
}
nav {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100px;
}
.navcontent {
    height: 100%;
    margin-right: 20px;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    float: right;
    padding-left: 5px;
}
nav li {
    margin-right: 28px;
    padding-bottom: 0;
    display: inline-block;
    height: 100px;
    border-top: 2px solid transparent;
    position: relative;
}
nav li.active::before {
    content: "";
    width: 100%;
    background-color: var(--secondary);
    height: 6px;
    position: absolute;
    top: -3px;
    border-radius: 0 0 8px 8px;
}
nav li a:focus-visible {
    outline: none;
}
nav li a:focus-visible::after {
    content: "";
    width: 100%;
    height: 50%;
    position: absolute;
    border: 2px solid var(--secondary);
    top: 20%;
    padding: 3.5px;
    left: -5px;
    border-radius: 10px;
}
nav li a {
    flex-direction: column;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: transform 0.5s;
}
nav li a:hover, header .logo:hover {
    transform: scale(0.95);
}
header .logo:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 0;
}
nav li span {
    font-size: 18px;
    transition: color 0.5s;
}
nav li img {
    width: 22px;
    margin-bottom: 2px;
}

/* mobile menu */
#nav-icon {
    float: right;
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    margin: auto;
    margin-top: 30px;
    margin-right: 10px;
    transform: rotate(0deg);
    transition: .5s ease-in-out, outline 0s, outline-offset 0s;
    cursor: pointer;
    border-radius: 1px;
}
#nav-icon:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 10px;
}
#nav-icon span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: white;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
    top: 0px;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
    top: 15px;
}
#nav-icon span:nth-child(4) {
    top: 30px;
}
#nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
#nav-icon.open span:nth-child(2) {
    transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.mobile-menu {
    position: absolute;
    overflow: auto;
    height: 100vh;
    width: 100%;
    z-index: 99;
    background: var(--p-grad-l);
    background: var(--p-grad-r);
    display: none;
}
.mobile-menu ul {
    margin-top: 120px;
    list-style-type: none;
    padding-inline-start: 40px;
    padding-inline-end: 40px;
}
.mobile-menu li {
    padding: 10px 0;
}
.mobile-menu a {
    text-decoration: none;
    color: white;
    text-shadow: 0 0 20px #000000c7;
    font-size: 20px;
    display: flex;
    align-items: center;
    flex-direction: row;
    column-gap: 15px;
    border-radius: 5px;
}
.mobile-menu a:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 5px;
}

/* header */
.head {
    max-width: 1080px;
    flex: 0 1 auto;
    margin: 0 auto;
    width: calc(100% - 120px);
    margin-top: 100px;
    transition: width 0.3s;
}
.head.small {
    margin-top: 25px !important;
}
header.snap {
    position: relative;
    height: 100vh;
    display: flex;
    flex-flow: column;
    min-height: 725px;
    max-height: 1500px;
}
header {
    box-shadow: 0px 1px 20px 0px #00000040;
}
header .backimg {
    position: absolute;
    z-index: -1;
    height: 100vh;
    min-height: 725px;
    max-height: 1500px;
    width: 100%;
    background-color: var(--primary-d);
}
header .preloadimg {
    opacity: 0;
    transition: opacity 0.5s;
    background-size: cover;
    background-position: 60% 50%;
}
header .backclr, header.backclr {
    background: var(--p-grad-l);
    background: var(--p-grad-r);
}
header.relative h1 {
    color: white;
    text-shadow: 0 0 16px #00000096;
}
header .logo {
    float: left;
    margin-top: 10px;
    margin-left: 20px;
    cursor: pointer;
    transition: transform 0.5s;
    border-radius: 50%;
}
header .logo.centered {
    width: 200px;
    margin: auto;
    display: block;
    margin-top: -100px;
}
header.snap h1 {
    color: white;
    text-shadow: 0 0 16px #00000096;
    font-size: 70px;
}
header.snap p {
    max-width: 425px;
    font-size: 24px;
    color: white;
    margin: 30px 0;
}
.subbreak {
    display: none;
}
header.relative {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
header.centered h1 {
    text-align: center;
}
.head.flex-head {
    display: flex;
}
.head.flex-head > div {
    width: 50%;
}

/* messages */
.notify {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    background-color: red;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    padding: 20px;
    color: white;
    z-index: 999;
}

/* grids */
.flex-grid {
    display: flex;
    gap: 15px;
}
.flex-center {
    align-items: center;
}
.centered-grid {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    margin-top: 50px;
}
.fixed-grid-wrapper {
    position: relative;
    padding-right: 30px;
}
.fixed-grid-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    content: "";
    height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, var(--bground) 50%, rgb(255, 255, 255, 0.01));
}
.fixed-grid-wrapper::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    content: "";
    height: 100%;
    pointer-events: none;
    background: linear-gradient(270deg, var(--bground) 50%, rgb(255, 255, 255, 0.01));
}
.fixed-grid {
    flex-wrap: nowrap;
    margin-top: 10px;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 25px 60px;
}
.fixed-grid::-webkit-scrollbar {
    display: none;
}
.fixed-grid .griditem h3 {
    padding: 20px 25px;
}
.fixed-grid .griditem p {
    margin-top: 0;
    margin-bottom: 10px;
}
.fixed-grid .view-container {
    padding: 20px 10px;
    padding-top: 10px;
    margin-top: auto;
}
.fixed-grid .view-container p {
    margin: 0;
    padding: 0;
    margin-left: auto;
    margin-right: -10px;
}
.fixed-grid .griditem .griditem-img {
    border-radius: 20px 20px 0 0;
    border-bottom: 3px solid var(--primary);
    background-size: cover;
    background-repeat: no-repeat;
    height: 150px;
    background-position: center;
}
.fixed-grid-wrapper {
    display: flex;
    justify-content: flex-start;
    margin: 0 -60px;
}
.fixed-grid .griditem {
    flex: 0 0 auto;
    flex-direction: column;
}
.griditem {
    width: 250px;
}
.griditem p {
    padding: 10px;
}
.action-arrow {
    margin: 0 10px;
    transition: transform 0.3s;
}
a:hover .action-arrow {
    transform: translateX(5px);
}
.two-part-flex {
    gap: 50px;
}
.two-part-flex > div {
    flex: 1 1 0;
}
.two-part-flex > img {
    margin: 0 auto;
}

/* margins + padding */
.tmarg {
    margin-top: 10px;
}
.bmarg {
    margin-bottom: 10px;
}
.tmargx {
    margin-top: 25px;
}
.bmargx {
    margin-bottom: 25px;
}

/* sections */
.section-content {
    max-width: 1200px;
    margin: auto;
    padding: 60px;
    box-sizing: border-box;
    height: 100%;
}
.two-col {
    display: flex;
}
.two-col .section-col {
    display: flex;
    width: 50%;
}
.two-col .col-content {
    max-width: 600px;
    padding: 60px;
    box-sizing: border-box;
}
.col-content.centered-col {
    margin-top: auto;
    margin-bottom: auto;
}
.two-col .section-col:nth-child(1) {
    justify-content: flex-end;
}
.two-col .section-col:nth-child(1) .col-content {
    padding-right: 30px;
    margin-left: auto;
}
.two-col .section-col:nth-child(2) .col-content {
    padding-left: 30px;
    margin-right: auto;
}
section .backimg {
    height: 400px;
    background-color: var(--primary-d);
    background-size: cover !important;
}
section.backimg {
    background-color: var(--primary-d);
    background-size: cover !important;
    background-position: center;
}
section.secondary-back {
    background-color: var(--s-bground);
}
.whitefg * {
    color: white !important;
}
.centered-img {
    display: flex;
}
.centered-img img {
    margin: 0 auto;
}
.centered-div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.imgcontainer {
    height: 300px;
    max-width: 800px;
    margin: 60px auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 10px #6b6b6b54;
    border-radius: 10px;
}
section.section-separated {
    border-bottom: 4px solid var(--bground);
}

/* footer */
.footer {
    text-align: center;
    padding: 40px;
    margin-bottom: 0;
}
footer {
    margin-top: auto;
    overflow: hidden;
    background: var(--p-grad-l);
    background: var(--p-grad-r);
}
footer * {
    color: white !important;
}
footer p {
    margin: 0;
    text-shadow: 0 0 16px #00000096;
}
footer p.big {
    font-size: 24px;
}
p.footer-indented {
    margin-left: 28px;
    margin-top: 5px;
}
.footer-shadow {
    box-shadow: 0 0 15px 1px black;
    height: 1px;
}
.footer-smallprint {
    margin-top: -30px;
    margin-left: 182px;
    margin-bottom: 20px;
}
.footer-maintext {
    margin-top: 20px;
    margin-left: 15px;
}
.footer-options {
    margin-left: auto;
    margin-top: 15px;
}
.footer-smallprint p {
    margin-top: 7px;
}


/* buttons */
a.btn, button {
    padding: 10px 20px;
    font-weight: 700;
    font-size: 18px;
    background-image: linear-gradient(180deg, var(--btn-light), var(--btn-mid));
    border-radius: 10px;
    transition: filter 0.2s, box-shadow 0.2s, transform 0.2s;
    color: white;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 0px 0px var(--btn-dark), 0px 2px 8px 0px rgb(0, 0, 0, 0.4);
    cursor: pointer;
    margin-bottom: 4px;
    border-style: none;
}
a.btn.small, button.icon-btn.small {
    font-size: 16px;
}
a.icon-btn.small div, button.icon-btn.small div {
    min-width: 32px;
}
a.icon-btn.small img, button.icon-btn.small img {
    height: 22px;
    width: 22px;
}
a.icon-btn.small span, button.icon-btn.small span {
    padding-top: 7px;
    padding-bottom: 7px; 
}
a.btn:active:not(.disabled-btn), button:active:not(.disabled-btn) {
    box-shadow: 0px 2px 8px 0px rgb(0, 0, 0, 0.2);
    transform: translateY(4px);
}
a.btn:hover:not(.disabled-btn), button:hover:not(.disabled-btn) {
    filter: brightness(1.05);
}
a.btn:focus-visible, button:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 0;
}
a.icon-btn, button.icon-btn {
    display: inline-flex;
	align-items: stretch;
    padding: 0;
    column-gap: 10px;
}
a.icon-btn div, button.icon-btn div {
    background-image: linear-gradient(180deg, white, #eaeaea);
    min-width: 40px;
    border-radius: 8px;
    margin: 3px;
    display: flex;
}
a.icon-btn img, button.icon-btn img {
    height: 32px;
	margin: auto;
    padding: 2px 0;
}
a.icon-btn span, button.icon-btn span {
    padding: 10px 0;
    padding-right: 15px;
}
a.btn span, button {
    text-shadow: 0 0 5px rgb(0, 0, 0, 0.52);
}
a.btn.disabled-btn, button.disabled-btn {
    opacity: 0.6;
    cursor: default;
}
.left-btngroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.centered-btngroup {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
a.box-button {
    display: flex;
    box-shadow: 4px 4px 20px 4px rgb(0, 0, 0, 0.15);
    border-radius: 20px;
    background-color: var(--bground);
    text-decoration: none;
}
a.box-button:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 0;
}
a.box-button:active {
    transform: scale(0.95);
}
a.btn.shine {
    overflow: hidden;
    position: relative;
}
a.btn.shine::before {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    width: 60px;
    height: 100%;
    left: 0;
    top: 0;
    opacity: .5;
    filter: blur(30px);
    transform: translateX(-100px) skewX(-15deg);
}
a.btn.shine::after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 100%;
    left: 30px;
    top: 0;
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100px) skewX(-15deg);
}
a.btn.shine.shine-on::before {
    transform: translateX(300px) skewX(-15deg);  
    opacity: 0.6;
    transition: 2s;
}
a.btn.shine.shine-on::after {
    transform: translateX(300px) skewX(-15deg);  
    opacity: 1;
    transition: 2s;
}

/* popup */
@keyframes scale-in-top {
    0% {
        transform: scale(0.3);
        transform-origin: 50% 0%;
        opacity: 1;
    }
    100% {
        transform: scale(1);
        transform-origin: 50% 0%;
        opacity: 1;
    }
}
.popup {
    position: fixed;
    opacity: 0;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,.4);
    transition: .5s;
    transition-property: opacity;
}
.popup.open {
    width: 100%;
    opacity: 1;
}
.popup-container {
    position: fixed;
    box-shadow: 0 0 17px #6b6b6b;
    background-color: var(--bground);
    border-radius: 14px;
    max-width: 300px;
    height: max-content;
    animation: scale-in-top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    top: 0;
    bottom: 0;
    display: none;
    padding: 30px;
    text-align: center;
}
.popup-container p {
    margin-top: 0;
}
.popup.open + .popup-container {
    display: block;
}

/* forms */
input[type=text], input[type=email], textarea {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 2px 2px 5px #7c7c7c54;
    border-radius: 10px;
    border: 2px solid var(--primary);
    background-color: var(--bck-color);
    color: var(--txt-color);
}
input[type=text]:focus, input[type=email]:focus, textarea:focus {
    border-color: var(--secondary);
    outline-offset: 0;
    outline: 1px solid var(--secondary);
}
form p {
    margin-bottom: 10px;
    margin-left: 10px;
}
form {
    max-width: 400px;
    margin: 0 auto;
    padding-top: 60px;
}
.slidecontainer {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
}
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 4px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
    margin: 0;
}
.slider + p {
    margin: 0;
    margin-left: 10px;
    min-width: 30px;
    text-align: right;
}
.slider:hover {
    opacity: 1;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}
.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}
.checkbox-list {
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 10px #6b6b6b54;
    border-radius: 10px;
    padding: 1px 0;
    border: 1px solid white;
}
.checkbox-list.resizable-list {
    overflow: auto;
    resize: vertical;
    height: 125px;
    min-height: 100px;
}
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin: 15px 10px;
    cursor: pointer;
    font-weight: 400;
    color: var(--fground);
    font-size: 16px;
    -webkit-user-select: none;
    user-select: none;
}
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: var(--bground);
    border-radius: 5px;
    border: 2px solid var(--primary);
    transition: background-color 0.2s;
}
.checkbox-container:hover input ~ .checkmark {
    background-color: var(--s-bground);
}
.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary);
}
.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}
.checkbox-container .checkmark::after {
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* noflex */
.noflex .mobile-menu a img {
    margin-right: 15px;
}
.noflex a.icon-btn span, button.icon-btn span {
    padding-left: 10px;
}
.noflex .fixed-grid .griditem {
    margin: 0 5px;
}
.noflex .centered-btngroup a, .noflex .left-btngroup a {
    margin: 5px;
}
.noflex .flex-grid > * {
    margin: 7.5px;
}

/* tablet */
@media (max-width: 940px) {
    .two-col.col-large {
        flex-direction: column;
    }
    .two-col.col-large .section-col, .two-col.col-large .col-content {
        width: 100%;
        margin: 0;
    }
    .two-col.col-large .col-content {
        max-width: none;
    }
    .two-col.col-large .section-col:nth-child(1) {
        justify-content: normal;
    }
    .two-col.col-large .section-col:nth-child(1) .col-content {
        padding-right: 60px;
    }
    .two-col.col-large .section-col:nth-child(2) .col-content {
        padding-left: 60px;
    }
    .tablet-centered {
        text-align: center;
    }
    .tablet-npad {
        padding-top: 0 !important;
    }
}

/* mobile */
@media (max-width: 750px) {
    .two-part-flex {
        flex-direction: column;
    }
    p.med {
        font-size: 16px;
    }
    footer .section-content > .flex-grid {
        flex-direction: column;
    }
    .footer-options {
        margin-left: 12px;
    }
    .footer-smallprint {
        margin-top: 25px;
        margin-left: 12px;
        margin-bottom: 15px;
    }
    .footer-maintext {
        margin-top: 0;
    }
    footer .section-content > .flex-grid > .flex-grid {
        align-items: center;
    }
}
@media (max-width: 600px) {
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 26px;
    }
    p.big, p.big-quote {
        font-size: 16px;
    }

    .head {
        width: calc(100% - 60px);
        margin-top: 50px;
    }
    header.centered .logo {
        width: 100px;
        margin-top: -50px;
    }
    header .preloadimg {
        position: relative;
        height: 300px;
        min-height: auto;
        margin-top: 50px;
    }
    #nav-icon {
        display: block;
    }
    nav ul {
        display: none;
    }

    .fixed-grid-wrapper {
        margin: 0 -30px;
    }
    .fixed-grid {
        padding: 25px 30px;
    }
    .fixed-grid-wrapper::before {
        content: none;
    }
    .centered-btngroup, .left-btngroup {
        flex-direction: column;
    }
    .centered-btngroup.nocollapse, .left-btngroup.nocollapse {
        flex-direction: row;
    }

    .section-content {
        padding: 60px 30px;
    }
    .two-col {
        flex-direction: column;
    }
    .two-col .section-col, .two-col .col-content {
        width: 100%;
        margin: 0;
    }
    .two-col .col-content {
        max-width: none;
        padding: 60px 30px !important;
    }
    .two-col .tablet-npad {
        padding-top: 0 !important;
    }
    .two-col .section-col:nth-child(1) {
        justify-content: normal;
    }
    .two-col .col-content.mobile-npad {
        padding-top: 0 !important;
    }
    .subbreak {
        display: inline;
    }
}

/* smaller */
@media (max-width: 450px) {
    #footer-logo {
        width: 80px !important;
        height: 80px !important;
    }
    footer p.big {
        font-size: 20px;
    }
    p.footer-indented {
        margin-left: 24px;
    }
    footer .section-content > .flex-grid > .flex-grid {
        gap: 0;
    }
}
@media (max-width: 350px) { 
    .footer-maintext {
        margin-left: 5px;
    }
    footer p.big {
        font-size: 17px;
    }
    p.footer-indented {
        margin-left: 20px;
    }
}
@media (max-width: 310px) {
    body {
        overflow-x: auto;
    }
}

/* once loaded */
body {
    display: flex !important;
    flex-direction: column;
}