

:root {
--text-color: #ffffff;
--link-color: #ffffff;
--background-color: #1b2129; 
}


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
}

html {
    scroll-behavior: smooth;
    overscroll-behavior-y: none;
    height: auto;
    scroll-snap-type: y proximity;
    pointer-events: auto !important;
}

body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: bilo, sans-serif;
    font-weight: 200;
    font-style: normal;
    background-color: #1b2129;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto !important;
    overflow-x: hidden !important;
    overflow-y: auto;
}

main {
    position: relative;
    z-index: 10;
}

@media (max-width: 1300px){
    html,
    body {
        overflow-x: hidden;
        pointer-events: auto;
    }
}

a {
    color: var(--link-color);
    text-decoration: none;
}

/* Navbar */
nav {
    display: flex;
    overflow: hidden;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    text-transform: uppercase;
    z-index: -1;
    list-style-type: none;
    color: #ffffff;
    scroll-snap-align: start;
    padding: 48px 0px;
    background-color: #1b2129;
    pointer-events: auto !important;
}
.menu {
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .left {
    display: flex;
    align-items: center;
    padding-left: 108px;
    width: auto;
    box-sizing: border-box;
    justify-content: space-between;
}

nav .left img {
    height: auto;
    width: 30vw;
    align-self: center;
    display: block;
}

#menu {
    display: none;
}
.left label {
    display: none;
}

nav .right {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 108px;
}

nav .right li {
    width: 100px;
    box-sizing: border-box;
    width: auto;
    margin: 0px 3dvw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(12px, 3vw, 50px);
    transition: color 0.2s ease;
    text-decoration: none;
    margin-right: 0px;
}

nav .right > * + * {
    margin-left: 3vw; 
}

@supports (gap: 3vw) {
    nav .right > * + * { margin-left: 0; }
}

.head {
    position: fixed;
    top: 144px;
    left: 0;
    width: 100%;
    height: 20dvh;
    z-index: -4;
    overflow: hidden;
    display: flex;
    justify-content: center;
    pointer-events: none;
    align-items: center;
}

.head img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1300px) {
    nav {
        padding-bottom: 0px;
        padding-top: 24px;
        z-index: 11;
    }
    .menu {
        flex-direction: column;
    }
    .menu .left {
        top: 0;
        right: 0;
        padding-left: 24px !important;
        padding-bottom: 24px;
        width: 100%;
    }
    nav .left img {
        width: 100%;
    }
    .menu .left label {
        display: flex;
        cursor: pointer;
        position: relative;
        margin: 0 0;
        padding-right: 24px;
        width: auto;
        height: fit-content;
        align-items: center;
        padding-left: 24px;
    }
    .menu .left label::before {
        display: flex;
        position: relative;
        content: "\e5d2";
        font-family: "Material Symbols Outlined";
        font-size: clamp(24px, 10vw, 50px);;
    }
    .menu .right {
        padding-right: 24px !important;
        width: 100%;
        flex-direction: column;
        max-height: 0px;
        margin-bottom: 0px;
        overflow: hidden;
        transition: 0.5s ease-in-out;
    }
    .menu .right li {
        width: 100%;
        padding: 24px;
        border-top: 0.25mm solid rgb(255, 255, 255);
    }
    #menu:checked ~ .right {
        max-height: calc(144px + 20vh); 
        height: 100%;
        position: relative;
    }
    #menu:checked ~ .left label::before {
        font-family: "Material Symbols Outlined";
        content: "\e5cd";
    }
    #menu:checked ~ .left label:hover::before {
        color: #ff273b;
    }
    .head {
        min-height: calc(144px + 20vh); 
        top: 108px;
    }

}

/* Hover Colors */
nav .right a.about:hover {
    color:#ff273b;
}
nav .right a.portfolio:hover {
    color:#ff9000;
}
nav .right a.contact:hover {
    color:#4facff;
}

/* Section 1 */
.one {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10%;;
    background-color: #ffffff;
    margin-top: calc(144px + 20vh); 
    position: relative;
    z-index: 10;
    height: 100dvh;
    scroll-snap-align: start;
}

.one .text {
    flex: 5;
    font-size: 29px;
    font-weight: 200;
    padding: 0 108px;
    text-align: justify;
}

.one .headshot {
    display: flex;
    flex: 2;
    justify-content: right;
    width: 100%;
}

.one .headshot img {
    width: auto;
    height: 100dvh;
    object-fit: cover;
    object-position: 0px 0px;
}

