@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "manrope", Helvetica, sans-serif;
}

body {
    height: fit-content;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 65px;
    position: sticky;
    overflow: hidden;
    top: 0;
    right: 0;
    z-index: 3;
    background-color: white;
}

    nav .nav {
        display: flex;
        gap: 0.75rem;
        padding: 0 .5rem;
        height: 100%;
        align-items: center;
    }

    nav .heading {
        display: flex;
    }

    nav .logo {
        width: 50px;
        height: 100%;
        aspect-ratio: 4/4;
    }

        nav .logo img {
            width: 100%;
            object-fit: cover;
        }

    nav .nav .nav-link {
        display: block;
        padding: 0.75rem;
        border-radius: 0.75rem;
        font-size: 1rem;
        color: inherit;
    }

        nav .nav .nav-link:hover {
            color: rgb(54, 54, 54);
            background: linear-gradient(-45deg, rgba(179, 179, 179, 0.304), rgba(155, 155, 155, 0.171));
        }

    nav .heading h2 {
        font-size: 1.15rem;
    }

    nav .heading p {
        font-size: 0.95rem;
    }

.offcanvas-nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 70vw;
    height: 100vh;
    box-shadow: 1px 0 2px var(--color-light-primary);
    background: linear-gradient(90deg,rgba(255, 255, 255, 0.879),rgba(255, 255, 255, 0.605));
    z-index: 5;
    transition: all 0.25s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.offcanvas-head {
    width: 100%;
    text-align: center;
    padding-bottom: 0.25rem;
}

.nav-link {
    color: inherit;
}

.offcanvas-body {
    margin: 1rem 0;
    width: 100%;
    height: fit-content;
    overflow-y: auto;
    max-height: 100%;
}

.label-burger {
    display: none;
    font-size: 1.2rem;
}

#offcanvas-toggle {
    display: none;
}

.offcanvas-body .navbar {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 0.75rem;
}

    .offcanvas-body .navbar .nav-item {
        width: 100%;
        height: 40px;
    }

        .offcanvas-body .navbar .nav-item .nav-link {
            padding: 0.25rem 1rem;
            display: flex;
            justify-content: start;
            align-items: center;
        }

main {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    position: relative;
    height: fit-content;
    width: 100%;
}

    main section:first-child .heading {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        width: 40%;
        height: 100%;
        height: fit-content;
        gap: 0.5rem;
    }

        main section:first-child .heading p:first-child {
            font-size: 1.8rem;
        }

#props {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    /* Cursor effect */
}

.desc {
    width: 100%;
    flex-direction: column;
    display: flex;
    text-overflow: clip;
    width: fit-content;
}

main section:first-child .pos {
    pointer-events: none;
    width: 50%;
    height: fit-content;
}

main .pos img {
    width: 100%;
    height: 100%;
}

.dow-but {
    width: fit-content;
    display: block;
    margin: 1rem 0;
    padding: 0.75rem;
    background-color: #bc4749;
    color: white;
    border-radius: 2rem;
    font-size: 1.15rem;
    transition: padding 0.3s;
}

    .dow-but:hover {
        padding: 0.75rem 1rem;
    }

input, textarea {
    padding: 0.4rem;
    margin: 0.5rem 0;
    margin-bottom: 0.25rem;
    outline: 0;
    border: 0;
    resize: none;
    width: 100%;
    font-size: 1.05rem;
    background-color: transparent;
    transition: all 0.1s;
}

    input:focus, textarea:focus {
        border-top: 0.15rem solid #FF7F50;
        border-right: 0.15rem solid #FF7F50;
        border-left: 0.15rem solid #FF7F50;
    }

