body {
    font-family: Avenir, sans-serif;
    background-color: #3f5384;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.container--full {

    width: 100%;
    max-width: calc(100% - 120px);
    margin: 0 auto;
    margin-left: 60px;
    padding: 0;
}

.container--article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-sizing: border-box;
}

/* @media screen and (max-width: 1250px) {

    .container {
        max-width: none;
        padding-left: 50px;
        padding-right: 50px;
        width: auto;
    }

    .container--full {

        max-width: calc(100% - 40px);
        margin-left: 20px;
    }
} */


@media screen and (max-width: 1250px) {

    .container {
        max-width: none;
        padding-left: 50px;
        padding-right: 50px;
        width: auto;
    }

    .container--full {

        max-width: calc(100% - 40px);
        margin-left: 20px;
    }

    .container--article {

        padding-left: 50px;
        padding-right: 50px;
    }
}

@media screen and (max-width: 600px) {

    .container {
        max-width: none;
        padding-left: 15px;
        padding-right: 15px;
        width: auto;
    }

    .container--full {

        max-width: calc(100% - 20px);
        margin-left: 10px;
    }

    .container--article {

        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (min-width: 2000px) {

    .container--full {

        max-width: 1920;
        margin: 0 auto;

    }
}

/* ---------- Navigation Bar ---------- */

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.25);
    /* background: rgba(0, 0, 0, 0.85); */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-bar-flex-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-bar__logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none
}

.nav-bar__logo-image {
    width: 36px;
    border-radius: 12px;
}

.nav-bar__logo-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 60px;
    color: white;
    cursor: pointer;
}

.nav-bar__nav-items-container {
    display: flex;
    align-items: center;
    gap: 0px;
}

.nav-item {
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: white;
    padding: 8px 15px;
    height: 20px;
    font-size: 16px;
    font-weight: 500;
}

.nav-item::after {
    content: '';
    position: inherit;
    width: 100%;
    height: 3px;
    margin-top: 3px;
    background-color: #ffffff;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
    transform: scaleX(0);
    display: block;
}

.nav-item:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-button {
    background-color: #2d84f6;
    background: linear-gradient(0deg, #5e79ff, #1491f4);
    background: linear-gradient(0deg, rgba(94, 121, 255, 1) 0%, rgba(91, 122, 255, 1) 20%, rgba(23, 144, 244, 1) 80%, rgba(20, 145, 244, 1) 100%);
    cursor: pointer;
    text-decoration: none;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    height: 20px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-button:hover {
    background-color: #2e72cb;
    transform: scale(0.98);
}

.nav-bar__hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 1200px) {

    .nav-bar__nav-items-container {
        display: none;
    }

    .nav-bar__nav-items-container.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: rgba(0, 0, 0, 0.9);
        padding: 10px;
        border-radius: 4px;
    }

    .nav-bar__hamburger {
        display: block;
    }
}

/* ---------- Section ---------- */

section {
    height: auto;
    display: flex;
    align-items: center;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.section--light-text {
    color: #eee;
}

.section--dark-text {
    color: #222;
}

.section--less-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

section .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}


@media screen and (max-width: 1200px) {

    section {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

    .section--less-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}



section h1 {
    font-weight: bold;
    font-size: 3.8rem;
    line-height: 1.2;
}

section h2 {
    font-weight: bold;
    font-size: 2.8rem;
    line-height: 1.2;
}

section h3 {
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 1.2;
}

section h4 {
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.2;
}

section p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
}

section h2.bigger {
    font-size: 3rem;
}

section h4.smaller {
    font-size: 1.8rem;
}

section p.bigger {
    font-size: 1.4rem;
}


/* ---------- Text sizing ---------- */



