:root {
    /*TEXT STYLES*/
    --text-dark: black;
    --text-light: white;
    --text-grey: #adbdcc;
    --body-font: "Roboto", sans-serif;
    --heading-font: "Anek Telugu", sans-serif;
    --h1-size: 94px;
    --h1-height: 108px;
    --h2-size: 50px;
    --h2-height: 75px;
    --h3-size: 40px;
    --h4-size: 32px;
    --h5-size: 28px;
    --h6-size: 22px;
    --subtitle-size: 17px;
    --subtitle-height: 26px;
    --p-size: 18px;
    --p-height: 26px;
    --secondary-text-size: 14px;
    --secondary-text-height: 18px;
    --button-size: 16px;
    --standard-width: 1144px; 
    /* SPACING */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    /* COLORS */
    --purple-1: #6962f7;
    --purple-2: #7000ff;
    --blue-1: #00d4ff;
    --primary-accent: #0a2540;
    --primary-button-color: #6d7a88;
    --bg-white: white;
    --bg-light: #f7f9fc;
    /*GRADIENTS*/
    --standard-box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.15);
    --primary-gradient: linear-gradient(101.33deg, #08209a 0.76%, #6563ff 33.33%, #36c5f0 76.92%, #83e3ff 96.96%);
    --standard-border-radius: 20px;
}

html, body {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--body-font);
    color: var(--text-dark);
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    padding: var(--spacing-sm) 0 0 0;
    background-color: var(--bg-white);
}
main {
    width: 100%;
    margin: var(--spacing-xl) 0 0 0;
}
h1 {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: var(--h1-size);
    margin: 0;
    width: 100%;
    letter-spacing: -1px;
    line-height: var(--h1-height);
}
h2 {
    font-family: var(--heading-font);
    font-weight: var(--h3-size);
    font-weight: 600;
    margin: 0;
    width: 100%;
}
h3 {
    font-family: var(--heading-font);
    font-weight: var(--h3-size);
    font-weight: 500;
    margin: 0;
    width: 100%;
}
h4 {
    font-family: var(--heading-font);
    font-weight: var(--h4-size);
    font-weight: 500;
    margin: 0;
    width: 100%;
    letter-spacing: 0.25px;
}
h5 {
    font-family: var(--heading-font);
    font-weight: var(--h5-size);
    font-weight: 500;
    margin: 0;
    width: 100%;
}
h6 {
    font-family: var(--heading-font);
    font-weight: var(--h6-size);
    font-weight: 500;
    margin: 0;
    width: 100%;
}

a {
    text-decoration: none;
    color: var(--purple-1);
    font-weight: 500;
    transition: color 0.25s ease;
}
a:hover {
    color: var(--primary-accent);
}
p {
    font-size: var(--p-size);
    line-height: var(--p-height);
    font-weight: 400;
    margin: var(--spacing-md) 0;
}

.subtitle, .subtitle2 {
    color: var(--purple-1);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: var(--subtitle-size);
    line-height: var(--subtitle-height);
}
.subtitle2 {
    color: var(--blue-1);
}

.secondary-text {
    font-size: var(--secondary-text-size);
    line-height: var(--secondary-text-height);
    color: var(--text-grey);
    letter-spacing: 0.25px;
}

/*BUTTON STYLES*/
.primary-button {
    font-family: var(--body-font);
    font-size: var(--button-size);
    letter-spacing: 1.25px;
    font-weight: bold;
    border-radius: var(--standard-border-radius);
    border: none;
    background-color: var(--primary-accent);
    color: var(--text-light);
    padding: var(--spacing-sm) var(--spacing-md);
    transition: all 0.25s ease;
}
.primary-button:hover {
    background-color: var(--primary-button-color);
    cursor: pointer;
}
.secondary-button {
    font-family: var(--body-font);
    font-size: var(--button-size);
    letter-spacing: 1.25px;
    font-weight: bold;
    border-radius: var(--standard-border-radius);
    border: none;
    background-color: transparent;
    color: var(--primary-accent);
    transition: all 0.25s ease
}
.secondary-button:hover {
    opacity: 0.75;
    cursor: pointer;
}
.with-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.with-icon > img {
    transition: transform 0.25s ease;
}
.with-icon:hover > img {
    transform: translateX(4px);
}