.one .text h2 {
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ff273b;
}

.buttoncontainer {
    display: flex;
    justify-content: flex-end;
}

.one .text h2 .button {
    display: flex;
    padding: 15px 30px;
    border-radius: 30px;
    margin-top: 48px;
    margin-bottom: 48px;
    font-size: 29px;
    font-weight: 200;
    border: 2px solid #ffffff;
    background-color: #1b2129;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.one .text h2 a.button:hover {
    background-color:#ff273b;
}

@media(max-width: 1600px){
    .one {
        gap: 5%;
    }
    .one .text {
    font-size: clamp(6px, 2vw, 29px);
    }
}

@media (max-width: 1500px){
    .one {
        justify-content: center;
        flex-direction: column;
        height: fit-content;
        flex-direction: column-reverse;
        gap: 0;
        min-width: 100dvw;
        min-height: 0;
    }
    .one .text {
        margin: 48px 0px;
        padding: 0 48px;
        font-size: clamp(4px, 3vw, 29px);
    }
    .one .headshot {
        justify-content: center;
    }
    .one .headshot img{
        object-fit: cover;
        aspect-ratio: inherit;
        height: 60vw;
        width: 60vw;
        margin-top: 48px;
        border-radius: 25%;
    }
    .one .text h2{
        font-size: clamp(6px, 6vw, 50px);
    }
}
@media (max-width: 450px){
    .one .text h2 .button {
        font-size: clamp(6px, 4vw, 29px);
        padding: 5% 7%;
        margin-bottom: 0px;
    }
}

/* Section 2 */
.two {
    height: 100vh;
    background-color: #1b2129;
    height: fit-content;
    align-content: center;
    font-size: 29px;
    color: #ffffff;
    padding: 216px 216px;
    scroll-snap-align: none;
}

.two h2 {
    font-size: 50px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 48px;
    color: #ff9000;
    text-align: center;
}

.two .columns {
    display: flex;
    gap: 10%;
    justify-content: center;
}

.two .left,
.two .right {
    padding: 0px 48px;
    line-height: 2.5;
}
@media (max-width: 1300px){
    .two {
        min-height: 0;
    }
    .two h2 {
        font-size: clamp(6px, 6vw, 50px);
        padding: 0px 0px;
        line-height: 110%;
    }
    .two .columns {
        font-size: clamp(1px, 3vw, 29px);
        gap: 20%;
        padding: 0 0;
        min-height: 0;
    }
    .two .left,
    .two .right {
        padding: 0px 0px;
        line-height: 2.5;
        min-height: 0;
    }
}

/* Section 3 */
.three {
    height: 100vh;
    align-content: center;
    font-size: 29px;
    color: #ffffff; 
    background-image: url(designbg.webp);
    background-size: cover;
    background-position: center;
}

.three h2 {
    padding: 0 48px;
    font-size: 50px;
    font-weight: 300;
    text-transform: uppercase;
    color: #4facff;
    text-align: center;
}

.three .columns {
    display: flex;
    margin-bottom: 0 0;
    justify-content: center;
    flex-wrap: wrap;  
    padding: 0px 24px;
}
.three .columns .column {
    display: flex;
    object-fit: contain;
    align-items: center;
    padding: 24px 24px;
    text-align: center;
    margin-bottom: 0px;
}

.three .columns .column img {
    width: 4dvw;
    height: 4dvw;
}
@media (max-width: 1270px){
    .three {
        padding: 0px 0px;
        padding-bottom: 48px;
        padding-top: 24px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        background-size: cover;
        background-repeat: no-repeat;
        min-height: 0;
        min-width: 0;
    }
    .three .columns {   
        align-items: center; 
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 5dvw 5dvw;
        min-height: 0;
        min-width: 0;        
        padding: 0px 0px;
        margin: 0 0;
    }    
    .three h2 {
        font-size: clamp(6px, 6vw, 50px);
        padding-bottom: 5%;
    }
    .three .columns .column {
        display: flex;
        align-items: center;
        text-align: left;
        flex-direction: row;
        justify-content: flex-start;
        font-size: clamp(1px, 3vw, 29px);
        padding: 0px 0px;
        margin: 0 0;
        min-width: 0;
        min-height: 0;
    }
    .three .columns .column img {
        min-width: 0;
        max-width: 80px;
        object-fit: contain;
    }
    .three .column .columns span {
        font-size: 29px;
        min-width: 0;
        text-align: left;
        padding: 0px 0px;
        margin: 0 0;
    }
    .three .columns .column img {
        width: 10dvw;
        height: 10dvw;
    }
}