@media screen and (max-width: 1200px) {

    section h1 {
        font-size: 3rem;
    }

    section h2 {
        font-size: 2.5rem;
    }

    section h3 {
        font-size: 2rem;
    }

    section h4 {
        font-size: 1.8rem;
    }

    section p {
        font-size: 1.2rem;
    }

    section h2.bigger {
        font-size: 3rem;
    }

    section p.bigger {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 700px) {

    section h1 {
        font-size: 2.5rem;
    }

    section h2 {
        font-size: 2.3rem;
    }

    section h3 {
        font-size: 2rem;
    }

    section h4 {
        font-size: 1.7rem;
    }

    section p {
        font-size: 1.2rem;
    }

    section h2.bigger {
        font-size: 2.8rem;
    }

    section p.bigger {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 450px) {

    section h1 {
        font-size: 2.3rem;
    }

    section h2 {
        font-size: 2rem;
    }

    section h3 {
        font-size: 1.8rem;
    }

    section h4 {

        font-size: 1.6rem;

    }

    section p {
        font-size: 1.1rem;
    }

    section h2.bigger {
        font-size: 2.1rem;
    }

    section p.bigger {
        font-size: 1.1rem;
    }
}




.section__text_column_flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.section__text_column_flex--side_by_side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    max-width: 500px;
}

.section__side_by_side_flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
}

/* .section__text_column_flex--side_by_side p {
    color: #aab8c9;
    
}

.section__text_column_flex--side_by_side p.dark-text {
    color: #515559;
  
} */

@media screen and (max-width: 1300px) {

    .section__side_by_side_flex {
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        gap: 6rem;
    }
}


.site-footer {
    display: flex;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    font-size: 1rem;
    font-weight: 500;
}

.site-footer a {
    color: #111;
    text-decoration: none;
}

.site-footer a::after {
    content: '';
    position: inherit;
    width: 100%;
    height: 3px;
    margin-top: 3px;
    background-color: #111;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
    transform: scaleX(0);
    display: block;
}

.site-footer a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}




.site-footer--dark {
    display: flex;
    flex-direction: row;
    background: rgb(14 18 22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #eee;
}

.site-footer--dark a {
    color: #eee;
    text-decoration: none;
}

.site-footer--dark a::after {
    content: '';
    position: inherit;
    width: 100%;
    height: 3px;
    margin-top: 3px;
    background-color: #eee;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
    transform: scaleX(0);
    display: block;
}

.site-footer--dark a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

#footer__links-container {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}


@media screen and (max-width: 1250px) {

    #footer__links-container {
        display: none;
    }
}

.spacer {
    height: 30px;
}

.spacer--big {
    height: 100px;
}

@media screen and (max-width: 1000px) {

    .spacer {
        height: 30px;
    }

    .spacer--big {
        height: 50px;
    }
}

.link-button {
    padding: 10px 30px;
    line-height: 34px;
    background-color: #435afa;
    background: linear-gradient(0deg, #5e79ff, #1491f4);
    background: linear-gradient(0deg, rgba(94, 121, 255, 1) 0%, rgba(91, 122, 255, 1) 20%, rgba(23, 144, 244, 1) 80%, rgba(20, 145, 244, 1) 100%);
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 35px 20px);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    will-change: transform;
}

.link-button:hover {
    transform: scale(0.98);
    filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 25px 10px);
}

.link-button--no-shadow {
    padding: 10px 30px;
    line-height: 36px;
    background-color: #435afa;
    background: linear-gradient(0deg, #5e79ff, #1491f4);
    background: linear-gradient(0deg, rgba(94, 121, 255, 1) 0%, rgba(91, 122, 255, 1) 20%, rgba(23, 144, 244, 1) 80%, rgba(20, 145, 244, 1) 100%);
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.link-button--no-shadow:hover {
    transform: scale(0.98);
}

.link-button-glass {
    padding: 10px 30px;
    line-height: 34px;
    background: #ffffff1f;
    border: 1px solid #ffffff26;
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    backdrop-filter: blur(2px);
    font-size: 1rem;
}

.link-button-glass:hover {
    transform: scale(0.98);
}

.link-button-black {
    padding: 10px 30px;
    line-height: 36px;
    background-color: #435afa;
    background: linear-gradient(0deg, #111, #333);
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.link-button-black:hover {
    transform: scale(0.98);
}

#back-button {
    transition: 0.2s;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: white;
    box-sizing: border-box;
    font-weight: 500;
    margin-top: 4rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: rgb(35 35 35);
    padding: 0.7rem;
    padding-right: 1rem;
    border-radius: 30px;
    border: 1px solid #ffffff26;
    width: 200px;
    filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 25px 20px);
    will-change: transform;
}

#back-button:hover {
    transform: scale(0.98);
    filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 15px 10px);
}



