@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Ubuntu:wght@500&display=swap');

* {
    color: #a8a8a8;
    font-family: "Inter", serif;
    font-weight: 600;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: var(--token-958e2cd1-b113-4aa3-9235-7a2b959c8feb, rgb(0, 0, 0));
    padding: 0;
    margin: 0;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10rem;

}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 0.7s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

.overlay-itro {
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 0;
    left: 0px;
    padding: 0;
    height: 100vh;
    width: 100%;
    opacity: 0.5;
    z-index: 1;
}

.hidden {
    display: none;
}

#btn {
    text-decoration: none;
    background: #fff;
    border-radius: 100px;
    color: black;
    transition: 0.5s all ease;
}


#btn:hover {
    background: #ffffffd5;
    color: rgb(73, 73, 73);
    box-shadow: 0 0 80px #fff;
}

#btn2 {
    background-color: #bebebe31;
    border-radius: 100px;
    text-decoration: none;
    color: #fff;
}

#btn2:hover {
    background: #bebebe2c;
    color: rgba(255, 255, 255, 0.555);
}


.mview {
    display: none;
}

.mview i {
    color: #fff;
    cursor: pointer;
}

#mnav {
    /* background: linear-gradient(45deg, #0b76da, #0f3bff, #200bda); */
    width: 100%;
    height: 100vh;
    /* position: relative; */
    z-index: 999999;
    display: none;
    padding: 100px 0;
    flex-direction: column;
    justify-content: space-evenly;
    transition: 0.5s all ease;
    /* position: absolute; */

}


#mnav li {
    list-style-type: none;
    background-color: #81818134;
    /* width: 30px; */
    height: 10vh;
    margin: 20px;
    border-radius: 12px;
    text-align: center;
    /* justify-content: center; */
    transition: 0.5s all ease;
    animation: moveup 1s;

}

#mnav li a {
    text-decoration: none;
    color: #fff;
    height: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s all ease;

}

nav {
    display: flex;
    justify-content: space-between;
    padding: 5px 100px;
    backdrop-filter: blur(5px);
    left: 0;
    right: 0;
    top: 0;
    position: fixed;
    z-index: 2;
}

nav .hero {
    display: flex;
    justify-content: center;
    align-items: end;
    text-align: center;
}

nav .hero a {
    display: flex;
    justify-content: center;
    align-items: end;
}

nav .hero img {
    height: 40px;
}

nav ul {
    display: flex;
    justify-content: space-evenly;
    padding: 0;
}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    margin: 0 15px;
    text-decoration: none;
    color: inherit;
    font-weight: 400;
}

nav ul li a:hover {
    color: #fff;
}

nav ul li #btn {
    padding: 10px;
    font-weight: inherit;
    margin: 0;
}

#main {
    opacity: 1;
    /* background: radial-gradient(62% 68% at 39% 41.5%, rgba(0, 81, 255, 0) 0%, rgba(0, 0, 255, 0.11) 36%, rgba(0, 0, 255, 0.30) 63%, rgb(2, 21, 99) 83%, rgba(0, 51, 255, 0.514) 100%); */
    /* background: url('../imgs/bg.mp4'); */
    background-repeat: no-repeat;
    background-size: 100vh;
    background-attachment: fixed;
    /* mask: linear-gradient(180deg,rgba(0,0,0,0) 55.13020833333333%,rgba(0,0,0,1) 100%) add; */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(0deg, rgb(0,51,255) 0%, rgba(0, 0, 0, 0) 20%); */
    /* height: auto; */
    /* padding: 300px 0; */
}

#main-bg {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    /* width: 100%; */
    /* height: 100vh; */
}


#main .container {
    width: 70%;
    z-index: 2;
    /* padding-left: 200px; */
}

#main .container h1 {
    color: #fff;
    font-size: 60px;
    width: 60%;
    margin: 0;
    font-weight: 800;
    /* margin-top: 50px; */
    animation: text 1.5s 1;
}

#main .container p {
    width: 40%;
    /* padding-left: 10px; */
    animation: text 1.5s 1;
}

#main .container .buttons {
    margin: 80px 0;
}

#main .container .buttons a {
    padding: 10px 14px;
    margin: 5px;

}

@keyframes text {
    0% {
        transform: translateY(150px);
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#main img {
    height: 400px;
}

/* Pricing */
#pricing {
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    /* z-index: 2; */
    background: var(--token-958e2cd1-b113-4aa3-9235-7a2b959c8feb, rgb(0, 0, 0));
    padding-bottom: 200px;
}

#pricing .title {
    text-align: center;
    font-size: 50px;
    margin: 60px 0;
    color: #fff;
}

