﻿/*
    X-Small devices (portrait phones, less than 576px)
    No media query for `xs` since this is the default in Bootstrap
*/
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    html {
        font-size: 10px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    html {
        font-size: 12px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    html {
        font-size: 14px;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    html {
        font-size: 16px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
}

/* ======================================================= */

/*
    `xs` returns only a ruleset and no media query
    ... { ... }
*/

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    html {
        font-size: 10px;
    }

    /* Navbar styling */
    .navbar .container-fluid {
        padding: 16px 24px;
    }

    .navbar-brand img {
        width: 50%;
    }

    /* Sidebar styling */
    .side-bar {
        position: fixed;
        left: 0;
        bottom: 0;
        right: unset;
        top: unset;
        width: 100vw;
    }

        .side-bar .pmv-token {
            width: 100%;
            height: auto;
            position: relative;
            right: 0;
            border-left: 0;
            border-top: 2px solid #F72585;
            border-radius: 4px 4px 0px 0px;
        }

            .side-bar .pmv-token .pmv-toggle {
                position: relative;
                top: 0;
                transform: unset;
                max-width: unset;
                width: 100%;
                padding: 8px 0;
                font-family: 'SF Compact Display';
                font-style: normal;
                font-weight: 790;
                font-size: 12px;
                line-height: 24px;
                text-align: center;
                color: #FFFFFF;
            }

            .side-bar .pmv-token .pmv-token-buy {
                width: 100%;
                padding: 24px;
                height: 240px;
                overflow: hidden;
                transition: all 1.25s;
            }

                .side-bar .pmv-token .pmv-token-buy.collapsed {
                    height: 0px;
                    padding: 0;
                }

                .side-bar .pmv-token .pmv-token-buy button {
                    width: 100%;
                    padding: 8px;
                }

    /* Section styling */
    .pmv-section.slide-2,
    .pmv-section.slide-3,
    .pmv-section.slide-5,
    .pmv-section.slide-6,
    .pmv-section.slide-7 {
        height: auto !important;
    }

    /* Slide 1 */
    .pmv-section.slide-1 .slide-1-wrapper .content {
        margin-top: 4em;
    }

    .slide-1 h2, .slide-1 h2 span {
        color: #ffffff;
    }

    .slide-1 .btn-cta {
        background: #E12279;
    }

    .slide-1 .btn-token .fa-circle {
        color: #E12279;
    }

    .slide-1 .scroll-icon {
        position: absolute;
        left: 41%;
        bottom: 4em;
        transform: translate(-50%, 0);
    }

    /* Slide 3 */
    .slide-3 .pro-features-head .form-switch {
        margin: 0;
    }

    .slide-3 .pro-card-container {
        margin: 3em;
    }

        .slide-3 .pro-card-container .pro-card {
            width: 100%;
            padding: 48px 24px;
            background: #1A1A1A;
            border: 0;
            border-radius: 12px;
        }

            .slide-3 .pro-card-container .pro-card .pro-card-content {
                font-size: 12px;
                line-height: 16px;
            }

    /* Slide 4 */
    .slide-4 .districts {
        width: 65% !important;
    }

    /* Slide 5 */
    .slide-5 .slide-5-wrapper {
        padding: 16px;
        gap: 16px;
    }

    .slide-5 .pro-block {
        background: #1A1A1A;
        margin: 2px;
        border: 2px solid transparent;
        border-radius: 12px;
    }

        .slide-5 .pro-block .pro-block-title {
            font-size: 24px;
        }

        .slide-5 .pro-block .pro-block-content {
            font-size: 14px;
        }

    .slide-5 .token {
        margin-bottom: 58px;
    }

    .slide-5 .token-content-bottom,
    .slide-5 .token-content-top {
        gap: 16px;
    }

    .slide-5 .gradient {
        border-radius: 12px;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 133, 255, 0.5) 0%, rgba(255, 0, 184, 0.5) 100%), linear-gradient(0deg, #1A1A1A, #1A1A1A);
    }

    /* Slide 6 */
    .slide-6 .slide-6-wrapper {
        margin: 2em;
    }

    .slide-6 .pro-card-buy {
        width: 100%;
        padding: 8px 24px;
    }

    /* Slide 7 */
    .slide-7 .title {
        font-size: 24px;
    }

    .slide-7 .desc {
        font-size: 14px;
    }

    .slide-7 .pro-team .pro-member {
        width: 350px;
    }

    /* Slide 8 */
    .slide-8 .slide-8-wrapper {
        padding: 16px;
    }

        .slide-8 .slide-8-wrapper .email {
            height: 50%;
        }

        .slide-8 .slide-8-wrapper .form-email input {
            background-color: transparent;
            border-bottom: 2px solid #222222;
        }

        .slide-8 .slide-8-wrapper .form-email button {
            position: relative;
            width: 100%;
            right: 0;
        }

    /* Districts Modal */
    #districts-modal .carousel-item p{
        width: 75%;
    }

    #districts-modal .carousel-item img {
        width: 160%;
    }
}

/* `md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
}

/* `lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
}

/* `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
}

/* `xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
}