/*COLUMNS*/
.section-container {
    width: 100%;
    max-width: var(--standard-width);
}
.two-column {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
}
.two-column > .col-left { /*direct col-left, cuz we might use nested col-left/col-right elements (when we have two columns in one column) */
   width: 50%;
   box-sizing: border-box;
   padding: 0 var(--spacing-md) 0 0;
   display: flex;
   flex-direction: column;
   align-items: start; /*left-right*/
   justify-content: center; /*up-down*/
}
.two-column > .col-right {
    width: 50%;
    box-sizing: border-box;
    padding: 0 0 0  var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: start; /*left-right*/
    justify-content: center; /*up-down*/
}
/*CARDS*/
.card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-sm) 0;
}
.card .icon {
    height: 50px;
    margin: 0 0 var(--spacing-sm);
}
.card h3 {
    font-family: var(--heading-font);
    font-weight: var(--h6-size);
    font-weight: 500;
    margin: 0;
    width: 100%;
}

/*ANIMATED GRADIENT*/
#gradient-canvas {
    width: 200%;
    height: 970px;
    transform: rotate(-10deg);
    position: absolute;
    top: -600px;
    left: -50%;
    z-index: -1;
    --gradient-color-1: #ef008f;
    --gradient-color-2: #6ec3f4;
    --gradient-color-3: #7038ff;
    --gradient-color-4: #ffba27;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--standard-width);
    padding: 0 var(--spacing-md);
    margin: 0 0 var(--spacing-xl) 0;
    box-sizing: border-box;
}
.menu {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
}
.menu a {
    color: var(--text-light);
    margin: 0 var(--spacing-md);
    font-weight: bold;
}
.menu a:hover {
    text-decoration: underline;
}
.navbar-button {
   background-color: rgba(250, 250, 250, 0.25); 
}
.navbar-button:hover {
    background-color: rgba(250, 250, 250, 0.5); 
}
.hamburger-button {
    display: none;
}

/* HERO-STYLES */
.hero {
    width: 100%;
    display: flex;
    justify-content: center;
}
.button-container {
    display: flex;
    flex-direction: row;
    margin: var(--spacing-md) 0;
}
.button-container button:nth-of-type(2) {
    margin: 0 0 0 var(--spacing-md);
    color: var(--purple-2);
}
.hero p {
    max-width: 480px;
}
.hero .hero-phone-container {
    height: 564px;
    align-items: flex-end;
}
.hero-phone {
    height: 628px;
    transform: translate(32px, -32px);
}

/*UP TOP BUTTON*/
#up-button {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 15px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgba(192, 198, 209, 0.4); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 7px 10px; /* Some padding */
    border-radius: 50%; /* Rounded corners */
}
#up-button:hover {
    background-color: rgba(192, 198, 209, 0.7); /* Add a dark-grey background on hover */
}
#up-button-image {
    transform: rotate(-90deg);
    height: 30px;
}

/*PARTNERS*/
.partner-section {
    width: 100%;
    display: flex;
    justify-content: center;
}
.partners-grid {
    margin: var(--spacing-xl) 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    row-gap: var(--spacing-lg); 
    column-gap: var(--spacing-md);
}
.partners-grid img {
    height: 60px;
    place-self: center;
}

/*UNIFIED PLATFORM*/
.unified-platform {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}
.unified-platform h2 {
    width: 50%;
    margin-bottom: var(--spacing-md);
}
.unified-platform .primary-button{
    background-color: var(--purple-1);
    margin: var(--spacing-md) 0;
}
.unified-platform .primary-button:hover{
    background-color: var(--primary-accent);
}