#pricing .container {
    width: 80%;
    height: 100%;
}

#pricing .container .top {
    height: 10vh;
    display: flex;
    justify-content: space-between;
    /* background-color: red; */
}

#pricing .container .top .top-text {
    display: flex;
    justify-content: end;
    flex-direction: column;
    padding-bottom: 4%;
}

#pricing .container .top p {
    margin: 0;
    /* padding-top: 20px; */
}

#pricing .container .top .btn-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(128, 128, 128, 0.445);
    border-radius: 5px;
    padding: 2px;
    height: 75%;
}

#pricing .container .top .btn-nav a {
    color: #fff;
    text-decoration: none;
    /* margin: 10px; */
    padding: 0 20px;
    /* width: 100%; */
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
    transition: 0.5s all ease;
    cursor: pointer;
    width: 100px;
    text-align: center;
}

#pricing .container .top .btn-nav a:hover {
    background-color: rgba(179, 179, 179, 0.1);
}

#pricing .container .top .btn-nav .focused {
    background-color: rgba(6, 41, 180, 0.514);
    /* margin-right: 10px; */
}

#pricing .container .top .btn-nav .focused:hover {
    background-color: rgba(0, 51, 255, 0.3);

}

#pricing .container .bottom {
    display: flex;
    justify-content: space-between;
    height: auto;
    /* flex-wrap: wrap; */
}

#pricing .container .bottom .plan {
    background: rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    /* box-shadow: 0 0 20px #9494943d; */
    backdrop-filter: blur(8.6px);
    -webkit-backdrop-filter: blur(8.6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 24%;
    padding: 20px;
    /* height: 100%; */
    transition: 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 1;
    margin: 5px;
}

#pricing .container .bottom .plan:hover {
    /* background: radial-gradient(62% 68% at 39% 41.5%,rgba(0,81,255,0) 0%,rgba(0, 0, 255, 0.11) 36%,rgba(0, 0, 255, 0.30) 63%,rgb(2, 21, 99) 83%,rgba(0, 51, 255, 0.514) 100%); */
    background: rgba(88, 88, 88, 0.1);
    /* box-shadow: 0 0 80px #9494943d; */

    transform: scale(1.1);
}

#pricing .container .bottom .plan h2 {
    font-size: 15px;
    margin-bottom: 20px;
}

#pricing .container .bottom .plan h1 {
    color: #fff;
    margin: 0;
    font-size: 35px;
    margin-bottom: 40px;
}

#pricing .container .bottom .plan .plan-yr span {
    font-size: 20px;
}

#pricing .container .bottom .plan a {
    width: 100%;
    border-radius: 12px;
    border: 2px solid #ffffff46;
    background-color: rgba(0, 0, 0, 0.459);
    padding: 20px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: 0.4s all ease;
    margin-bottom: 20px;
}

#pricing .container .bottom .plan a:hover {
    background-color: black;
    border: 2px solid #fff;
    box-shadow: 0 0 50px #fff;

}

#pricing .container .bottom .plan ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin: 0;
    padding: 0;
    /* margin: 0 10px; */
}

#pricing .container .bottom .plan p {
    /* margin: 10px; */
    margin: 40px 0;
    /* color: #fff; */
}

#pricing .container .bottom .plan ul li {
    margin-bottom: 0.125rem;
    background: url('https://www.figma.com/_next/static/media/compare-checkmark.0c934af3.svg') no-repeat;
    -webkit-background-size: 1rem;
    background-size: 1rem;
    -webkit-background-position: left 0.125rem;
    background-position: left 0.125rem;
    padding-left: 1.5rem;
    font-weight: 400;
}

/* Contact */

#contact {
    background: var(--token-958e2cd1-b113-4aa3-9235-7a2b959c8feb, rgb(0, 0, 0));
    padding: 80px 50px;
    height: auto;
    background: url('../imgs/bg.jpg');
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center;
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#contact .container {
    backdrop-filter: blur(5px);
    /* backdrop-filter: blur(8px); */
    /* background-color: #1212126c; */
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    height: 100%;
    /* padding: 100px 0; */
    justify-content: space-between;
    border-radius: 20px;
    padding: 100px 50px;
    padding-top: 125px;
}

#contact .container .box {
    width: 50%;
}

#contact .container .box:nth-child(1) {
    padding: 0 50px;
}

#contact .container .box:nth-child(2) {
    /* background-color: red; */
    align-items: center;
    height: 500px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    /* border: 2px solid grey; */
    border-radius: 20px;
    /* background-color: rgba(128, 128, 128, 0.61); */
    /* backdrop-filter: blur(12px); */
}