/* Section 4 */
.four {
    display: flex;
    top: 0;          
    left: 0;     
    width: auto; 
    background-color: #ffffff;
    justify-content: space-between;
    align-items: center;
    height: 216px;
    color: #1b2129;
    min-width: 100dvw;
    padding: 108px 108px;
}

.four .left {
    display: flex;
    align-items: left;
    object-fit: contain;
    text-align: left;
    flex-direction: row;
    justify-content: flex-start;
}
.four .left img {
    height: 64px;
    width: auto;
}

.four .right {
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: flex-end;
    font-size: 20px;
}
.four .right .icons a {
    color: #1b2129;
}

.four .right a.icons:hover {
    transition: color 0.2s ease;
    color:#ff273b;
}

@media (max-width: 1300px ){
    .four {
        padding: 48px 48px;
        min-height: 10dvw;
    }
    .four .right {
        padding-left: 15%;
        display: flex;
        font-size: clamp(1px, 2dvw, 29px);
    }
    .four .left img {
        height: 5dvw;
        width: auto;
    }
}

/* Contact Page */
/* Section 1 */
.cone {
    display: flex;
    align-items: center;
    margin-top: calc(144px + 20vh); 
    background-color: #ffffff;
    gap: 216px;
    z-index: 10;
    overflow: visible;
    padding-bottom: 48px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    min-height: fit-content;
}

.cone .text {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    width: 100%;
    font-size: 29px;
    font-weight: 200;
    padding: 0 108px;
    text-align: left;
    min-height: fit-content;
    font-size: clamp(12px, 3vw, 29px);
}

.cone .text h2 {
    margin-top: 48px;
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    color: #4facff;
    margin-bottom: 24px;
    min-height: fit-content;
}

.cone form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    max-width: 100vw;
    min-height: 0;
    margin: 48px 0;
    gap: 24px;
    min-height: fit-content;
}

.cone input, textarea {
    font-family: inherit;
    position: static;
    padding: 12px;
    border: 3px solid #1b2129;
    color: #1b2129;
    border-radius: 4px;
    font-size: 24px;
    resize: none;
    min-height: fit-content;
}
.cone textarea {
  flex: 1;
  min-height: 150px;
  height: auto;
}