/*Graphic grid*/
.graphic-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--bg-light);
}
.graphic-grid {
    display: grid;
    grid-template-areas: 
        "card slack slack"
        "phone slack slack"
        "phone dash dash";
    grid-gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
}
#credit-card {
    grid-area: card;
    width: 100%;
    box-shadow: var(--standard-box-shadow);
    border-radius: var(--standard-border-radius);
}
#slack-invoice {
    grid-area: slack;
    width: 100%;
    box-shadow: var(--standard-box-shadow);
    border-radius: var(--standard-border-radius);
}
#phone {
    grid-area: phone;
    width: 100%;
}
#dash {
    grid-area: dash;
    width: 100%;
    box-shadow: var(--standard-box-shadow);
    border-radius: var(--standard-border-radius);
}

/*INTEGRATIONS SECTION*/
.integrations-section {
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--text-light);
    position: relative;
    padding: calc(var(--spacing-xl)*3) 0;
    z-index: 1;
}
.integrations-section::before {
    content: "";
    width: 100%;
    height: 1100px;
    background-color: var(--primary-accent);
    position: absolute;
    top: -32px;
    left: 0;
    z-index: -1;
    transform: skewY(-10deg);
}
.integrations-section::after {
    content: "";
    background-color: var(--bg-light);
    width: 100%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
.integrations-section .primary-button {
    margin: var(--spacing-md) 0 0 0;
    background-color: var(--blue-1);
    color: var(--primary-accent);
}
.integrations-section .primary-button:hover {
    background-color: var(--bg-white);
}
.integrations-section .card-container {
    display: flex;
    margin: var(--spacing-lg) 0;
}
.integrations-section .card-container .card {
    width: 50%;
}
.integrations-section .secondary-button {
    color: var(--blue-1);
}
#api-code {
    max-width: 470px;
    margin: 0 0 var(--spacing-md) 0;
    border-radius: var(--standard-border-radius);
}
#terminal-code {
    max-width: 470px;
    border-radius: var(--standard-border-radius);
}

/*WHY SWIPE SECTION*/
.why-swipe-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: calc(var(--spacing-xl)*3) 0;
}
.why-swipe-section .card-container {
    display: flex;
    margin: var(--spacing-lg) 0;
}
.why-swipe-section .card-container .card {
    width: 25%;
    padding: 0 var(--spacing-sm) 0 0;
    margin: 0 var(--spacing-sm) 0 0;
    box-sizing: border-box; /* those 25% includes the padding */
}
.why-swipe-section .secondary-text {
    color: var(--text-dark);
}

/* GLOBAL SECTION */
.global-section {
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--text-light);
    position: relative;
    padding: calc(var(--spacing-xl) * 3) 0 0 0;
}
.global-section::before {
    content: "";
    width: 100%;
    height: 1200px;
    background-color: var(--primary-accent);
    position: absolute;
    top: -32px;
    left: 0;
    z-index: -1;
    transform: skewY(-10deg);
}
.global-section a {
    color: var(--blue-1);
}
.global-section a:hover {
    color: var(--text-light);
}
.global-section .card-container {
    display: flex;
    margin: calc(var(--spacing-xl) * 2) 0;
}
.global-section .card-container .card {
    width: 25%;
    box-sizing: border-box;
    padding: 0 var(--spacing-sm) 0 0;
    margin: 0 var(--spacing-md) 0 0;
}
.global-section .card-container .card h3 {
    border-left: 2px var(--blue-1) solid;
    padding: 0 0 0 var(--spacing-sm);
    line-height: 28px;
}
#globe {
    max-width: 600px;
    opacity: 25%;
    position: absolute;
    top: 10%;
}

/*VIRTUAL EVENTS*/
.virtual-events-sections {
    display: flex;
    justify-content: center;
    padding: calc(var(--spacing-xl)*2) 0;
    position: relative;
}
.virtual-events-sections::before {
    content: "";
    background-color: var(--bg-white);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}
