/* Mobile Version */
@media (max-width: 767px) {
    p {
        font-size: 9pt;
        line-height: 1.2;
    }
    .section-1 {

        height: 100%;
        padding: 25px;
    }
    .section-1 {
        background: linear-gradient(to top, var(--color-quaternary) 0%, var(--color-primary) 50%, transparent 100%);
    }
    .header-video {
        width: 100%;
        height: 60%;
        object-fit: cover;
        position: absolute
    }
    .brand {
        display: flex;
        flex: 8;
        flex-direction: column;
        color: white;
        width: 100%;
    }
    .brand h1 {
        font-size: 30pt;
    }
    .brand h2 {
        font-size: 15pt;
    }
    .brand p {
        width: 100%;
        margin: 15px 0;
    }
    .brand button {
        width: 60%;
        padding: 10px 15px;
        margin-top: 10px;
        cursor: pointer;
    }
    .signup a {
        font-size: 18pt;
    }
    .social-ico {
        flex: 2;
    }
    .social-ico p {
        display: none;
    }    
    .social-ico img {
        width: 20px;
        height: 20px;
        margin: 0;
        position: relative;
        float: right;
        padding: 5px;
    }
    .section-1, .section-header {
        background: linear-gradient(to top, var(--color-quaternary) 0%, var(--color-primary) 40%, transparent 70%);
    }
    .section-2 {
        padding: 20px;
        background: linear-gradient(to bottom, var(--color-quaternary) 70%, var(--color-secondary) 90%, rgba(224, 93, 0, 0.8) 100%);
        height: auto;
    }

    .linksection {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }

    .links {
        flex-direction: column;
    }

    .links h3 {
        font-size: 20pt;
    }
    .links p {
        width: 80%;
    }
    .sublinks  {
        width: 100%;
        flex-direction: column;
    }

    .section-3 {
        flex-direction: column;
        padding: 20px;
        background: radial-gradient(circle at bottom right, transparent 0%, var(--color-primary) 50%, var(--color-quaternary) 100%);
        background-blend-mode: overlay;
        overflow: hidden;
        height: auto;
    }
    .footer-video {
        width: 100%;
        object-fit: cover;
        bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
        justify-content:last baseline;
        position: absolute;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        color: white;
        flex: 10;
        justify-content: none;
    }
    .brand-footer {
        display: flex;
        flex-direction: column;
        color: white;
        flex: 10;
        gap: 0;
        padding: 20px;
        justify-content: center;
    }
    .brand-footer h1 {
        font-size: 25pt;
    }
    .brand-footer p {
        font-size: 9pt;
        padding-right: 0;
        text-align: center;
    }
    .accordion-trigger {
        display: none;
    }
    .custom-cursor {
        display: none;
    }

    *, a, button, input, textarea {
        cursor: default !important; 
    }
}