.cone button {
    display: block;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 29px;
    font-weight: 100;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    background-color: #1b2129;
    color: #ffffff;
    transition: background-color 0.3s ease;
    text-align: center;
    width: fit-content;
    cursor: pointer !important;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.cone button:hover {
    background-color:#4facff;
}

@media (max-width: 1300px){
    .cone {
        padding: 0px 24px;
        gap: 0;
    }
    .cone .text {
        font-size: clamp(4px, 4vw, 29px)!important;
        padding: 0 0px;
    }
    .cone text, input, textarea {
        font-size: clamp(4px, 4vw, 29px)!important;
    }
    .cone input, textarea {
        border: 0.3dvw solid #1b2129;
    }
    .cone .form {
        font-size: clamp(4px, 3vw, 29px)!important;
        margin: 0 0;
    }
    .cone .text h2 {
        margin-bottom: 3%;
        font-size: clamp(6px, 6vw, 50px);
    }
    div.cone form button,
    .cone button {
        font-size: clamp(4px, 4vw, 29px) !important;
        padding: 2% 3%;
    }
}

.bundle {
    min-height: 100vh;
    min-height: 100dvh;
    background-color: #1b2129;
    align-content: center;
    justify-content: center;
    min-height: fit-content;
}

/* Section 2 */
.ctwo {
    align-content: center;
    font-size: 29px;
    color: #ffffff;
    padding: 0 108px;
    scroll-snap-align: none;
    margin: 0 0;
    padding-top: 216px;
}
.ctwo h2 {
    font-size: 50px;
    font-weight: 300;
    text-transform: uppercase;
    padding-bottom: 48px;
    color: #ff9000;
    text-align: center;
}
.ctwo .columns {
    display: flex;
    margin-bottom: 0;
    justify-content: center;
    flex-wrap: wrap;  
}

.ctwo .columns .column {
    display: flex;
    width: 100%;
    object-fit: contain;
    align-items: center;
    text-align: center;
    margin-bottom: 0px;
    justify-content: center;
    padding: 24px 48px;
    gap: 24px;
}

.ctwo .columns img {
    height: 50px;
    width: auto;
}
@media (max-width: 1300px){
    .ctwo {
        font-size: clamp(4px, 3vw, 29px);
        padding: 0 48px;
        padding-top: 108px;
    }
    .ctwo h2{
        font-size: clamp(6px, 6vw, 50px);
    }
    .ctwo .columns .column {
        padding: 0.5vw 0px;
        gap: 4dvw;
        align-content: center;
    }
    .ctwo .columns img {
        height: 7vw;
        width: 7vw;
    }

}

/* Section 3 */
.cthree {
    display: flex;
    height: auto;
    align-content: center;
    scroll-snap-align: none;
    padding-bottom: 216px;
    justify-content: center;
}
.cthree .columns {
    display: flex;
    width: 100%;
    justify-content: center;
    align-content: center;
    padding: 0 0;
    flex-wrap: wrap;  
}

.cthree .columns .column {
    display: flex;
    object-fit: contain;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 24px 24px;
}

.cthree .columns img {
    height: 50px;
    width: auto;
}
@media (max-width: 1300px){
    .cthree{
        padding-bottom: 108px;
        padding-top: 1.5vw;
    }
    .cthree .columns img {
        height: 7vw;
        width: 7vw;
    }
    .cthree .columns .column {
        padding: 1.5vw 1.5vw;
    }
}
/* Portfolio Page */
/* Section 1 */
.snappoint {
    scroll-snap-align: start;
    height: 1px;
    margin-top: calc(143px + 20vh); 
    margin-bottom: 0;
    background: transparent;
    scroll-snap-stop: normal;
    z-index: -10;
}
.pone {
    display: flex;
    justify-content: flex-start;
    background-color: #1b2129;
    padding: 0px 108px;
    flex-direction: column;
    z-index: 10;
    overflow: hidden;
    height: auto;
    padding-bottom: 108px;
}

.pone .text {
    display: flex;
}

.pone h2 {
    margin-top: 48px;
    margin-bottom: 48px;
    font-size: 50px;
    font-weight: 300;
    text-transform: uppercase;
    color: #ff9000;
}

.pone .columns {    
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin: 0 auto;
    gap: 108px;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 24px 0px;
}

.pone .columns .column {
    display: flex;
    position: relative; 
}
.pone .columns .column a img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    flex: 1;
    min-height: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 48px;
}

.pone .columns .column a {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    min-width: 100%;
    font-weight: 300;
}

.overlay {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff910000;       
    transition: background-color 0.5s ease;
    padding: 24px 24px;
    border-radius: 48px;
    text-rendering: optimizeLegibility;
}

.pone .columns .column span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    display: block; 
    text-align: center;
    width: auto;
    color: #1b2129;
    font-size: 50px;
    font-weight: 500 !important;
    transition: opacity 0.5s ease;
}

.column a.crillor:hover .overlay,
.column a.advenchure:hover .overlay,
.column a.highscore:hover .overlay,
.column a.reforest:hover .overlay,
.column a.crillor:active .overlay,
.column a.advenchure:active .overlay,
.column a.highscore:active .overlay,
.column a.reforest:active .overlay {
    background-color: rgba(255, 145, 0, 0.8);
}
.column a.mooncloud:hover .overlay,
.column a.wonderland:hover .overlay,
.column a.mooncloud:active .overlay,
.column a.wonderland:active .overlay {
    background-color: rgba(79, 173, 255, 0.8);
}
.column a.cearth:hover .overlay,
.column a.medvault:hover .overlay,
.column a.cearth:active .overlay,
.column a.medvault:active .overlay {
    background-color: rgba(255, 39, 61, 0.8);  
}

.pone .columns .column:hover span {
    opacity: 1;
    mix-blend-mode: normal !important;
}