/* Keeps footer at bottom */
html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    /* grows to fill space, pushes footer down */
}

/* 
.site-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.4);
  padding: 2rem 0;
} */



.light-text {
    color: #eee;
}

.dark-text {
    color: #222;
}

.screenshot-border {
    border-radius: 25px;
    border: 15px solid #000;
    filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 15px 10px);
    will-change: transform;
}

.screenshot-border-thin {
    border-radius: 20px;
    border: 10px solid #000;
    filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 15px 10px);
    will-change: transform;
}

@media screen and (max-width: 900px) {

    .screenshot-border {
        border-radius: 20px;
        border: 10px solid #000;
    }
}

@media screen and (max-width: 450px) {

    .screenshot-border {
        border-radius: 15px;
        border: 5px solid #000;
    }
}


.boxed-message {
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    gap: 1.5rem;
    opacity: 1;
    min-height: 30rem;
    min-height: 23rem;
    z-index: 1;
    background: rgb(14 18 22);
    /* background: linear-gradient(21deg, #2f3fb1, #4db0ff); */
    border-radius: 30px;
    overflow: clip;
    filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 35px 20px);
    will-change: transform;
}

.section__button_side_by_side_flex {

    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 20px;
}

@media screen and (max-width: 410px) {

    .section__button_side_by_side_flex {
        gap: 1rem;
        flex-direction: column;
    }
}


.animate-fade-in {
    opacity: 0;
}

.spinner-ring {
    width: 30px;
    height: 30px;
    border: 8px solid rgba(0, 0, 0, 0.2);
    border-top-color: #577bfd;
    /* accent color */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
}

.carousel-item {
    position: absolute;
    width: 70%;
    max-width: 900px;
    opacity: 0;
    transform: scale(0.75) translateY(20px);
    transition: transform 0.7s cubic-bezier(.22, .61, .36, 1), opacity 0.6s ease;
    filter: drop-shadow(rgba(0, 0, 0, 0.25) 0px 25px 20px);
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 3;
}

.carousel-item.left {
    opacity: 1;
    transform: translateX(-200px) scale(0.85);
    z-index: 2;
}

.carousel-item.right {
    opacity: 1;
    transform: translateX(200px) scale(0.85);
    z-index: 2;
}

.carousel-button {
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    z-index: 5;
    color: #111;
}

.carousel-button:hover {
    opacity: 0.6;
}

.carousel-alternative {
    display: none;
}

@media screen and (max-width: 1250px) {

    .carousel {
        display: none;
    }

    .carousel-alternative {
        display: block;

    }
}

.boxed-content {
    box-sizing: border-box;
    align-items: center;
    background-color: #f3f3f3;
    padding: 3rem;
    border-radius: 30px;
    border: 2px solid #ffffff96;
    filter: drop-shadow(rgba(0, 0, 0, 0.2) 0px 35px 20px);
    will-change: transform;
}

.multi-boxed-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.multi-boxed-container .boxed-content {
    width: calc(50% - 1rem);
}

@media screen and (max-width: 1250px) {

    .multi-boxed-container {
        flex-direction: column;
    }

    .multi-boxed-container .boxed-content {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {

    .boxed-content {
        padding: 2rem;
    }
}



.image-no-select {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}