/* ==========================================================================
   CONSOLIDATED WORDPRESS THEME STYLES
   ========================================================================== */

/* Reset and Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: rgb(29, 27, 27);
    --bg: rgb(238, 238, 238);
    --blue2: rgb(255, 255, 255);
    --bg2: rgb(21, 21, 54);
    --bgclear: #ffffffd0;
}

body {
    background: var(--bg) !important;
    font-family: 'Arial', sans-serif;
}

/* Typography Classes
   ========================================================================== */
.emblema-one-regular {
    font-family: "Emblema One", system-ui;
    font-weight: 400;
    font-style: normal;
}

.soultitle {
    font-size: 5rem;
    font-weight: 900;
    font-family: "Climate Crisis", sans-serif;
    margin-bottom: 0px;
    line-height: 4.7rem;
    user-select: none;
    will-change: transform;
    text-align: left;
    color: var(--blue);
}

.letter {
    display: inline-block;
    will-change: transform;
    transition: none;   
}

/* Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden; 
    background: var(--bg);
}

#background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#grid-background {
    position: absolute;
    top: 10px;
    left: 5px;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    background-image: 
        linear-gradient(var(--blue) 1px, transparent 1px),
        linear-gradient(90deg, var(--blue) 1px, transparent 1px);
    background-size: 50px 50px;
    will-change: transform;
}

#globe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Orbiting Text
   ========================================================================== */
.orbiting-text {
    position: absolute;
    font-family: Arial-black, Helvetica, sans-serif;
    font-size:7rem;
    line-height:6rem;
    font-weight: 900;
    color: var(--blue);
    text-align:right;
    opacity: 1;
    pointer-events: none;
    white-space: nowrap;
    transform-origin: center;
    z-index: 2;
}

.orbit2 {
    transform: scale(1.55) !important;
}

.orbiting-text-head {
    font-family: Arial-black, Helvetica, sans-serif;
    font-size: 7rem;
    text-align: right;
    font-weight: 900;
    color: var(--blue);
    opacity: 1;
    z-index: 2;
    display: none;
}

/* Content Overlay
   ========================================================================== */
#content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    pointer-events: auto;
}

#content-overlay .container-fluid {
    height: 100%;
}

/* Header Text Container
   ========================================================================== */
.header-text-container {
    position: absolute;
    top: 10%;
    right: 0;
    left: 0;
    z-index: 200;
    pointer-events: none;
    padding-right: 5%;
}

.text-layer {
    color: var(--blue);
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 0 0px var(--blue);
    opacity: 1;
    text-align: right;
}

.title {
    font-size: 6rem;
    font-weight: 900;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    margin-bottom: 0px;
    line-height: 4.6rem;
}

.subtitle {
    font-size: 5rem;
    opacity: 1;
    font-family: 'times-new-roman', serif;
    font-weight: 400;
    transform: scaleY(0.4);
}

.titlebox {
    mix-blend-mode: none;
    backdrop-filter: blur(4px);
    color: var(--blue);
}

/* Corner Text
   ========================================================================== */
.corner-text {
    position: absolute;
    bottom: 10%;
    right: 10%;
    font-size: 1rem;
    opacity: 1;
    color: var(--blue);
    letter-spacing: 2px;
    z-index: 200;
    pointer-events: auto;
}