form {
    margin: 1rem 1rem;
    padding: 2rem;
    border-radius: 0.75rem;
    background: linear-gradient(#91909021 30%,#91909021 30%,#91909021 30% );
}

    form div {
        margin: 0.5rem 0;
        border-bottom: 0.15rem solid #212121;
    }

    form span {
        border-bottom: none;
    }

    form div img {
        width: 100%;
    }

    form button {
        margin: 1rem 0;
        width: 100%;
        min-width: 40px;
        height: 50px;
        max-height: 60px;
        padding: 0.75rem;
        background-color: #FF7F50;
        border-radius: 2rem;
    }

input[type="file"] {
    font-size: 1rem;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

main {
    min-height: calc(100vh - 65px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

    main section {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: fit-content;
    }

        main section .content {
            min-height: calc(100vh - 65px);
            padding: 1rem 1rem;
            gap: 1.5rem;
            width: 85%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: start;
            position: relative;
            border-radius: 0.5rem;
            z-index: 2;
        }

            main section .content .content-wrapper {
                display: flex;
            }

            main section .content.buy {
                width: fit-content !important;
                justify-content: center;
                align-items: center;
            }

                main section .content.buy .content-wrapper {
                    display: flex;
                    gap: 2rem;
                    justify-content: space-between;
                }

                main section .content.buy aside {
                    border-left: 0.15rem solid #2121216b;
                    min-width: 15vw;
                    max-width: 23vw;
                    min-height: 40vh;
                    height: auto;
                    max-height: 80vh;
                }

                    main section .content.buy aside .ah {
                        padding: 1rem 0;
                        width: 100%;
                        text-align: center;
                        border-bottom: 0.15rem solid #2121216b;
                    }

                    main section .content.buy aside .ab {
                        padding: 2rem 1rem;
                    }

                        main section .content.buy aside .ab .arc-h {
                            border-bottom: 0.15rem solid #2121216b;
                        }

                        main section .content.buy aside .ab .arc-c {
                            padding: 1rem 0;
                        }

                            main section .content.buy aside .ab .arc-c .bl { /* Buy List */
                                padding: 0 0.75rem;
                                width: 100%;
                                display: flex;
                                align-items: end;
                                flex-direction: column;
                            }

                                main section .content.buy aside .ab .arc-c .bl .bi { /* Buy Item */
                                    display: flex;
                                    align-items: center;
                                    gap: 0.75rem;
                                    font-size: 1.25rem;
                                }

                                    main section .content.buy aside .ab .arc-c .bl .bi p {
                                        font-size: 1rem;
                                    }

                    main section .content.buy aside .af {
                        padding: 2rem 1rem;
                    }

                        main section .content.buy aside .af .arc-h {
                            border-bottom: 0.15rem solid #2121216b;
                        }

                        main section .content.buy aside .af .arc-c {
                            padding: 1rem 0;
                        }

                            main section .content.buy aside .af .arc-c .bl { /* Buy List */
                                padding: 0 0.75rem;
                                width: 100%;
                                display: flex;
                                align-items: end;
                                flex-direction: column;
                            }

                                main section .content.buy aside .af .arc-c .bl .bi { /* Buy Item */
                                    display: flex;
                                    align-items: center;
                                    gap: 0.75rem;
                                    font-size: 1.25rem;
                                }

                                    main section .content.buy aside .af .arc-c .bl .bi p {
                                        font-size: 1rem;
                                    }

                        main section .content.buy aside .af .arc-f {
                            padding: 0.25rem 0;
                        }

                            main section .content.buy aside .af .arc-f button {
                                padding: 1rem 2rem;
                                width: 100%;
                                cursor: pointer;
                                border-radius: 2rem;
                            }

                                main section .content.buy aside .af .arc-f button:hover {
                                    background-color: #bc4749;
                                    color: white;
                                }

                main section .content.buy .payments {
                    width: 52vw;
                    min-height: 80vh;
                    display: flex;
                    flex-direction: column;
                    gap: 0.75rem;
                }

                    main section .content.buy .payments .ph { /* Payment Header */
                        padding: 1rem 2rem;
                        border-bottom: 0.15rem solid #212121;
                    }

                    main section .content.buy .payments .payment {
                        background: linear-gradient(#b0b0b038 30%,#ffffff8c 30%,#b0b0b038 30%);
                        width: 100%;
                        border-radius: 0.5rem;
                        height: 50px;
                        overflow: hidden;
                    }

                        main section .content.buy .payments .payment .as { /* Accordion Select */
                            padding: 1rem;
                            width: 100%;
                            height: 50px;
                            display: flex;
                            gap: 0.75rem;
                            align-items: center;
                            position: relative;
                        }

                            main section .content.buy .payments .payment .as label {
                                padding: 0 3rem;
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 50px;
                                cursor: pointer;
                            }

                                main section .content.buy .payments .payment .as label i {
                                    transition: rotate 0.3s;
                                }

                            main section .content.buy .payments .payment .as input {
                                width: fit-content;
                            }

                                main section .content.buy .payments .payment .as input:checked + label i {
                                    rotate: 90deg;
                                }

                        main section .content.buy .payments .payment .arc-c {
                            padding: 0 4rem;
                            display: flex;
                            flex-direction: column;
                            gap: 2rem;
                            width: 100%;
                            height: fit-content;
                        }

                            main section .content.buy .payments .payment .arc-c .card {
                                display: flex;
                                align-items: center;
                                width: 300px;
                                height: 200px;
                                position: relative;
                            }

                                main section .content.buy .payments .payment .arc-c .card .front, main section .content.buy .payments .payment .arc-c .card .back {
                                    margin: 0 0.5rem;
                                    width: 100%;
                                    height: 100%;
                                    padding: 2rem;
                                    border-radius: 0.75rem;
                                    display: flex;
                                    justify-content: space-evenly;
                                    background-color: #212121;
                                    border: 0.15rem solid #91909021;
                                    color: white;
                                    flex-direction: column;
                                }

                                main section .content.buy .payments .payment .arc-c .card .back {
                                    padding: 3.1rem 2rem;
                                    position: absolute;
                                    justify-content: start;
                                    left: 75%;
                                    z-index: -1;
                                    top: 8%;
                                }

                                    main section .content.buy .payments .payment .arc-c .card .back .bc {
                                        padding: 0.25rem 0.75rem;
                                        width: 75%;
                                        border-radius: 3px;
                                        height: fit-content;
                                        text-align: right;
                                        background-color: gray;
                                        position: relative;
                                        display: flex;
                                        justify-content: end;
                                        align-items: center;
                                    }

                                        main section .content.buy .payments .payment .arc-c .card .back .bc span {
                                            position: absolute;
                                            left: 105%;
                                            color: white;
                                            font-family: Arial, Helvetica, sans-serif;
                                            font-weight: 700;
                                        }

                                main section .content.buy .payments .payment .arc-c .card .front .cn {
                                    margin-bottom: 2rem;
                                    font-size: 1.25rem;
                                    letter-spacing: 2px;
                                }

                            main section .content.buy .payments .payment .arc-c input {
                                padding-left: 0.75rem;
                                border: 0.15rem solid #212121;
                                width: fit-content;
                                height: fit-content;
                                border-radius: 2rem;
                            }

                            main section .content.buy .payments .payment .arc-c #cardNumber {
                                width: 300px !important;
                            }

                            main section .content.buy .payments .payment .arc-c #cardMonth, main section .content.buy .payments .payment .arc-c #cardYear {
                                width: 40px !important;
                            }

                            main section .content.buy .payments .payment .arc-c #CardViolationNumber {
                                width: 100px;
                            }

                            main section .content.buy .payments .payment .arc-c form div {
                                border: none;
                            }

            main section .content.plan {
                width: fit-content;
                justify-content: center;
                align-items: center;
            }

                main section .content.plan .plans {
                    width: 100%;
                    height: fit-content;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                    main section .content.plan .plans .plan {
                        padding: 0.5rem 0;
                        margin: 0 2rem;
                        position: relative;
                        min-width: 30vw;
                        max-width: 50vw;
                        height: fit-content;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-evenly;
                        border-radius: 0.5rem;
                        z-index: 2;
                        min-height: 70vh;
                        max-height: 85vh;
                        background: linear-gradient(#91909021 30%,#2121216c 30%,#91909021 30%);
                    }

                        main section .content.plan .plans .plan form {
                            margin: 0;
                            background-color: transparent;
                            background: none;
                            padding: 0;
                        }

                        main section .content.plan .plans .plan#freePlan {
                            max-height: fit-content;
                            .pin

{
    color: #f5c396;
}

}

main section .content.plan .plans .plan#proPlan {
    max-height: fit-content;
    background: linear-gradient(#fff309c6 30%,#2121216c 30%,#fff309c6 30%);
    .pin

{
    color: #bc4749;
}

}

main section .content.plan .plans .plan .pin {
    position: absolute;
    font-size: 3rem;
    left: 94%;
    bottom: 94%;
}

main section .content.plan .plans .plan .ph {
    min-height: fit-content;
    width: 100%;
    margin: 0.25rem 0;
    padding: 0 2rem;
    text-align: center;
}

    main section .content.plan .plans .plan .ph .arc-h {
        font-size: 1rem;
        text-align: left;
    }

    main section .content.plan .plans .plan .ph .arc-c .price {
        font-size: 5rem;
    }

main section .content.plan .plans .plan .pb {
    height: 100%;
    margin: 0.25rem 0;
    padding: 0 2rem;
}

    main section .content.plan .plans .plan .pb .arc-h {
        border-bottom: 0.15rem solid #212121;
    }

    main section .content.plan .plans .plan .pb .arc-c {
        padding: 1.5rem 0.25rem;
    }

        main section .content.plan .plans .plan .pb .arc-c .props {
            display: flex;
            gap: 0.5rem;
            flex-direction: column;
            justify-content: start;
        }

            main section .content.plan .plans .plan .pb .arc-c .props .prop {
                display: flex;
                justify-content: start;
                align-items: center;
                width: 100%;
            }

            main section .content.plan .plans .plan .pb .arc-c .props .prop {
                display: flex;
                gap: 0.5rem;
                font-size: 1.15rem;
            }

                main section .content.plan .plans .plan .pb .arc-c .props .prop i {
                    font-size: 1.5rem;
                    color: #7ae582;
                }

main section .content.plan .plans .plan .pf {
    margin: 0.25rem 0;
    padding: 0 2rem;
}

    main section .content.plan .plans .plan .pf .arc-h {
        padding: 0.3rem 0;
        border-top: 0.15rem solid #212121;
    }

    main section .content.plan .plans .plan .pf .arc-c button {
        width: 100%;
        cursor: pointer;
        padding: 1rem 2rem;
        border-radius: 2rem;
    }

        main section .content.plan .plans .plan .pf .arc-c button:hover {
            background-color: #bc4749;
            color: white;
        }

main section .content.about div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    padding: 0 3rem;
    height: 33%;
    width: 100%;
}

    main section .content.about div h2 {
        font-size: 1.15rem;
        letter-spacing: 1.5px;
    }

main section .content h1 {
    text-align: center;
    font-size: 2rem;
}

main section .content .bg-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    z-index: -3;
    font-size: 10rem;
    width: 100%;
    height: 100%;
}

main section .content .questions {
    padding: 0.5rem;
    background: linear-gradient(#91909021 30%,#91909021 30%,#91909021 30% );
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
}

    main section .content .questions .question {
        margin-bottom: 0.5rem;
        padding: 0.5rem 1rem;
        width: 100%;
        min-height: 50px;
        height: fit-content;
        max-height: 100px;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        background: linear-gradient(rgba(255, 255, 255, 0.8) 30%,rgba(255, 255, 255, 0.4) 30%,rgba(255, 255, 255, 0.8) 30%);
    }

        main section .content .questions .question .qh {
            max-width: 60%;
            font-weight: 300 !important;
            text-decoration: solid;
        }

        main section .content .questions .question .ql {
            padding-right: 2rem;
            position: absolute;
            color: inherit;
            display: inline-flex;
            justify-content: end;
            align-items: center;
            height: 100%;
            gap: 0.75rem;
            width: 100%;
        }

.string {
    background-color: #212121;
    border-radius: 2rem;
    height: 0.25rem;
    width: 100%;
    margin: 0.75rem 0;
}

main section .content .questions .string {
    height: 0.15rem !important;
    background-color: #2121216c !important;
}

.bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.bg-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: -2;
}

.triangle-right {
    position: absolute;
    left: 90%;
    top: 55%;
    width: 0;
    height: 0;
    border-top: 300px solid transparent;
    border-left: 500px solid #212121;
    border-bottom: 300px solid transparent;
    rotate: 45deg;
}

.triangle-left {
    position: absolute;
    right: 80%;
    bottom: 38%;
    width: 0;
    height: 0;
    border-top: 300px solid transparent;
    border-left: 500px solid #FF7F50;
    border-bottom: 300px solid transparent;
    rotate: 105deg;
    z-index: 4 !important;
}

.pos.thanks, .pos.about {
    width: fit-content !important;
    display: flex;
    justify-content: center;
}

.heading.thanks {
    font-size: 1.8rem;
    width: 50% !important;
    text-align: center;
}

.heading.about {
    width: 50% !important;
}

.heading.plan {
    width: fit-content !important;
    justify-content: center;
}

.heading.buy {
    width: fit-content !important;
    justify-content: center;
}

.pos.thanks img, .pos.about img {
    width: fit-content;
    max-height: 350px;
}

.pos.about {
    width: 50%;
    justify-content: center;
    align-items: center;
}

main section .heading .content.help, main section .heading .content.about {
    width: 100%;
    min-height: 70% !important;
}

@media(max-width:1440px) {
}

@media(max-width:1024px) {
    main section:first-child .heading p:first-child, .heading.thanks p:first-child {
        font-size: 1.5rem;
    }

    nav .nav .nav-link {
        font-size: 1rem;
        padding: 0.75rem;
    }

    nav .heading h2 {
        font-size: 1.25rem;
    }

    nav .heading p {
        font-size: 0.85rem;
    }

    .dow-but {
        width: fit-content;
        display: block;
        margin: 1rem 0;
        padding: 0.75rem;
        background-color: rgb(224, 64, 64);
        border-radius: 2rem;
        font-size: 1rem;
        color: white;
    }

    main section:first-child .pos {
        width: 55%;
    }
}

@media(max-width:768px) {
    nav .nav .nav-link {
        font-size: 0.85rem;
        padding: 0.65rem;
    }

    nav .nav {
        gap: 0.25rem;
        padding: 0;
    }

    nav .heading h2 {
        font-size: 1rem;
    }

    nav .heading p {
        font-size: 0.75rem;
    }

    main section:first-child .heading {
        padding: 0;
    }

    .dow-but {
        width: fit-content;
        display: block;
        margin: 1rem 0;
        padding: 0.7rem;
        background-color: rgb(224, 64, 64);
        border-radius: 2rem;
        font-size: 0.85rem;
        color: white;
    }

    main section:first-child .pos {
        width: 65%;
    }

    .triangle-right {
        left: 85%;
        top: 65%;
    }

    .triangle-left {
        right: 60%;
        bottom: 40%;
    }
}

@media(max-width:540px) {
    main section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        main section:first-child .pos img {
            height: 100%;
        }

    nav {
        justify-content: space-between;
        padding: 0 1rem;
    }

        nav .nav .nav-link {
            font-size: 0.85rem;
            padding: 0.65rem;
        }

        nav .nav {
            gap: 0.25rem;
            padding: 0;
        }

        nav .heading h2 {
            font-size: 1rem;
        }

        nav .heading p {
            font-size: 0.75rem;
        }

    .nav {
        display: none !important;
    }

    main section .content.plan {
        padding: 2.5rem 0;
    }

        main section .content.plan .plans {
            gap: 5rem;
            flex-direction: column;
        }

            main section .content.plan .plans .plan {
                min-width: 60vw;
                max-width: 80vw;
            }

    .label-burger {
        height: fit-content;
        width: fit-content;
        display: inline-block;
        transition: font 0.2s;
        cursor: pointer;
        font-size: 1.7rem;
    }

        .label-burger:hover {
            color: rgb(181, 181, 181);
        }

    .offcanvas-nav .label-burger {
        width: fit-content;
        margin: 1rem;
        display: inline-block !important;
        font-size: 1.6rem;
        transition: font 0.2s;
    }

    .offcanvas-nav #label-burger:hover {
        color: gray !important;
    }

    .offcanvas-nav.active {
        right: 0;
    }

    main section:first-child .pos {
        overflow: hidden;
        width: 100%;
    }

    main section:first-child .heading p, .heading.thanks p:first-child {
        text-align: center;
    }

    main section .heading p:first-child, .heading.thanks p:first-child {
        text-align: center;
    }

    .heading.thanks {
        width: 100% !important;
        text-align: center;
    }

    main section .heading {
        width: 100% !important;
        padding: 0;
        align-items: center;
    }
}
