/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    /* HEADER */
    header {
        background-image: linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));
        width: 100%;
        position: sticky;
        z-index: 10;
        top: 0;
    }

    nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    nav ul {
        display: flex;
        justify-content: space-between;
        list-style: none;
        padding: 0;
        margin: 0 25px;
        text-transform: none;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 20px;
        background-color: transparent;
        padding: 10px 25px;
    }

    nav ul li a {
        color: #000000;
    }

    #logo {
        max-width: 100px;
    }

    #howitworks,
    #downloadnow {
        display: none;
    }

    #hamburger {
        display: block;
        align-self: flex-end;
        position: absolute;
        z-index: 20;
        right: 20px;
        top: 0;
    }

    nav ul.active {
        flex-direction: column;
        align-items: start;
    }

    nav ul.active #howitworks,
    nav ul.active #downloadnow {
        display: block;
        margin-top: 20px;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* MAIN */
    main {
        transform: translateY(-8vh);
        width: 100%;
    }

    .gap {
        margin: 8px 0;
    }

    .download-button {
        width: 125px;
        max-width: 125px;
        margin: 0 10px;
    }


    /* LANDING AREA */
    #landing-area {
        display: flex;
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
        position: relative;
        border-bottom: 3px white solid;
    }

    #introduction {
        font-size: 25px;
        margin: 10px 0;
    }

    #powered-by {
        font-size: 15px;
    }

    #landing-group {
        backdrop-filter: blur(5px);
        border-radius: 10px;
        padding: 0;
    }

    #fade {
        background-image: linear-gradient(to bottom, transparent, #FFFFFF);
        position: absolute;
        height: 75px;
        width: 100%;
        bottom: 0;
        z-index: 3;
    }

    #maximize-what-you-can-do-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 50vh;
        font-size: 20px;
        margin: 0 0 -8vh 0;
    }

    .center-align {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #serbiz-ai {
        background-image: linear-gradient(to right, #F684FF, #946DFF, #946DFF, #946DFF);
        color: transparent;
        background-clip: text;
        font-weight: 600;
    }

    #what-you-have {
        background-image: linear-gradient(to right, #EA6969, #C934BC, #C934BC);
        color: transparent;
        background-clip: text;
        font-weight: 600;
    }

    #middle-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        z-index: 2;
        height: 100%;
        width: 100%;
        margin: 0;
    }

    .marquee-container {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: absolute;
        overflow: hidden;
    }

    #marquee-left,
    #marquee-right {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        z-index: 1;
        gap: 0;
    }

    #marquee-left img,
    #marquee-right img {
        width: 175px;
    }

    #marquee-left {
        margin: 0;
        animation: scroll-up-left 9s linear infinite;
    }

    #marquee-left li:nth-child(2) {
        transform: translateY(0);
    }

    #marquee-left li:nth-child(3) {
        transform: translateY(0);
    }

    #marquee-left li:nth-child(4) {
        transform: translateY(0);
    }

    #marquee-left li:nth-child(5) {
        transform: translateY(0);
    }

    #marquee-left li:nth-child(6) {
        transform: translateY(0);
    }

    #marquee-left li:nth-child(7) {
        transform: translateY(0);
    }

    #marquee-left li:nth-child(8) {
        transform: translateY(0);
    }

    #marquee-left li:nth-child(9) {
        transform: translateY(0);
    }

    #marquee-left li:nth-child(10) {
        transform: translateY(0);
    }

    #marquee-left li:nth-child(11) {
        transform: translateY(0);
    }

    #marquee-left li:nth-child(12) {
        transform: translateY(0);
    }

    #marquee-right {
        margin: 0;
        animation: scroll-down-right 10s linear infinite;
    }

    #marquee-right li:nth-child(2) {
        transform: translateY(0);
    }

    #marquee-right li:nth-child(3) {
        transform: translateY(0);
    }

    #marquee-right li:nth-child(4) {
        transform: translateY(0);
    }

    #marquee-right li:nth-child(5) {
        transform: translateY(0);
    }

    #marquee-right li:nth-child(6) {
        transform: translateY(0);
    }

    #marquee-right li:nth-child(7) {
        transform: translateY(0);
    }

    #marquee-right li:nth-child(8) {
        transform: translateY(0);
    }

    #marquee-right li:nth-child(9) {
        transform: translateY(0);
    }

    #marquee-right li:nth-child(10) {
        transform: translateY(0);
    }

    #marquee-right li:nth-child(11) {
        transform: translateY(0);
    }

    #marquee-right li:nth-child(12) {
        transform: translateY(0);
    }

    @keyframes scroll-up-left {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-360%);
        }
    }

    @keyframes scroll-down-right {
        from {
            transform: translateX(-360%);
        }

        to {
            transform: translateX(0);
        }
    }

    #download-now-area {
        height: 10px;
    }

    #next-area {
        background-color: #FFFFFF;
        border: none;
        height: 60px;
        font-size: 3em;
        padding: 0 15px;
        border-radius: 100px;
        color: #000000;
    }

    #random-container {
        height: 75px;
    }


    /* HOW IT WORKS AREA */
    #how-it-works-area {
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .hustler-reader {
        overflow: hidden;
        width: 100%;
        height: 80vh;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hustler {
        display: flex;
        flex-direction: row;
        width: 100%;
        transition: transform 0.15s ease;
        max-width: 100vw;
        height: 100vh;
        margin: auto 0;
    }

    .hustler-page {
        min-width: 100%;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


    .hustler .hustler-page video {
        max-height: 50vh;
        margin: 15px 0 0 0;
    }

    .hustler-description .label {
        color: #F142E5;
        font-size: 20px;
    }

    .hustler-description h1 {
        font-size: 25px;
        font-weight: 600;
    }

    .hustler-description h1 span {
        text-decoration: underline;
        font-size: 25px;
    }

    .hustler-description h2 {
        font-size: 15px;
        font-weight: 500;
    }

    .hustler-description h3 {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }

    .hustler-description h3 div {
        color: #979797;
        margin: 10px 0 0 0;
    }

    .navigation {
        position: absolute;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .nav-btn {
        background-color: #F7F7F7;
        color: #000000;
        border: none;
        border-radius: 100px;
        padding: 14px 18px;
        margin: 0 15px;
        font-size: 15px;
        outline: none;
    }

    .indicator {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .page-indicator {
        background-color: #000000;
        border-radius: 100px;
        margin: 0 2.5px;
        height: 10px;
        width: 10px;
        outline: none;
    }

    #lister-area {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lister-reader {
        overflow: hidden;
        width: 100%;
        height: 85vh;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .lister {
        display: flex;
        flex-direction: row;
        width: 100%;
        transition: transform 0.15s ease;
        max-width: 100vw;
        height: 100vh;
        margin: auto 0;
    }

    .lister-page {
        min-width: 100%;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .lister .lister-page video {
        max-height: 50vh;
        margin: 15px 0 0 0;
    }

    .lister-description .label {
        color: #701BD1;
        font-size: 20px;
    }

    .lister-description h1 {
        font-size: 25px;
        font-weight: 600;
    }

    .lister-description h1 span {
        text-decoration: underline;
        font-size: 25px;
    }

    .lister-description h2 {
        font-size: 15px;
        font-weight: 500;
    }

    .lister-description h3 {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }

    .lister-description h3 div {
        color: #979797;
        margin: 10px 0 0 0;
    }


    /* SWITCH AREA */
    #purple-gradient {
        background-image: linear-gradient(to right, #EB8AFF, #643098);
        color: transparent;
        height: 125px;
        margin: 50px 0;
    }

    #purple-gradient h2 {
        color: #FFFFFF;
        font-size: 25px;
    }

    #hustler-mode {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    #hustler-mode h3 {
        color: #000000;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 20px;
        text-align: center;
        margin: 15px 0 0 0;
    }

    #hustler-mode h3 span {
        color: #E66FEF;
    }

    #lister-mode {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #lister-mode h3 {
        color: #000000;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 20px;
        text-align: center;
        margin: 15px 0 0 0;
    }

    #lister-mode h3 span {
        color: #645689;
    }

    #switch-area {
        display: flex;
        flex-direction: row;
        height: 70vh;
        margin: 0 0 0 0;
        padding: 0 13px 0 18px;
        font-size: 35px;
        align-items: center;
        justify-content: center;
    }

    #switch-arrow {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        margin: 0 15px;
    }

    .switch-phone {
        height: 250px;
        margin: 15px 0;
    }

    .right-arrow {
        transform: translateY(5px);
    }

    .left-arrow {
        transform: translateY(-5px);
    }


    /* COMMENTS AREA */
    #what-users-say-area {
        min-height: 115vh;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: space-evenly;
        font-size: 20px;
        padding: 15px;
    }

    #grid-notes {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto;
        gap: 15px;
        margin: 50px auto 0;
        max-width: 100%;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 400;
        font-size: 15px;
    }

    .grid-item {
        border-radius: 5px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        text-align: left !important;
        justify-content: space-between;
    }

    .grid-item span {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 600;
        font-size: 15px;
        margin: 15px 0 0 0;

    }

    .yellow {
        background-color: #FCFFCF;
        grid-column: span 3;
    }

    .blue {
        background-color: #CFF9FF;
        grid-column: span 3;
    }

    .orange {
        background-color: #FFE0D0;
        grid-column: span 3;
        grid-row: span 2;
    }

    .purple {
        background-color: #E1CFFF;
        grid-column: span 3;
    }

    .pink {
        background-color: #FFC3DF;
        grid-column: span 3;
    }

    .violet {
        background-color: #E1CFFF;
        grid-column: span 3;
    }


    /* FOOTER */
    footer {
        width: 100%;
        background-color: #FEF9FF;
        bottom: 0;
        padding: 30px;
    }

    footer section {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    footer section ul li {
        font-family: "Plus Jakarta Sans", sans-serif;
    }

    footer section ul li img {
        max-width: 150px;
        font-weight: 400;
        margin: 0 0 16px 0;
    }

    #contact-us {
        font-size: 25px;
        margin: 0 0 8px 0;
    }

    #email {
        font-size: 15px;
    }

    #copyright {
        margin: 24px 0 0 0;
    }

    #copyright-serbiz {
        font-size: 15px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    /* HEADER */
    header {
        background-color: transparent;
        width: 100%;
        position: sticky;
        z-index: 10;
        top: 0;
    }

    nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    nav ul {
        display: flex;
        justify-content: space-between;
        list-style: none;
        padding: 0;
        margin: 0;
        text-transform: none;
    }

    nav ul li {
        margin: 30px 65px 0 65px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 20px;
    }

    nav ul li a {
        color: #000000;
    }

    #logo {
        max-width: 108px;
    }


    /* MAIN */
    main {
        transform: translateY(-13vh);
        width: 100%;
    }

    .gap {
        margin: 16px 0;
    }

    .download-button {
        width: 150px;
        max-width: 150px;
        margin: 0 10px;
    }


    /* LANDING AREA */
    #landing-area {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    #introduction {
        font-size: 30px;
        margin: 0;
    }

    #powered-by {
        font-size: 20px;
    }

    #fade {
        background-image: linear-gradient(to bottom, transparent, #FFFFFF);
        position: absolute;
        height: 50px;
        width: 100%;
        bottom: 0;
        z-index: 3;
    }

    #what-users-say-area {
        height: 100vh;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        font-size: 25px;
    }

    #maximize-what-you-can-do-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 50vh;
        font-size: 30px;
    }

    .center-align {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #serbiz-ai {
        background-image: linear-gradient(to right, #F684FF, #946DFF, #946DFF, #946DFF);
        color: transparent;
        background-clip: text;
        font-weight: 600;
    }

    #what-you-have {
        background-image: linear-gradient(to right, #EA6969, #C934BC, #C934BC);
        color: transparent;
        background-clip: text;
        font-weight: 600;
    }

    #middle-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }

    .marquee-container {
        overflow: hidden;
        width: 100%;
        height: 100vh;
        position: absolute;
        z-index: 20;
        display: flex;
        justify-content: space-between;
    }

    #marquee-left {
        display: flex;
        flex-direction: column;
        animation: scroll-up-left 15s linear infinite;
        align-items: flex-start;
    }

    .marquee-left .marquee-right {
        position: relative;
        transform: translate3d(0, 0, 0);
    }


    #marquee-right {
        display: flex;
        flex-direction: column;
        animation: scroll-down-right 15s linear infinite;
        align-items: flex-end;
    }

    #marquee-right li {
        transition: transform 0.3s ease, z-index 0.3s ease;
    }

    #marquee-right:hover {
        animation-play-state: paused;
    }

    @media (hover: none) and (pointer: coarse) {
        #marquee-left li:hover {
            transform: none;
            z-index: initial;
        }

        #marquee-left:hover {
            animation-play-state: running;
        }

        #marquee-right li:hover {
            transform: none;
            z-index: initial;
        }

        #marquee-right:hover {
            animation-play-state: running;
        }
    }

    @keyframes scroll-up-left {
        from {
            transform: translateY(0);
        }

        to {
            transform: translateY(-180%);
        }
    }

    @keyframes scroll-down-right {
        from {
            transform: translateY(-180%);
        }

        to {
            transform: translateY(0);
        }
    }

    .marquee-left img,
    .marquee-right img {
        transform: translate3d(0, 0, 0);
    }

    #download-now-area {
        height: 10px;
    }

    #next-area {
        background-color: transparent;
        border: none;
        height: 60px;
        font-size: 3em;
    }

    #random-container {
        height: 0;
    }


    /* HOW IT WORKS AREA */
    #how-it-works-area {
        height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hustler-reader {
        overflow: hidden;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hustler {
        display: flex;
        flex-direction: row;
        /* justify-content: space-around;
        align-items: center; */
        width: 100%;
        transition: transform 0.15s ease;
        max-width: 100vw;
        margin: auto 0;
    }

    .hustler-page {
        min-width: 100%;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }


    .hustler .hustler-page video {
        max-height: 80vh;
    }

    .hustler-description .label {
        color: #F142E5;
        font-size: 25px;
    }

    .hustler-description h1 {
        font-size: 35px;
        font-weight: 600;
    }

    .hustler-description h1 span {
        text-decoration: underline;
        font-size: 35px;
    }

    .hustler-description h2 {
        font-size: 20px;
        font-weight: 500;
    }

    .hustler-description h3 {
        font-size: 20px;
        font-weight: 500;
        color: #000000;
    }

    .hustler-description h3 div {
        color: #979797;
        margin: 10px 0 0 0;
    }

    .navigation {
        position: absolute;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .nav-btn {
        background-color: #F7F7F7;
        color: #000000;
        border: none;
        border-radius: 100px;
        padding: 14px 18px;
        margin: 0 15px;
        font-size: 24px;
        outline: none;
    }

    .indicator {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .page-indicator {
        background-color: #000000;
        border-radius: 100px;
        margin: 0 2.5px;
        height: 15px;
        width: 15px;
        outline: none;
    }

    #lister-area {
        height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lister-reader {
        overflow: hidden;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .lister {
        display: flex;
        flex-direction: row;
        /* justify-content: space-around;
        align-items: center; */
        width: 100%;
        transition: transform 0.15s ease;
        max-width: 100vw;
        margin: auto 0;
    }

    .lister-page {
        min-width: 100%;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .lister .lister-page video {
        max-height: 80vh;
    }

    .lister-description .label {
        color: #701BD1;
        font-size: 29px;
    }

    .lister-description h1 {
        font-size: 35px;
        font-weight: 600;
    }

    .lister-description h1 span {
        text-decoration: underline;
        font-size: 35px;
    }

    .lister-description h2 {
        font-size: 20px;
        font-weight: 500;
    }

    .lister-description h3 {
        font-size: 20px;
        font-weight: 500;
        color: #000000;
    }

    .lister-description h3 div {
        color: #979797;
        margin: 10px 0 0 0;
    }


    /* SWITCH AREA */
    #purple-gradient {
        background-image: linear-gradient(to right, #EB8AFF, #643098);
        color: transparent;
        height: 150px;
        margin: 0;
    }

    #purple-gradient h2 {
        color: #FFFFFF;
        font-size: 35px;
    }

    #hustler-mode {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #hustler-mode h3 {
        color: #000000;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 20px;
        text-align: center;
        margin: 15px 0 0 0;
    }

    #hustler-mode h3 span {
        color: #E66FEF;
    }

    #lister-mode {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #lister-mode h3 {
        color: #000000;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 20px;
        text-align: center;
        margin: 15px 0 0 0;
    }

    #lister-mode h3 span {
        color: #645689;
    }

    #switch-area {
        display: flex;
        flex-direction: row;
        height: 90vh;
        margin: 0 0 0 0;
        font-size: 35px;
        align-items: center;
        justify-content: center;
    }

    #switch-arrow {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 48px;
        margin: 0 50px;
    }

    .switch-phone {
        height: 300px;
        margin: 15px 0;
    }

    .right-arrow {
        transform: translateY(10px);
    }

    .left-arrow {
        transform: translateY(-10px);
    }


    /* COMMENTS AREA */
    #grid-notes {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        grid-template-rows: auto;
        gap: 15px;
        margin: 25px auto 0;
        max-width: 1200px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 400;
        font-size: 15px;
    }

    .grid-item {
        border-radius: 5px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        text-align: left !important;
        justify-content: space-between;
    }

    .grid-item span {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 600;
        font-size: 15px;
        margin: 15px 0 0 0;

    }

    .yellow {
        background-color: #FCFFCF;
        grid-column: span 3;
        grid-row: span 2;
    }

    .blue {
        background-color: #CFF9FF;
        grid-column: span 2;
        grid-row: span 2;
    }

    .orange {
        background-color: #FFE0D0;
        grid-column: span 2;
    }

    .purple {
        background-color: #E1CFFF;
        grid-column: span 2;
        grid-row: 3;
    }

    .pink {
        background-color: #FFC3DF;
        grid-column: span 3;
        grid-row: 3;
    }

    .violet {
        background-color: #E1CFFF;
        grid-column: span 2;
        grid-row: span 2;
    }


    /* FOOTER */
    footer {
        width: 100%;
        background-color: #FEF9FF;
        bottom: 0;
        padding: 50px 100px;
    }

    footer section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    footer section ul li {
        font-family: "Plus Jakarta Sans", sans-serif;
    }

    footer section ul li img {
        max-width: 200px;
        font-weight: 400;
        margin: 0 0 16px 0;
    }

    #contact-us {
        font-size: 35px;
        margin: 0 0 16px 0;
    }

    #email {
        font-size: 15px;
    }

    #copyright-serbiz {
        font-size: 15px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    /* HEADER */
    header {
        background-image: linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));
        width: 100%;
        position: sticky;
        z-index: 10;
    }

    nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    nav ul {
        display: flex;
        justify-content: space-between;
        list-style: none;
        padding: 0;
        margin: 0 25px;
        text-transform: none;
        width: 100%;
    }

    nav ul li {
        margin: 20px 0;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        background-color: transparent;
        padding: 10px 25px;
        font-size: 20px;
    }

    nav ul li a {
        color: #000000;
    }

    #logo {
        max-width: 100px;
    }

    #howitworks,
    #downloadnow {
        display: none;
    }

    #hamburger {
        display: block;
        align-self: flex-end;
        position: absolute;
        z-index: 20;
        right: 20px;
        top: 0;
    }

    nav ul.active {
        flex-direction: column;
        align-items: start;
    }

    nav ul.active #howitworks,
    nav ul.active #downloadnow {
        display: block;
        margin-top: 20px;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* MAIN */
    main {
        transform: translateY(-8vh);
        width: 100%;
    }

    .gap {
        margin: 8px 0;
    }

    .download-button {
        width: 150px;
        max-width: 150px;
        margin: 0 10px;
    }


    /* LANDING AREA */
    #landing-area {
        display: flex;
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
        position: relative;
    }

    #introduction {
        font-size: 30px;
        margin: 25px 0;
    }

    #powered-by {
        font-size: 20px;
    }

    #landing-group {
        backdrop-filter: none;
        border-radius: 0;
        padding: 0;
    }

    #fade {
        background-image: linear-gradient(to bottom, transparent, #FFFFFF);
        position: absolute;
        height: 75px;
        width: 100%;
        bottom: 0;
        z-index: 3;
    }

    #maximize-what-you-can-do-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 30vh;
        font-size: 20px;
    }

    .center-align {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #serbiz-ai {
        background-image: linear-gradient(to right, #F684FF, #946DFF, #946DFF, #946DFF);
        color: transparent;
        background-clip: text;
        font-weight: 600;
    }

    #what-you-have {
        background-image: linear-gradient(to right, #EA6969, #C934BC, #C934BC);
        color: transparent;
        background-clip: text;
        font-weight: 600;
    }

    #middle-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        z-index: 2;
        position: relative;
        height: 100%;
    }

    .marquee-container {
        overflow: hidden;
        width: 100%;
        height: 100vh;
        position: absolute;
        z-index: 20;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .marquee-container ul li {
        transform: rotate(0);
    }

    #marquee-left {
        display: flex;
        flex-direction: column;
        animation: scroll-up-left 14s linear infinite;
        align-items: flex-start;
        z-index: 1;
    }

    #marquee-left li {
        transition: transform 0.3s ease, z-index 0.3s ease;
    }

    #marquee-left:hover {
        animation-play-state: paused;
    }

    #marquee-right li:nth-child(9) {
        transform: translateY(-145px);
    }

    #marquee-left img {
        width: 250px;
    }

    .marquee-left .marquee-right {
        position: relative;
        transform: translate3d(0, 0, 0);
    }

    #marquee-right {
        display: flex;
        flex-direction: column;
        animation: scroll-down-right 12s linear infinite;
        align-items: flex-start;
        z-index: 1;
    }

    #marquee-right li {
        transition: transform 0.3s ease, z-index 0.3s ease;
    }

    #marquee-right:hover {
        animation-play-state: paused;
    }

    @media (hover: none) and (pointer: coarse) {
        #marquee-left li:hover {
            transform: none;
            z-index: initial;
        }

        #marquee-left:hover {
            animation-play-state: running;
        }

        #marquee-right li:hover {
            transform: none;
            z-index: initial;
        }

        #marquee-right:hover {
            animation-play-state: running;
        }
    }

    #marquee-right img {
        width: 250px;
    }

    @keyframes scroll-up-left {
        from {
            transform: translateY(0);
        }

        to {
            transform: translateY(-228%);
        }
    }

    @keyframes scroll-down-right {
        from {
            transform: translateY(-224%);
        }

        to {
            transform: translateY(0);
        }
    }

    #download-now-area {
        height: 10px;
    }

    #next-area {
        background-color: #FFFFFF;
        border: none;
        height: 60px;
        font-size: 3em;
        padding: 0 15px;
        border-radius: 100px;
    }

    #random-container {
        height: 0;
    }


    /* HOW IT WORKS AREA */
    #how-it-works-area {
        height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hustler-reader {
        overflow: hidden;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hustler {
        display: flex;
        flex-direction: row;
        width: 100%;
        transition: transform 0.15s ease;
        max-width: 100vw;
        margin: auto 0;
    }

    .hustler-page {
        min-width: 100%;
        width: 100%;
        padding: 0 75px;
        height: auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }


    .hustler .hustler-page video {
        max-height: 50vh;
        margin: 15px 0 0 0;
    }

    .hustler-description .label {
        color: #F142E5;
        font-size: 20px;
    }

    .hustler-description h1 {
        font-size: 25px;
        font-weight: 600;
    }

    .hustler-description h1 span {
        text-decoration: underline;
        font-size: 25px;
    }

    .hustler-description h2 {
        font-size: 15px;
        font-weight: 500;
    }

    .hustler-description h3 {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }

    .hustler-description h3 div {
        color: #979797;
        margin: 10px 0 0 0;
    }

    .navigation {
        position: absolute;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .nav-btn {
        background-color: #F7F7F7;
        color: #000000;
        border: none;
        border-radius: 100px;
        padding: 14px 18px;
        margin: 0 15px;
        font-size: 15px;
        outline: none;
    }

    .indicator {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .page-indicator {
        background-color: #000000;
        border-radius: 100px;
        margin: 0 2.5px;
        height: 10px;
        width: 10px;
        outline: none;
    }

    #lister-area {
        height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lister-reader {
        overflow: hidden;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .lister {
        display: flex;
        flex-direction: row;
        width: 100%;
        transition: transform 0.15s ease;
        max-width: 100vw;
        margin: auto 0;
    }

    .lister-page {
        min-width: 100%;
        width: 100%;
        padding: 0 75px;
        height: auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .lister .lister-page video {
        max-height: 50vh;
        margin: 15px 0 0 0;
    }

    .lister-description .label {
        color: #701BD1;
        font-size: 20px;
    }

    .lister-description h1 {
        font-size: 25px;
        font-weight: 600;
    }

    .lister-description h1 span {
        text-decoration: underline;
        font-size: 25px;
    }

    .lister-description h2 {
        font-size: 15px;
        font-weight: 500;
    }

    .lister-description h3 {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }

    .lister-description h3 div {
        color: #979797;
        margin: 10px 0 0 0;
    }


    /* SWITCH AREA */
    #purple-gradient {
        background-image: linear-gradient(to right, #EB8AFF, #643098);
        color: transparent;
        height: 125px;
        margin: 75px 0;
    }

    #purple-gradient h2 {
        color: #FFFFFF;
        font-size: 25px;
    }

    #hustler-mode {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    #hustler-mode h3 {
        color: #000000;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 20px;
        text-align: center;
        margin: 15px 0 0 0;
    }

    #hustler-mode h3 span {
        color: #E66FEF;
    }

    #lister-mode {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #lister-mode h3 {
        color: #000000;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 20px;
        text-align: center;
        margin: 15px 0 0 0;
    }

    #lister-mode h3 span {
        color: #645689;
    }

    #switch-area {
        display: flex;
        flex-direction: row;
        height: 50vh;
        margin: 0 0 0 0;
        padding: 0 13px 0 18px;
        font-size: 35px;
        align-items: center;
        justify-content: center;
    }

    #switch-arrow {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        margin: 0 15px;
    }

    .switch-phone {
        height: 250px;
        margin: 15px 0;
    }

    .right-arrow {
        transform: translateY(5px);
    }

    .left-arrow {
        transform: translateY(-5px);
    }


    /* COMMENTS AREA */
    #what-users-say-area {
        height: 70vh;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: space-evenly;
        font-size: 20px;
        padding: 15px;
    }

    #grid-notes {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto;
        gap: 15px;
        margin: 15px auto 0;
        max-width: 100%;
        max-height: 80vh;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 400;
        font-size: 15px;
    }

    .grid-item {
        border-radius: 5px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        text-align: left !important;
        justify-content: space-between;
    }

    .grid-item span {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 600;
        font-size: 15px;
        margin: 15px 0 0 0;

    }

    .yellow {
        background-color: #FCFFCF;
        grid-column: span 3;
    }

    .blue {
        background-color: #CFF9FF;
        grid-column: span 3;
    }

    .orange {
        background-color: #FFE0D0;
        grid-column: span 3;
        grid-row: span 2;
    }

    .purple {
        background-color: #E1CFFF;
        grid-column: span 3;
    }

    .pink {
        background-color: #FFC3DF;
        grid-column: span 3;
    }

    .violet {
        background-color: #E1CFFF;
        grid-column: span 3;
    }


    /* FOOTER */
    footer {
        width: 100%;
        background-color: #FEF9FF;
        bottom: 0;
        padding: 30px;
    }

    footer section {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    footer section ul li {
        font-family: "Plus Jakarta Sans", sans-serif;
    }

    footer section ul li img {
        max-width: 150px;
        font-weight: 400;
        margin: 0 0 16px 0;
    }

    #contact-us {
        font-size: 25px;
        margin: 0 0 8px 0;
    }

    #email {
        font-size: 15px;
    }

    #copyright {
        margin: 24px 0 0 0;
    }

    #copyright-serbiz {
        font-size: 15px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 1280px) {

    /* HEADER */
    header {
        background-color: transparent;
        width: 100%;
        position: sticky;
        z-index: 10;
        top: 0;
    }

    nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    nav ul {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin: 0;
        text-transform: none;
    }

    nav ul li {
        margin: 50px 65px 0 65px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 20px;
    }

    nav ul li a {
        color: #000000;
    }

    #logo {
        max-width: 100px;
    }

    #howitworks,
    #downloadnow {
        display: block;
    }

    #hamburger {
        display: none;
    }

    nav ul.active {
        flex-direction: column;
        align-items: start;
    }

    nav ul.active #howitworks,
    nav ul.active #downloadnow {
        display: none;
        margin-top: 20px;
        animation: fadeIn 0.3s ease;
    }


    /* MAIN */
    main {
        transform: translateY(-8vh);
        width: 100%;
    }

    .gap {
        margin: 16px 0;
    }

    .download-button {
        width: 150px;
        max-width: 150px;
        margin: 0 10px;
    }


    /* LANDING AREA */
    #landing-area {
        display: flex;
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }

    #introduction {
        font-size: 56px;
    }

    #powered-by {
        font-size: 24px;
    }

    #fade {
        background: linear-gradient(to bottom, transparent, #FFFFFF);
        position: absolute;
        height: 150px;
        width: 100%;
        bottom: 0;
        z-index: 3;
    }

    #what-users-say-area {
        height: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        font-size: 35px;
    }

    #maximize-what-you-can-do-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 50vh;
        font-size: 35px;
        margin: 0 0 -8vh 0;
    }

    .center-align {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #serbiz-ai {
        background-image: linear-gradient(to right, #F684FF, #946DFF, #946DFF, #946DFF);
        color: transparent;
        background-clip: text;
        font-weight: 600;
    }

    #what-you-have {
        background-image: linear-gradient(to right, #EA6969, #C934BC, #C934BC);
        color: transparent;
        background-clip: text;
        font-weight: 600;
    }

    #middle-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        z-index: 2;
        position: relative;
        height: 100%;
    }

    .marquee-container {
        overflow: hidden;
        width: 100%;
        height: 100vh;
        position: absolute;
        z-index: 20;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .marquee-container ul li {
        transform: rotate(0);
    }

    #marquee-left {
        display: flex;
        flex-direction: column;
        animation: scroll-up-left 12s linear infinite;
        align-items: flex-start;
    }


    #marquee-left li {
        transition: transform 0.3s ease, z-index 0.3s ease;
    }

    #marquee-left:hover {
        animation-play-state: paused;
    }

    #marquee-left img {
        width: 400px;
    }

    .marquee-left .marquee-right {
        position: relative;
        transform: translate3d(0, 0, 0);
    }

    #marquee-left li:nth-child(2) {
        transform: translateY(-5px);
    }

    #marquee-left li:nth-child(3) {
        transform: translateY(-30px);
    }

    #marquee-left li:nth-child(4) {
        transform: translateY(-50px);
    }

    #marquee-left li:nth-child(5) {
        transform: translateY(-85px);
    }

    #marquee-left li:nth-child(6) {
        transform: translateY(-90px);
    }

    #marquee-left li:nth-child(7) {
        transform: translateY(-110px);
    }

    #marquee-left li:nth-child(8) {
        transform: translateY(-130px);
    }

    #marquee-left li:nth-child(9) {
        transform: translateY(-140px);
    }

    #marquee-left li:nth-child(10) {
        transform: translateY(-145px);
    }

    #marquee-left li:nth-child(11) {
        transform: translateY(-170px);
    }

    #marquee-left li:nth-child(12) {
        transform: translateY(-190px);
    }

    #marquee-right {
        display: flex;
        flex-direction: column;
        animation: scroll-down-right 12s linear infinite;
        align-items: flex-end;
    }

    #marquee-right li {
        transition: transform 0.3s ease, z-index 0.3s ease;
    }

    #marquee-right:hover {
        animation-play-state: paused;
    }

    @media (hover: none) and (pointer: coarse) {
        #marquee-left li:hover {
            transform: none;
            z-index: initial;
        }

        #marquee-left:hover {
            animation-play-state: running;
        }

        #marquee-right li:hover {
            transform: none;
            z-index: initial;
        }

        #marquee-right:hover {
            animation-play-state: running;
        }
    }

    #marquee-right img {
        width: 400px;
    }

    #marquee-right li:nth-child(2) {
        transform: translateY(-5px);
    }

    #marquee-right li:nth-child(3) {
        transform: translateY(-25px);
    }

    #marquee-right li:nth-child(4) {
        transform: translateY(-45px);
    }

    #marquee-right li:nth-child(5) {
        transform: translateY(-65px);
    }

    #marquee-right li:nth-child(6) {
        transform: translateY(-70px);
    }

    #marquee-right li:nth-child(7) {
        transform: translateY(-90px);
    }

    #marquee-right li:nth-child(8) {
        transform: translateY(-110px);
    }

    #marquee-right li:nth-child(9) {
        transform: translateY(-130px);
    }

    #marquee-right li:nth-child(10) {
        transform: translateY(-150px);
    }

    #marquee-right li:nth-child(11) {
        transform: translateY(-170px);
    }

    #marquee-right li:nth-child(12) {
        transform: translateY(-190px);
    }

    @keyframes scroll-up-left {
        from {
            transform: translateY(0);
        }

        to {
            transform: translateY(-180%);
        }
    }

    @keyframes scroll-down-right {
        from {
            transform: translateY(-180%);
        }

        to {
            transform: translateY(0);
        }
    }

    #download-now-area {
        height: 10px;
    }

    #next-area {
        background-color: transparent;
        border: none;
        height: 60px;
        font-size: 3em;
    }

    #random-container {
        height: 0;
    }


    /* HOW IT WORKS AREA */
    #how-it-works-area {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hustler-reader {
        overflow: hidden;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hustler {
        display: flex;
        flex-direction: row;
        width: 100%;
        transition: transform 0.15s ease;
        max-width: 100vw;
        margin: auto 0;
    }

    .hustler-page {
        min-width: 100%;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 0;
    }

    .hustler .hustler-page video {
        max-height: 80vh;
        margin: 0;
    }

    .hustler-description .label {
        color: #F142E5;
        font-size: 35px;
    }

    .hustler-description h1 {
        font-size: 50px;
        font-weight: 600;
    }

    .hustler-description h1 span {
        text-decoration: underline;
        font-size: 50px;
    }

    .hustler-description h2 {
        font-size: 30px;
        font-weight: 500;
    }

    .hustler-description h3 {
        font-size: 30px;
        font-weight: 500;
        color: #000000;
    }

    .hustler-description h3 div {
        color: #979797;
        margin: 15px 0 0 0;
    }

    .navigation {
        position: absolute;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .nav-btn {
        background-color: #F7F7F7;
        color: #000000;
        border: none;
        border-radius: 100px;
        padding: 14px 18px;
        margin: 0 15px;
        font-size: 24px;
        outline: none;
    }

    .indicator {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .page-indicator {
        background-color: #000000;
        border-radius: 100px;
        margin: 0 2.5px;
        height: 15px;
        width: 15px;
        outline: none;
    }

    #lister-area {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lister-reader {
        overflow: hidden;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .lister {
        display: flex;
        flex-direction: row;
        width: 100%;
        transition: transform 0.15s ease;
        max-width: 100vw;
        margin: auto 0;
    }

    .lister-page {
        min-width: 100%;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0;
    }

    .lister .lister-page video {
        max-height: 80vh;
    }

    .lister-description .label {
        color: #701BD1;
        font-size: 35px;
    }

    .lister-description h1 {
        font-size: 50px;
        font-weight: 600;
    }

    .lister-description h1 span {
        text-decoration: underline;
        font-size: 50px;
    }

    .lister-description h2 {
        font-size: 30px;
        font-weight: 500;
    }

    .lister-description h3 {
        font-size: 30px;
        font-weight: 500;
        color: #000000;
    }

    .lister-description h3 div {
        color: #979797;
        margin: 15px 0 0 0;
    }


    /* SWITCH AREA */
    #purple-gradient {
        background-image: linear-gradient(to right, #EB8AFF, #643098);
        color: transparent;
        height: 200px;
        margin: 75px 0;
    }

    #purple-gradient h2 {
        color: #FFFFFF;
        font-size: 50px;
    }

    #hustler-mode {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #hustler-mode h3 {
        color: #000000;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 20px;
        text-align: center;
        margin: 15px 0 0 0;
    }

    #hustler-mode h3 span {
        color: #E66FEF;
    }

    #lister-mode {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #lister-mode h3 {
        color: #000000;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 20px;
        text-align: center;
        margin: 15px 0 0 0;
    }

    #lister-mode h3 span {
        color: #645689;
    }

    #switch-area {
        display: flex;
        flex-direction: row;
        height: 100vh;
        margin: 0;
        font-size: 35px;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .switch-phone {
        width: 350px;
        height: auto;
        margin: 0 0;
    }

    #switch-arrow {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 48px;
        margin: 0 50px;
    }

    .right-arrow {
        transform: translateY(10px);
    }

    .left-arrow {
        transform: translateY(-10px);
    }


    /* COMMENTS AREA */
    #grid-notes {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        grid-template-rows: auto;
        gap: 15px;
        margin: 50px auto 0;
        max-width: 1200px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 400;
        font-size: 25px;
    }

    .grid-item {
        border-radius: 5px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        text-align: left !important;
        justify-content: space-between;
    }

    .grid-item span {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 600;
        font-size: 20px;
        margin: 15px 0 0 0;
    }

    .yellow {
        background-color: #FCFFCF;
        grid-column: span 3;
        grid-row: span 2;
    }

    .blue {
        background-color: #CFF9FF;
        grid-column: span 2;
        grid-row: span 2;
    }

    .orange {
        background-color: #FFE0D0;
        grid-column: span 2;
        grid-row: span 1;
    }

    .purple {
        background-color: #E1CFFF;
        grid-column: span 2;
        grid-row: 3;
    }

    .pink {
        background-color: #FFC3DF;
        grid-column: span 3;
        grid-row: 3;
    }

    .violet {
        background-color: #E1CFFF;
        grid-column: span 2;
        grid-row: span 2;
    }


    /* FOOTER */
    footer {
        width: 100%;
        background-color: #FEF9FF;
        bottom: 0;
        padding: 75px 150px;
    }

    footer section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    footer section ul li {
        font-family: "Plus Jakarta Sans", sans-serif;
    }

    footer section ul li img {
        max-width: 300px;
        font-weight: 400;
        margin: 0 0 16px 0;
    }

    #contact-us {
        font-size: 50px;
        margin: 0 0 16px 0;
    }

    #email {
        font-size: 25px;
    }

    #copyright-serbiz {
        font-size: 20px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
/* @media only screen and (min-width: 1200px) {} */