@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: rgba(227, 227, 227, 0.701);
    line-height: 1.7rem;
}

.container {
    width: 50rem;
    margin-left: 18rem;
}

.navbar {
    background-color: rgb(166, 27, 27);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.66rem 2.2rem;
    top: 0;
    position: absolute;
    width: 50rem;
}

.page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-list li {
    margin-right: 0.2rem;
}

.nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 11px;
    transition: all 0.4s;
}

.nav-list li a:hover {
    color: #ffffff;
    background-color: red;
    padding: 11px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 3rem;
    height: 0.6rem;
    background-color: #ffffff;
    margin: 5px 0;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.content {
    background-color: white;
    padding: 1.3rem;
    margin-top: -1.5rem;
}

.hero {
    width: 100%;
    height: 150vh;
    margin-top: 20px;
}

.download-btn {
    position: fixed;
    top: 85%;
    left: 42%;
}

#about a,
#info a {
    color: blue;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.download-btn a {
    margin-top: -18rem;
}

.btn {
    text-transform: uppercase;
    width: 17rem;
    height: 5rem;
    border-radius: 0.5rem;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 12px 30px;
    -webkit-animation: glowing 1000ms infinite;
    -moz-animation: glowing 1000ms infinite;
    -o-animation: glowing 1000ms infinite;
    animation: glowing 1000ms infinite;
}

@-webkit-keyframes glowing {
    0% {
        background-color: rgb(0, 8, 255);
        -webkit-box-shadow: 0 0 3px rgb(0, 8, 255);
    }
    50% {
        background-color: rgb(100, 0, 206);
        -webkit-box-shadow: 0 0 40px rgb(100, 0, 206);
    }
    100% {
        background-color: rgb(0, 8, 255);
        -webkit-box-shadow: 0 0 3px rgb(0, 8, 255);
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: rgb(0, 8, 255);
        -moz-box-shadow: 0 0 3px rgb(0, 8, 255);
    }
    50% {
        background-color: rgb(100, 0, 206);
        -moz-box-shadow: 0 0 40px rgb(100, 0, 206);
    }
    100% {
        background-color: rgb(0, 8, 255);
        -moz-box-shadow: 0 0 3px rgb(0, 8, 255);
    }
}

@-o-keyframes glowing {
    0% {
        background-color: rgb(0, 8, 255);
        box-shadow: 0 0 3px rgb(0, 8, 255);
    }
    50% {
        background-color: rgb(100, 0, 206);
        box-shadow: 0 0 40px rgb(100, 0, 206);
    }
    100% {
        background-color: rgb(0, 8, 255);
        box-shadow: 0 0 3px rgb(0, 8, 255);
    }
}

@keyframes glowing {
    0% {
        background-color: rgb(0, 8, 255);
        box-shadow: 0 0 3px rgb(0, 8, 255);
    }
    50% {
        background-color: rgb(100, 0, 206);
        box-shadow: 0 0 40px rgb(100, 0, 206);
    }
    100% {
        background-color: rgb(0, 8, 255);
        box-shadow: 0 0 3px rgb(0, 8, 255);
    }
}

h1 {
    margin-top: 2rem;
}

h2 {
    text-align: center;
    color: green;
    line-height: 2.6rem;
    font-size: 1.4rem;
    margin-top: 2rem;
}

ul {
    padding: 2rem;
}

.features li {
    line-height: 2rem;
}

h1 {
    font-size: 2rem;
    line-height: 2.6rem;
    text-align: center;
    font-weight: 600;
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    margin: 10px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1rem;
    transition: 0.4s;
}

.active,
.accordion:hover {
    border: 1px solid rgb(0, 128, 0);
}

.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

#contact {
    padding: 0.4rem;
    background-color: white;
}

.mail {
    text-align: center;
    margin-top: 1rem;
}

footer h3 {
    padding: 1rem;
    text-align: center;
    color: green;
}