@media (max-width: 1300px) {
    .pone {
        display: block !important;
        padding: 0px 0px;
        padding-bottom: 48px;
    }
    .pone h2 {
        padding: 0px 24px;
        font-size: clamp(6px, 6vw, 50px) !important;
    }

    .pone .columns {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important; 
        padding: 0 20px !important;
    }

    .pone .columns .column {
        display: block !important;
    }

    .pone .columns .column a {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
        text-decoration: none;
        position: relative !important;
    }

    .pone .columns .column a img {
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        object-fit: cover !important;
        border-radius: 12px;
        display: block !important;
    }

    .pone .columns .column a span {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
        display: block !important;
        margin-top: 10px !important;
        text-align: center;
        font-size: clamp(4px, 3vw, 29px) !important;
        font-weight: 500 !important;
        padding: 10px 5px !important;
        border-radius: 8px;
    }

    .column a span.p1, .column a span.p2, .column a span.p7, .column a span.p8 { border: 1.5px solid #ff9100; color: #ff9100 !important; }
    .column a span.p3, .column a span.p4 { border: 1.5px solid #4facff; color: #4facff !important; }
    .column a span.p5, .column a span.p6 { border: 1.5px solid #ff273b; color: #ff273b !important; }

    .overlay { display: none !important; }
}

/* Project 1 */

.project1 {
    background-color: #1b2129;
    flex-direction: column;
    z-index: 10;
    overflow: hidden;
    color: #ffffff;
    font-size: 29px;
}

.project1 p {
    text-align: justify;
    padding: 48px 108px;
    padding-bottom: 108px;
}

.project1 h2 {
    padding: 0 108px;
    text-align: center;
    margin-top: 108px;
    margin-bottom: 48px;
    font-size: 108px;
    font-weight: 200;
    text-transform: uppercase;
    line-height: 90px;
}

.project1 h2.red {
    color: #ff273b;
}
.project1 h2.blue {
    color: #4facff;
}
.project1 h2.orange {
    color: #ff9000;
}

.project1 h3 {
    font-weight: 400;
    padding: 0 24px;
}

.project1 .subsection {
    gap: 20%;
    padding: 108px 0px;
    width: 100%;
    font-weight: 300;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    color: #1b2129;
}

.project1 .left {
    display: flex;
    align-content: center;
    align-items: center;
    object-fit: contain;
    text-align: left;
    flex-direction: column;
}

.project1 .right {
    display: flex;
    align-content: center;
    align-items: center;
    object-fit: contain;
    text-align: left;
    flex-direction: column;
}

.project1 .right li {
    display: flex;
    align-items: center;
}

.project1 .right img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.project1 .text a {
    display: flex;
    width: fit-content;
}

.backbutton {
    display: flex;
    text-transform: uppercase;
    margin-top: 48px;
    margin-left: 108px;
    font-size: 29px;
    font-weight: 200;
    transition: background-color 0.3s ease;
}

.project1 .backbutton:hover {
    background-color:#ffffff;
    color:#1b2129;
}


.project11 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #ffffff;
    width: 100%;
}

.totop {
    background-color: #ffffff;
    border: none;
    display: flex;
    width: fit-content;
    justify-content: center;
    text-transform: uppercase;
    color: #1b2129;
    font-size: 29px;
    padding: 48px 0px;
    padding-top: 108px;
    font-weight: 200;
    cursor: pointer !important;
}

.project11 .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1b2129;
}

.project11 img {
    margin-top: -5px;
    width: 75vw;
    height: auto;
}

.project11 video {
    width: 75vw;
    height: auto;
}

.project11 img.first {
    margin-top: 0px;
}

@media (max-width: 1300px){
/* Head */
    .project1 h2 {
        font-size: clamp(6px, 6vw, 50px);
        line-height: 8dvw;
        padding: 0px 48px;
        margin-bottom: 0px;
    }
    .project1 p {
        text-align: justify;
        padding-left: 48px;
        padding-right: 48px;
        padding-top: 24px;
        font-size: clamp(4px, 3vw, 29px);
    }
    .project1 .subsection {
        font-size: clamp(4px, 3vw, 29px);
        gap: 1%;
        padding: 108px 24px;
    }
    .project1 .left {
        flex: 50%;
        padding: 0 0;
    }
    .project1 .right{
        flex: 50%;
        padding: 0 0;
    }
    .project1 .right img {
        width: 20%;
        height: 20%;
        margin-right: 5px;
    }
    .backbutton {
        margin-left: 48px;
        font-size: clamp(12px, 3vw, 29px);
        font-weight: 300;
        border: 1px solid #ffffff !important;
        padding: 1% 3% !important;
    }
    .project11 img {
        margin-top: -5px;
        width: 100vw;
        height: auto;
    }
    .project11 .content {
        margin-bottom: 5dvw;
    }
    .project11 video {
        width: 100vw;
        height: auto;
    }
    .totop {
        font-size: clamp(12px, 3vw, 29px);
        padding: 2dvw 2dvw;
    }
}

@media (max-width: 500px){
    .one .text, .two, .four {
        width: 100dvw !important;
        max-width: 100dvw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        left: 0;
        position: relative;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}