.corner-text a {
    color: var(--blue);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.corner-text a:hover {
    opacity: 0.7;
}

/* Image Gallery
   ========================================================================== */
.image-gallery {
    position: absolute;
    left: 2%;
    top: 0;
    width: 400px;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    padding: 20px 0;
    z-index: 150;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.image-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-image {
    width: 300px;
    height: 200px;
    margin-bottom: 40px;
    border-radius: 8px;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(25, 0, 255, 0.2);
    opacity: 0.8;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(25, 0, 255, 0.4);
    opacity: 1;
}

/* Gallery Items */
.gallery-item,
.gallery-item-clone {
    width: 300px;
    height: 200px;
    margin-bottom: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-item:hover,
.gallery-item-clone:hover {
    transform: scale(1.05);
    opacity: 1;
}

.gallery-item svg,
.gallery-item-clone svg {
    width: 80%;
    height: 80%;
    transition: all 0.3s ease;
}

.gallery-item:hover svg,
.gallery-item-clone:hover svg {
    transform: scale(1.1);
}

/* Portfolio Section
   ========================================================================== */
.portfolio-section {
    background: var(--bg);
    min-height: 100vh;        
    z-index: 102 !important;
}

.project-card {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
    border: 2px solid var(--blue);
}

.project-card:hover {
    border: 2px solid white;
}

.project-card:hover .porttext {
    color: white !important;
}

.project-card:hover .project-image {
    border: 2px solid white;
}

.project-image {
    position: absolute;
    top: 60px;
    left: 60px;
    right: 60px;
    bottom: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid var(--blue);
}

.porttext {
    color: var(--blue);
    font-weight: 900;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0px;
    transition: all 0.5s;
    transform: scaleX(1.5);
}

.project-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
}

.project-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tag-right {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tag-bottom {
    position: absolute;
    bottom: 0;
    left: 60px;
    right: 0;
    height: 60px;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tag-left {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    position: absolute;
    left: 0;
    top: 60px;
    bottom: 0;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Portfolio Additional Styles */
.fullwidthport {
    overflow: hidden;
}

.video-overlay iframe,
.video-overlay video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.portfolio-additional {
    background: var(--bg, #f8f9fa);
    color: var(--blue, #333);
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.portfolio-image-wrapper img {
    transition: transform 0.3s ease;
}

.portfolio-image-wrapper:hover img {
    transform: scale(1.05);
}

.portfolio-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

.content-text h1,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text h6 {
    color: var(--blue, #333);
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-text p {
    margin-bottom: 1.2rem;
}

.portbutton {
    padding: 20px;
    background-color: var(--blue);
    color: rgb(<?php echo the_field('portclr'); ?>);
    font-weight: 900;
    text-decoration: none;
    border: 5px solid var(--blue);
    font-size: 2em;
}

.portbutton:hover {
    color: var(--blue);
    background-color: rgb(<?php echo the_field('portclr'); ?>);
}

a {
    color: rgb(<?php echo the_field('portclr'); ?>);
}

/* Modal Styles
   ========================================================================== */
.modal-content {
    border: 2px solid var(--blue);
    border-radius: 8px;
}

.modal-header {
    border-bottom: 1px solid var(--blue);
    background: var(--bg);
}

.modal-title {
    color: var(--blue);
    font-weight: 900;
}

.modal-fullscreen .modal-content {
    background: var(--bg);
    border: none;
}

.modal-fullscreen .modal-header {
    border-bottom: 2px solid var(--blue);
    background: var(--bg);
    padding: 20px 30px;
}

.modal-fullscreen .modal-title {
    color: var(--blue);
    font-weight: 900;
    font-size: 1.5rem;
}

.modal-fullscreen .btn-close {
    font-size: 1.5rem;
    filter: none;
    color: var(--blue);
    opacity: 1;
}

.modal-fullscreen .modal-body {
    padding: 0;
    background: var(--bg);
}

.btn-close {
    filter: invert(1);
}

/* Theme Switch
   ========================================================================== */
.theme-switch-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: var(--blue);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    border-radius: 34px;
    border: 2px solid var(--blue);
}

.slider:before {
    background-color: var(--bg);
    bottom: 2px;
    content: "";
    height: 24px;
    left: 2px;
    position: absolute;
    transition: .4s;
    width: 24px;
    border-radius: 50%;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.theme-switch-label {
    color: var(--blue);
    font-weight: 500;
    font-size: 14px;
    user-select: none;
}

/* Contact Section
   ========================================================================== */
.contact-section {
    position: relative;
    min-height: 100vh;
    background: var(--bg);
    overflow: hidden;
}

.contact-content {
    position: relative;
    z-index: 10;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.body-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    color: var(--blue);
    letter-spacing: 0.5px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
}

/* Contact Form Styles */
.contact-form {
    background: var(--bg);
    padding: 3rem;
    border: 3px solid var(--blue);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-family: 'Arial Black', sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--blue);
    background: var(--bg);
    color: var(--blue);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(248, 248, 248, 0.17);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--blue);
    color: var(--bg);
    border: none;
    font-family: 'Arial Black', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #333;
    transform: translateY(-2px);
}

.form-submit:active {
    transform: translateY(0);
}

.success-message {
    background: var(--blue);
    color: var(--bg);
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: none;
}

/* Ticker Section
   ========================================================================== */
.main-container {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: var(--bg);
}

.content-wrapper {
    position: relative;
    max-width: 100vw;
    min-height: 90vh;
    margin-bottom: 5vh;
}

.ticker-letter {
    position: absolute;
    color: var(--blue);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    opacity: 1;
    pointer-events: none;
    z-index: 100;
}

.coltext {
    color: var(--blue);
}

.coltextR {
    color: var(--blue);
    text-align: right;
}

.coltextL {
    color: var(--blue);
    text-align: center;
}

.coltext h3 {
    font-size: 5rem;
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'Times New Roman', Serif;
    transform: scaleY(0.6);
    line-height: 4.5rem;
}

.coltextR h3 {
    font-size: 5rem;
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'helvetica', Sans-Serif;
    transform: scaleY(1.2);
    line-height: 4.5rem;
}

.coltextL h3 {
    font-size: 5rem;
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'helvetica', Sans-Serif;
    transform: scaleX(1.2);
    line-height: 4.5rem;
}

.morph-icon {
    position: relative; 
    top: -0.2em; 
    font-size: 80%;
    animation: blink 1s infinite;
    animation-delay: 0ms;
}

.coltext:nth-child(1) .morph-icon {
    animation-delay: 50ms;
}

.coltextR:nth-child(2) .morph-icon {
    animation-delay: 250ms;
}

.coltext:nth-child(3) .morph-icon {
    animation-delay: 500ms;
}

#tickerbox {
    max-width: 100vw !important;
    overflow-x: hidden;
}

/* Philosophical Background Section
   ========================================================================== */
.philosophical-background {
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
}

.scrolling-text {
    font-size: clamp(3rem, 10vw, 12rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--blue);
    opacity: 0.1;
    white-space: nowrap;
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: 0.08em;
    will-change: transform;
    transform: translateX(0);
    line-height: 1;
}

.scrolling-text:nth-child(1) { opacity: 0.08; }
.scrolling-text:nth-child(2) { opacity: 0.05; }
.scrolling-text:nth-child(3) { opacity: 0.07; }
.scrolling-text:nth-child(4) { opacity: 0.04; }
.scrolling-text:nth-child(5) { opacity: 0.06; }

.overlayit {
    margin-top: -100vh;
}

.overlayed {
    overflow: hidden;
}

/* Star Section
   ========================================================================== */
.star-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: visible;
}

.geometric-star {
    width: 100%;
    height: 500px;
    position: relative;
    overflow-x: visible;
    z-index: 1;
}

#starSvg {
    width: 300%;
    height: 300%;
    position: absolute;
    top: -100%;
    left: -100%;
    z-index: 1;
}

.noflow {
    overflow-x: visible !important;
    position: relative;
    z-index: 10;
}

.star-layer {
    fill: none;
    stroke: var(--blue);
    stroke-width: 1;
    opacity: 0.3;
    overflow-x: visible;
}

.star-fill {
    fill: transparent;
    stroke: var(--blue);
    stroke-width: 1;
    opacity: 0.6;
}

.center-dot {
    fill: var(--blue);
    opacity: 0.9;
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 1;
}

/* Special Elements
   ========================================================================== */
.iconstars {
    font-size: 5em;
    color: var(--blue);
}

.things {
    font-family: "Times New Roman", serif;
    border: 5px solid var(--blue);
    text-transform: uppercase;
    color: var(--blue);
}

.things h3 {
    transform: scaleY(0.5);
    font-size: 2em;
    line-height: 1em;
    font-weight: 900;
}

.smallbiz {
    font-family: "helvetica", sans-serif;
    background-color: var(--blue);
    text-transform: uppercase;
}

.smallbiz h3 {
    transform: scaleX(0.8);
    color: var(--bg);
    font-size: 2em;
    line-height: 1em;
    font-weight: 900;
}

.things:hover {
    background-color: var(--blue);
    color: var(--blue);
}

.things:hover h3 {
    color: var(--bg);
}

.things:hover .smallbiz {
    background-color: var(--bg);
}

.things:hover .smallbiz h3 {
    color: var(--blue);
}

.maincontent {
    font-size: 1.2em;
    text-align: left;
    font-weight: 500;
    text-transform: none;
}

.ficon {
    animation: ficonblink 2s infinite;
    animation-delay: 0ms;
    padding: 10px;
}

.ficon:nth-child(1) { animation-delay: 0ms; }
.ficon:nth-child(2) { animation-delay: 250ms; }
.ficon:nth-child(3) { animation-delay: 500ms; }
.ficon:nth-child(4) { animation-delay: 750ms; }

/* Visual Effects
   ========================================================================== */
.noise {
    --lines: 4px;
    --expansion: 0px;
    mask: repeating-radial-gradient(
        circle at center,
        #000 var(--expansion),
        #000 calc(var(--expansion) + var(--lines)),
        #0000 calc(var(--expansion) + var(--lines)),
        #0000 calc(var(--expansion) + var(--lines) * 1.4)
    );
    animation: expandOutward 0.4s ease-out infinite;
}

.noise2 {
    --lines: 2px;
    mask: repeating-radial-gradient(
        circle at center,
        #000,
        var(--lines),
        #000,
        0,
        #0000,
        calc(var(--lines) * 2),
        #0000 0
    );
}

/* Animations
   ========================================================================== */
@keyframes expandOutward {
    0% { --expansion: 0px; }
    100% { --expansion: 300px; }
}

@keyframes noise {
    0% { transform: translate(0, 0); }
    10% { transform: translate(-1px, 1px); }
    20% { transform: translate(1px, -1px); }
    30% { transform: translate(-1px, -1px); }
    40% { transform: translate(1px, 1px); }
    50% { transform: translate(-1px, 1px); }
    60% { transform: translate(1px, -1px); }
    70% { transform: translate(-1px, -1px); }
    80% { transform: translate(1px, 1px); }
    90% { transform: translate(-1px, 1px); }
    100% { transform: translate(0, 0); }
}

@keyframes ficonblink {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    49% { opacity: 0; }
    50% { opacity: 1; }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes blink {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    49% { opacity: 0; }
    50% { opacity: 1; }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waveFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes ripple {
    to {
        transform: scale(20);
        opacity: 0;
    }
}

/* Responsive Design
   ========================================================================== */
@media (max-width: 1544px) {
    .title { 
        font-size: 3rem; 
        line-height: 3.7rem;
        text-align: right;
    }
    .subtitle { font-size: 3.4rem; }
    .corner-text { font-size: 0.8rem; }
    .orbiting-text { font-size: 4rem;line-height:3rem; }
    .header-text-container {
        right: 2%;
        top: 5%;
    }
    .image-gallery {
        width: 250px;
        left: 1%;
    }
    .gallery-item,
    .gallery-item-clone {
        width: 220px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .title { 
        font-size: 1.5rem; 
        line-height: 1.2rem;
        text-align: right;
        background: var(--bg);
    }
    .subtitle { 
        font-size: 1.8rem; 
        background: var(--bg);
    }
    .corner-text { font-size: 0.8rem; }
    .orbiting-text { 
        font-size: 4rem; 
        display: none;
    }
    .orbiting-text-head { 
        font-size: 2.5rem; 
        line-height:2rem;
        display: block;
    }
    .header-text-container {
        right: 2%;
        top: 5%;
    }
    .image-gallery {
        width: 250px;
        left: 1%;
    }
    .gallery-item,
    .gallery-item-clone {
        width: 220px;
        height: 140px;
        margin-bottom: 30px;
    }
    
    /* Mobile portfolio adjustments */
    .fullwidthport {
        min-height: 60vh;
    }
    .portfolio-content {
        text-align: left !important;
        padding-left: 0 !important;
    }
    .portfolio-additional {
        padding: 3rem 0 !important;
    }
    
    /* Mobile project cards */
    .project-card {
        margin-bottom: 30px;
    }
    .project-title {
        font-size: 1.5rem;
    }
    .tag-right,
    .tag-bottom,
    .tag-left {
        font-size: 1.5rem;
    }
    .project-image {
        top: 30px;
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
    .project-title {
        right: 30px;
        height: 30px;
    }
    .tag-right {
        width: 30px;
        bottom: 30px;
    }
    .tag-bottom {
        left: 30px;
        height: 30px;
    }
    .tag-left {
        width: 30px;
        top: 30px;
    }
    
    /* Mobile ticker adjustments */
    .content-wrapper {
        position: relative;
        width: 85vw;
        min-height: 90vh;
    }
    .coltext h3 {
        font-size: 2.2rem;
        line-height: 2.6rem;
    }
    .coltextR h3 {
        font-size: 2rem;
        line-height: 2.3rem;
    }
    .morph-icon {
        display: none;
    }
    .coltextL h3 {
        font-size: 4rem;
        text-transform: uppercase;
        font-weight: 900;
        font-family: 'helvetica', Sans-Serif;
        transform: scaleX(1.2);
        line-height: 4.5rem;
    }
    .ticker-letter {
        display: none;
    }
    
    /* Mobile soul title */
    .soultitle {
        font-size: 2rem;
        font-weight: 900;
        font-family: "Climate Crisis", sans-serif;
        margin-bottom: 0px;
        line-height: 2rem;
        user-select: none;
        will-change: transform;
    }
    
    /* Mobile star adjustments */
    .geometric-star {
        height: 400px;
    }
    .info-panel {
        font-size: 12px;
        padding: 10px;
    }
    body {
        cursor: auto;
    }
    .custom-cursor {
        display: none;
    }
    #starSvg {
        width: 200%;
        height: 200%;
        top: -50%;
        left: -50%;
    }
    .overlayit {
        overflow: hidden;
        margin-top: -100vh;
    }
    
    /* Mobile contact form */
    .contact-form {
        padding: 2rem;
    }
    .orbiting-text {
        font-size: clamp(2rem, 12vw, 4rem);
    }
    .title {
        font-size: clamp(1rem, 4vw, 4rem);
    }
    .subtitle {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }
}

@media (max-width: 750px) {
    .content-wrapper {
        width: 85vw;
    }
}