.policy {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.policy a {
    color: black;
}

.mail a {
    color: rgb(0, 128, 0);
}

.policy a:hover {
    text-decoration: underline;
    color: rgb(0, 128, 0);
}

footer p {
    text-align: center;
}

@media (max-width: 1280px) {
    .container {
        width: 100%;
        margin-left: -1em;
    }
    .hero {
        width: 101.2%;
        height: 170vh;
    }
    .navbar {
        width: 102.4%;
    }
    .content {
        width: 101%;
        padding: 3em;
    }
    .nav-list li a {
        font-size: 1.5em;
        margin: 0.8em;
    }
    h1 {
        font-size: 2.4em;
    }
    h2 {
        font-size: 2em;
        line-height: 1.5em;
    }
    p,
    #available li,
    .features li,
    #info li,
    .accordion,
    .policy a {
        font-size: 1.5em;
        line-height: 1.7em;
    }
    .btn {
        font-size: 1.4em;
        width: 15em;
        height: 5em;
    }
    .download-btn>a {
        margin-top: -29em;
    }
    .download-btn {
        position: fixed;
        top: 80%;
        left: 35%;
    }
}

@media (max-width: 998px) {
    .container {
        width: 101.7%;
    }
    .hero {
        width: 100.2%;
        height: 100em;
    }
    .content {
        width: 100%;
        padding: 3.6em;
    }
    .navbar {
        width: 55em;
        height: 4.5em;
    }
    .nav-list li a {
        font-size: 1.8em;
        margin: 0.3em;
        margin-top: 5em;
    }
    h1 {
        font-size: 2.3em;
        margin-bottom: 2em;
    }
    h2 {
        font-size: 2em;
        line-height: 1.2em;
    }
    p,
    #available li,
    .features li,
    #info li,
    .accordion,
    .policy a {
        font-size: 1.8em;
        line-height: 1.7em;
    }
    .btn {
        width: 15em;
        height: 4em;
        font-size: 1.8em;
    }
    .download-btn>a {
        font-size: 1em;
    }
    .download-btn {
        position: fixed;
        top: 85%;
        left: 25%;
    }
}

@media (max-width: 768px) {
    .hero {
        width: 161%;
        height: 200vh;
        margin-top: -1.7em;
    }
    .download-btn {
        position: fixed;
        top: 87%;
        left: 15%;
    }
    .container {
        width: 155%;
    }
    .btn {
        width: 14em;
        height: 4em;
        font-size: 2.7em;
    }
    .content {
        width: 161%;
        /* margin-left: -9em; */
        font-size: 2em;
        line-height: 1.6em;
        padding: 2em;
    }
    .navbar {
        background-color: rgb(212, 0, 0);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.66rem 2.2rem;
        width: 25%;
        height: 14%;
        margin-top: 2rem;
        margin-left: -24em;
    }
    h1 {
        font-size: 2em;
        line-height: 1.4em;
    }
    h2 {
        margin-top: 2em;
        font-size: 1.6em;
        line-height: 1.4em;
    }
    p,
    #available li,
    .features li,
    #info li,
    .accordion,
    .policy a {
        font-size: 1.27em;
        line-height: 1.7em;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-list {
        display: none;
        flex-direction: column;
        background-color: rgb(193, 27, 27);
        position: absolute;
        top: 120px;
        left: 0;
        width: 50em;
        height: 610px;
        padding: 10px;
        box-sizing: border-box;
        border: none;
    }
    .nav-list li a {
        font-size: 3em;
        font-weight: 900;
        margin-left: 1em;
        line-height: 2.4em;
        font-weight: 500;
        color: rgb(255, 255, 255);
    }
    .nav-list li a:hover {
        background-color: transparent;
    }
    .nav-list.active {
        display: flex;
    }
    .features li {
        line-height: 1.8em;
    }
    .mail {
        font-size: 1.1em;
    }
    .policy {
        font-size: 0.85em;
        text-align: center;
    }
    footer p {
        font-size: 1.1em;
        text-align: center;
        margin-bottom: -50px;
    }
}