.virtual-events-sections .primary-button {
    background-color: var(--purple-1);
    margin: var(--spacing-md) 0;
}
.virtual-events-sections .primary-button:hover {
    background-color: var(--primary-accent);
}
.virtual-events-sections .col-left {
    height: 446px;
    padding: 0 var(--spacing-lg) 0 0;
}
.swipe-sessions-card {
    width: 540px;
    height: 446px;
    box-shadow: var(--standard-box-shadow);
    border-radius: var(--standard-border-radius);
    overflow: hidden;
}
.swipe-sessions-card .card-top {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;   
}
.swipe-sessions-card .card-top::before {
    background: var(--primary-gradient);
    content: "";
    width: 100%;
    height: 150%;
    position: absolute;
    top: -40%;
    transform: skewY(-5deg);
    z-index: 1;
}
#sessions-logo {
    z-index: 2;
    width: 338px;
}
.virtual-events-sections .avatars {
    position: absolute;
    z-index: 3;
    width: 140px;
    height: 80px;
    bottom: -70px;
    left: var(--spacing-xl);
}
.virtual-events-sections .avatars img {
    width: 80px;
}
.virtual-events-sections .avatars img:nth-of-type(2) {
    position: absolute;
    left: 55px;
}
.virtual-events-sections .card-bottom {
    width: 100%;
    height: 50%;
    box-sizing: border-box;
    padding: var(--spacing-xl);
}
.virtual-events-sections .card-bottom .subtitle {
    margin-top: var(--spacing-lg);
}
.virtual-events-sections .card-bottom .secondary-text{
    color: var(--text-dark);
    width: 50%;
    font-weight: bold;
}

/*GETTING STARTED SECTION*/
.getting-started-section {
    display: flex;
    justify-content: center;
    padding: var(--spacing-xl) 0;
}
.getting-started-section .primary-button {
    background-color: var(--purple-1);
    margin: var(--spacing-md) 0;
}
.getting-started-section .primary-button:hover {
    background-color: var(--primary-accent);
}
.getting-started-section .col-left {
    padding: 0 var(--spacing-xl) 0 0;
}
.getting-started-section .col-right {
    flex-direction: row;
}
.getting-started-section .col-right .card{
    width: 50%;
    box-sizing: border-box;
    padding: 0 var(--spacing-sm) 0 0;
    margin: 0 var(--spacing-md) 0 0;
}
.getting-started-section .col-right .card .secondary-button {
    color: var(--purple-2);
    padding-left: 0;
}

/*FOOTER*/
.footer {
    display: flex;
    justify-content: center;
    background-color: var(--bg-light);
    padding: var(--spacing-xl) 0;
}
#footer-logo {
    max-width: 108px;
    margin: 0 0 var(--spacing-md) 0;
}
.footer .section-container {
    display: flex;
    flex-direction: row;
}
.footer .col {
    width: 25%;
}
.footer .col ul {
    list-style: none;
    margin: none;
    padding: 0;
}
.footer .col ul li {
    margin: var(--spacing-md) 0;
}
.footer .col a {
    color: var(--text-dark);
    font-weight: normal;
}
.footer .col a:hover {
    color: var(--purple-1);
    text-decoration: underline;
}
.footer .icon-link {
    display: flex;
    align-items: center;
    margin: var(--spacing-md) 0;
}
.footer .icon-link img {
    width: 24px;
}
.footer h3 {
    font-size: var(--h6-size);
    font-weight: 700;
}


/*MEDIA QUERY*/
/*1144*/
@media only screen and (max-width: 1144px) {
    .section-container {
        padding: 0 var(--spacing-md);
    }
}
/*1040*/

@media only screen and (max-width: 1040px) {
    :root {
        --h1-size: 78px;
        --h1-height: 84px;
        --h3-size: 34px;
    }
    #gradient-canvas {
        height: 900px;
    }

    /*HERO*/
    .hero .col-left {
        width: 60%;
    }
    .hero .col-right {
        width: 40%;
    }
    .hero-phone {
        height: 550px;
        transform: translate(20px, -60px);
    }

    /*PARTNERS*/
    .partners-grid {
        margin:  -60px 0 var(--spacing-md) 0;
    }
}