#contact .container .box:nth-child(2) h1 {
    font-size: 40px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: -3px;

}

#contact .container .box:nth-child(2) p {
    margin-bottom: 30px;
    /* text-wrap: balance; */
    width: 450px;
    /* color: #d3cdcd; */
}

#contact .container .box:nth-child(1) h1 {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: -3px;
    background: -webkit-linear-gradient(45deg, #0b76da, #0f3bff, #108bc4, #200bda);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#contact .container .box:nth-child(1) p {
    letter-spacing: 1px;
    /* padding-right: 100px; */
    padding-left: 10px;
    /* color: #d3cdcd; */
}

#contact .container .box:nth-child(1) ul li {
    /* color: #d3cdcd; */
}

#contact-form {
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    /* padding-left: 20%; */
    margin: 10px;
}

#contact-form .form-group {
    display: flex;
    justify-content: space-between;
}

#contact-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    margin-right: 5px;
    border: 1px solid grey;
    background-color: rgba(0, 0, 0, 0.9);
}

#contact-form #number {
    width: 100%;
}


/* #contact-form select {
    width: 225px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid grey;
} */


#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid grey;
    background-color: rgba(0, 0, 0, 0.9);
}

#contact-form .buttons {
    display: flex;
}

#contact-form .buttons #btn {
    border: 2px solid transparent;
    border-radius: 10px;
    /* color: #fff; */
    padding: 10px 20px;
    /* background-image: linear-gradient(to right, #50C878 0%, #4CBB17 51%, #0BDA51 100%); */
    /* background-size: 200% auto; */
    flex: 1 1 auto;
    text-align: center;
    transition: 0.5s;
    cursor: pointer;
}

#contact-form .buttons #btn:hover {
    /* background-position: right center; */
    /* box-shadow: 0 0 30px #0FFF50; */
}

#contact-form h1 {
    font-size: 40px;
    text-align: center;
    margin-top: 0;
}

/* Footer */

footer {
    height: auto;
    display: flex;
    justify-content: end;
    color: #fff;
    flex-direction: column;
    background: var(--token-958e2cd1-b113-4aa3-9235-7a2b959c8feb, rgb(0, 0, 0));
}

footer .upper {
    display: flex;
    justify-content: space-evenly;
    padding: 100px;
    padding-bottom: 50px;
}

footer .lower {
    background-color: #121412;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: var(--token-958e2cd1-b113-4aa3-9235-7a2b959c8feb, rgb(0, 0, 0));
    margin: 25px 0;
}

footer .lower p {
    margin: 0;
    color: #fff;
}


footer .box {
    display: flex;
    justify-content: top;
    flex-direction: column;
    /* align-items: center; */
}

footer .box:nth-child(1) {
    justify-content: end;
}

footer .box:nth-child(1) p {
    padding-left: 10px;
}

footer .box img {
    height: 80px;
    /* width: initial  ; */
    /* margin-top: 100px; */
}

footer .box h3 {
    font-weight: 1000;
    margin-bottom: 20px;
    color: #fff;
}

footer .box a {
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.4s all ease;
}

footer .box a:hover {
    color: #0f3bff;
}

footer .footer-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-btns img {
    height: 45px;
    /* background-color: #0b76da; */
    margin: 5px;
    /* clip-path: circle(25px); */
}

/* ============================================================================================================================ */
/* Refund & Privacy Policy */
/* ============================================================================================================================ */

.overlay-itro-policy {
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 0;
    left: 0px;
    padding: 0;
    height: 50vh;
    width: 100%;
    opacity: 0.5;
    z-index: 1;
}

#heading {
    opacity: 1;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#heading .container {
    width: 100%;
    z-index: 2;
    /* padding-left: 200px; */
}

#heading .container h1 {
    color: #fff;
    font-size: 100px;
    text-align: center;
    margin: 0;
    font-weight: 800;
    animation: text 1.5s 1;
}

#content {
    background: var(--token-958e2cd1-b113-4aa3-9235-7a2b959c8feb, rgb(0, 0, 0));
    height: auto;
    padding: 200px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#content div {
    width: 50vw;
}

#content h1 {
    color: #fff;
    text-align: left;
    font-size: 30px;
}

#content h2 {
    color: #ffffffc9;
    text-align: left;
    font-size: 20px;
}

#content p {
    /* padding: 500px; */
    /* width: 50vw; */
    /* margin-bottom: 100px; */
    text-align: left;
}

#content span {
    font-weight: 900;
    display: inline;
}

#content li {
    padding-left: 5px;
}