body {
    scrollbar-width: thin;
    background-color: var(--surface);
}

:root {
    --expressive-fast-effects: 0.15s cubic-bezier(0.31, 0.94, 0.34, 1.00);
}

.fullPageFrame {
    position: absolute;
    top: 0px;
    left: 0px;

    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.header_gradient {
    position: relative;

    width: 100%;
    height: 300px;

    background: linear-gradient(0deg, #00000000, var(--surface-dim));

    display: flex;
    align-items: start;
    justify-content: center;
    z-index: 2;
}

.header {
    position: relative;

    width: auto;
    max-width: 1600px;
    height: 75px;

    padding-left: 25px;
    padding-right: 25px;    
    margin: 50px;

    box-sizing: border-box;

    background-color: var(--container);
    border-radius: 50px;

    display: flex;
    align-items: center;
    justify-content: start;

    overflow: hidden;
}

.hd_logo {
    position: relative;

    width: 70px;
    height: 100%;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: start;

    cursor: pointer;
}

.dbfsLogo {
    position: relative;

    width: 40px;
    height: 40px;

    fill: var(--on-surface);
}

.hd_navIcons {
    position: relative;

    width: auto;
    height: 100%;

    margin-left: 30px;

    display: flex;
    align-items: center;
    justify-content: start;
}

.hd_nvIcn {
    position: relative;

    width: 40px;
    height: 40px;

    margin-right: 5px;

    padding: 10px;
    box-sizing: border-box;

    fill: var(--on-secondary-container);

    background-color: transparent;
    border-radius: 50%;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all var(--expressive-fast-effects);
}

.hd_nvIcn:hover {
    background-color: var(--secondary-container);
    border-radius: 25%;
    rotate: 45deg;
}

.nvIcn_svg {
    transition: all var(--expressive-fast-effects);
}

.hd_nvIcn:hover .nvIcn_svg {
    rotate: -45deg;
}

.hd_nvIcn.active {
    fill: var(--on-primary-container);
    background-color: var(--primary-container);
}

.headerIMG {
    position: absolute;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 500px;

    background-image: url('/assets/png/header_1.png');
    background-size: cover;
    background-position: center;

    opacity: 0.5;
    
    z-index: 1;
}

.headerIMG.img1 {
    background-image: url('/assets/png/header_1.png');
}

.headerIMG.img2 {
    background-image: url('/assets/png/header_2.png');
}

.headerIMG.img3 {
    background-image: url('/assets/png/header_3.png');
}

.headerIMG.img4 {
    background-image: url('/assets/png/header_4.png');
}

.headerIMG.img5 {
    background-image: url('/assets/png/header_5.png');
}

.headerIMG.img6 {
    background-image: url('/assets/png/header_6.png');
}

.headerIMG.img7 {
    background-image: url('/assets/png/header_7.png');
}

.headerIMG.img8 {
    background-image: url('/assets/png/header_8.png');
}

.headerIMG.img9 {
    background-image: url('/assets/png/header_9.png');
}

.footer {
    position: relative;

    margin-top: 200px;

    width: 100%;
    height: auto;

    background-color: var(--container-lowest);

    padding: 100px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ft_content {
    position: relative;

    width: 65%;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: start;
}

.ft_left {
    position: relative;

    width: 70%;
    height: 50px;

    display: flex;
    flex-direction: row;
    gap: 2px;
    align-items: center;
    justify-content: start;
}

.ft_btn {
    position: relative;

    padding: 10px 20px;
    box-sizing: border-box;

    background-color: var(--container);
    border-radius: 1px;

    border: none;
    outline: none;

    font-family: "Outfit";
    font-weight: 400;
    font-size: 15px;
    color: var(--on-surface);

    transition: all var(--expressive-fast-effects);
}

.ft_btn:hover {
    cursor: pointer;

    margin-left: 5px;
    margin-right: 5px;

    padding: 15px 25px;
    border-radius: 10px;

    font-size: 17px;

    background-color: var(--primary-container);
    color: var(--on-primary-container);
}

.ft_right {
    position: relative;

    width: 30%;

    display: flex;
    align-items: center;
    justify-content: end;
}

.ft_text {
    position: relative;

    font-family: "Outfit";
    font-weight: 400;
    font-size: 15px;
    color: var(--on-surface);
    opacity: 0.5;
}

@media (max-width: 768px) {

    .headerIMG {
        height: 300px;
    }

    .footer {
        margin-top: 100px;

        padding: 10%;

        flex-direction: column;

        overflow: hidden;
    }

    .ft_content {
        position: relative;

        width: 100%;
        height: auto;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
    }

    .ft_left {
        width: 60%;
        height: auto;
        flex-direction: column;
        gap: 5px;
    }

    .ft_btn {
        width: 100%;
    }

    .ft_right {
        margin-top: 50px;
        margin-bottom: 30px;

        width: 80%;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ft_text {
        position: relative;

        font-family: "Outfit";
        font-weight: 400;
        font-size: 15px;
        color: var(--on-surface);
        opacity: 0.5;
    }
}