/*850*/
@media only screen and (max-width: 850px) {
    :root {
        --h1-size: 65px;
        --h1-height: 68px;
    }
    #gradient-canvas {
        height: 880px;
    }

    /*HERO*/
    .hero-phone {
        transform: translateY(-80px);
    }

    /*PARTNERS*/
    .partners-grid img {
        width: 100%;
        height: auto;
    } /*depending on the grid*/

    /*INTEGRATIONS*/
    .integrations-section .col-left{
        width: 60%;
    }
    .integrations-section .col-right{
        width: 40%;
    }

    /*SESSIONS*/
    #sessions-logo {
        margin: 0 0 0 -80px;
        width: 250px;
    }
}

/*TABLET SIZE*/
@media only screen and (max-width: 768px) {
    :root {
        --h1-size: 58px;
        --h1-height: 68px;
        --h3-size: 34px;
    }
    main {
        margin: 0;
    }
    #gradient-canvas {
        height: 820px;
    }

    /*NAVBAR*/
    .navbar .menu {
        display: none;
    }
    .navbar .navbar-button {
        display: none;
    }
    .hamburger-button {
        width: 50px;
        height: 30px;
        background-color: rgba(250, 250, 250, 0.25);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hamburger-button .bar {
        width: 18px;
        height: 2px;
        background-color: var(--bg-white);
        margin: 2px 0;
        z-index: 5;
    }
    .navbar {
        margin: var(--spacing-sm) 0 var(--spacing-sm) 0;
    }

    /*HERO*/
    .hero .two-column {
        align-items: center;
    }
    .hero .col-left {
        width: 60%;
    }
    .hero .col-right {
        width: 40%;
    }
    .hero-phone {
        height: 450px;
        transform: translateX(32px);
    }

    /*PARTNERS*/
    .partners-grid {
        margin:  0 0 var(--spacing-lg) 0;
    }

    /*UNIFIED*/
    .unified-platform h2 {
        width: 100%;
    }

    /*INTEGRATIONS*/
    .integrations-section .card-container {
        flex-direction: column;
    }
    .integrations-section .card-container .card {
        width: 100%;
    }

    /*WHY-SWIPE*/
    .why-swipe-section {
        padding: var(--spacing-md) 0 var(--spacing-xl) 0;
    }
    .why-swipe-section .card-container {
        flex-wrap: wrap;
    }
    .why-swipe-section .card-container .card {
        width: 50%;
        margin: var(--spacing-md) 0;
    }

    /*GLOBAL*/
    .global-section .card-container {
        margin: var(--spacing-xl) 0;
        flex-wrap: wrap;
    }
    .global-section .card-container .card {
        width: 50%;
        margin: var(--spacing-md) 0;
    }

    /*VIRTUAL EVENTS*/
    .swipe-sessions-card {
        padding: var(--spacing-lg) 0 0 0;
        width: 300px;
        height: 346px;
    }
    #sessions-logo {
        margin: 0;
        width: 250px;
    }
    .swipe-sessions-card .card-bottom {
        margin: 0;
    }
    .swipe-sessions-card .card-bottom .secondary-text {
        width: 100%;
    }
    .virtual-events-sections .swipe-sessions-card .card-top {
        height: 35%;
    }

    /*GETTING-STARTED*/
    .getting-started-section .two-column {
        align-items: center;
    }
    .getting-started-section .col-right {
        flex-wrap: wrap;
    }
    .getting-started-section .col-right .card{
        width: 100%;
        margin: var(--spacing-md) 0;
    }
}

/*600*/
@media only screen and (max-width: 600px) {
    :root {
        --h1-size: 50px;
        --h1-height: 56px;
    }
}

/*MOBILE SIZE*/
@media only screen and (max-width: 550px) {
    :root {
        --h3-size: 34px;
    }
    main {
        margin: var(--spacing-md) 0 0 0;
    }
    .navbar {
        margin: 0 0 var(--spacing-lg) 0;
    }
    .two-column {
        flex-direction: column;
    }
    .two-column .col-left {
        width: 100%;
    }
    .two-column .col-right {
        width: 100%;
        padding: 0;
    }

    /*HERO*/
    .hero .col-right {
        display: none;
    }

    /*PARTNERS*/
    .partner-section {
        margin: var(--spacing-lg) 0 var(--spacing-md) 0;
    }
    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }

    /*UNIFIED*/
    .unified-platform {
        padding: var(--spacing-md) 0;
    }

    /*INTEGRATIONS*/
    .integrations-section  {
        padding: var(--spacing-lg) 0;
    }
    .integrations-section::before {
        height: 800px;
    }
    .integrations-section .col-right {
        display: none;
    }

    /*WHY-SWIPE*/
    .why-swipe-section {
        padding: var(--spacing-lg) 0;
    }
    .why-swipe-section .card-container .card {
        width: 100%;
        margin: var(--spacing-sm) 0;
    }
    .why-swipe-section .card-container .card .with-icon {
        width: 30px;
    }

    /*GLOBAL*/
    .global-section {
        padding: var(--spacing-xl) 0 0 0;
    }
    .global-section .card-container {
        margin: var(--spacing-md) 0;
    }
    .global-section .card-container .card {
        width: 100%;
        margin: var(--spacing-sm) 0;
    }
    #globe {
        opacity: 10%;
    }

    /*VIRTUAL EVENTS*/
    .virtual-events-sections {
        padding: 0;
    }
    .virtual-events-sections .col-left {
        height: auto;
    }
    .swipe-sessions-card {
        padding: var(--spacing-lg) 0 0 0;
        width: 350px;
        height: 346px;
    }
    .virtual-events-sections .col-right {
        margin: var(--spacing-sm) 0;
        padding: var(--spacing-sm) 0 0 0;
        width: 100%;
    }
    .virtual-events-sections .swipe-sessions-card .secondary-text {
        width: 80%;
    }
    .virtual-events-sections .swipe-sessions-card .card-top {
        height: 40%;
    }
    #sessions-logo {
        width: 300px;
    }

    /*GETTING STARTED*/
    .getting-started-section {
        padding: var(--spacing-sm) 0;
    }

    /*FOOTER*/
    .footer .section-container{
        flex-wrap: wrap;
    }
    .footer .col {
        width: 50%;
        margin: var(--spacing-md) 0;
    }
    .footer .col a {
        font-size: 13px;
    }
    #footer-logo {
        width: 64px;
    }
    .footer .icon-link img {
        width: 16px;
    }
}

.mobileNavbar {
    display: flex;
    width: 80px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 2;
    top: 0;
    right: -160px; /* for the further animation */
    padding: 0 10px;
    transition: transform 0.5s;
    list-style: none;
}
.mobileNavbar li {
    font-size: 1.1rem;
    margin: 8px 0;
}
.openNav  {
    transform: translateX(-160px);
}
.animateUp {
    animation: christUp 1s;
    animation-fill-mode: forwards;
    position: fixed;
}
.animateMiddle {
    animation: middleFade 1s;
    animation-fill-mode: forwards;
}
.animateDown {
    animation: christDown 1s;
    animation-fill-mode: forwards;
    position: fixed;
}
@keyframes christUp {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(45deg) translate(-5px, 5.5px);
        background-color: var(--purple-1);
    }
}
@keyframes middleFade {
    from {
        transform: scaleX(1);
        opacity: 1;
    }
    to {
        transform: scaleX(0);
        opacity: 0;
    }
}
@keyframes christDown {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-45deg) translate(-5px, -5.5px);
        background-color: var(--purple-1);
    }
}