

.hero .bg{
    background: linear-gradient(165deg, #c73253 25.42%, #1e1e2d 50.32%);
    filter: blur(54px);
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    left: 0;
    z-index: -1;
}


section.hero{
    display: flex;
    align-items: center;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
}

.hero-text{
    max-width: 600px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0px;
}

.hero-text h1{
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    font-size: 40px;
}

.hero-text p{
    color: #bbbbbb;
    font-size: 18px;
    font-weight: 300;
    margin-block: 30px;
}

.button-group a {
    margin-right: 10px;
    padding: 10px 30px;
}

.button-group{
    margin-block: 20px;
}

.hero-checks .check-text{
    display: flex;
    align-items: center;
    color: #f1f1f1;
    font-size: 12px;
    margin-top: 10px;
}

.hero-checks .check-text i{
    margin-right: 10px;
}

.hero-img {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
}

.hero-img img{
    height: 400px;
}



@media screen and (max-width: 768px){
    .hero-container{
        flex-direction: column;
        padding: 10px;
    }

    .hero-text{
        max-width: 100%;
        padding: 20px;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 0px;
    }

    .button-group {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .button-group a {
        margin-right: 0px;
        width: 100%;
        padding: 10px;
        padding-bottom: 12px;
    }

    .hero-img{
        display: none;
    }

    .hero-container{
        margin-bottom: 20px;
    }
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(204.25deg, rgb(hsl(172, 100%, 35%)/ 19%) -1.08%, rgba(22, 22, 24, 0) 51.92%), linear-gradient(348.58deg, rgba(22, 22, 24, 0) 42.58%, rgba(212, 230, 255, 0.08) 82.61%);
    transform: matrix(1, 0, 0, -1, 0, 0);
}

.feature-box {
    background: linear-gradient(319deg, #0f1012, #232628);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    position: relative;
}

.feature-box h3{
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.feature-box p{
    color: #ffffffa1;
    font-size: 14px;
    position: relative;
    z-index: 2;
    margin: 0px;
}

.feature-box .feature-img i{
    font-size: 40px;
    color: #00B099;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

section.features{
    padding-top: 100px;
    position: relative;
}

section.features::before {
    content: "";
    top: 0;
    right: 0;
    background: url(../images/dots.png) no-repeat center center / cover;
    height: 100%;
    width: 28%;
    position: absolute;
    bottom: 10px;
    z-index: -1;
    filter: brightness(0.3);
    opacity: 0.5;
}

.section-title{
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.section-title h2{
    font-size: 40px;
    font-weight: 700;
}

.section-title p{
    font-size: 18px;
    color: #ffffffa1;
}


section.pricing{
    padding-top: 100px;
    position: relative;
}

section.pricing::before {
    content: "";
    top: 0;
    right: 0;
    background: url(../images/dots.png) no-repeat center center / cover;
    height: 100%;
    width: 28%;
    position: absolute;
    bottom: 10px;
    z-index: -1;
    filter: brightness(0.3);
    opacity: 0.5;
}


.pricing-box{
    padding: 30px;
    position: relative;
    transition: 0.5s;
}

.pricing-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    transform: matrix(1, 0, 0, -1, 0, 0);
    transition: 0.3s;
    background: linear-gradient(224deg, #0f1012, #232628);
    border-radius: 15px;
    border: 1px solid #00B0994d;
}

.pricing-box:hover::after {
    border: 1px solid #00B099;
}


.pricing-box h3{
    background: linear-gradient(to right, #00B099 0%, #00B099 50%, #00B099 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 34px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 36px;
}

.pricing-box h3 span{
    color: #00B099;
    font-weight: 600;
}

.pricing-box > p{
    color: #ffffffa1;
    font-size: 14px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.pricing-box .pricing-features{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.pricing-box .pricing-features .feature{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding-bottom: 15px;
    padding-top: 0px;
}

.pricing-box .pricing-features .feature i{
    color: #00B099;
    font-size: 18px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #34322c;
    border-radius: 50%;
}

.pricing-box .pricing-features .feature p{
    color: #ffffffa1;
    font-size: 16px;
    margin: 0px;
}

.pricing-box .pricing-features .feature p span.lighty{
    color: #ffffff;

}

.pricing-box .price {
    color: #fff;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    text-transform: uppercase;
}
.pricing-box .price p{
    color: #ffffffa1;
    font-size: 16px;
    text-transform: capitalize;
    margin: auto 0;
    margin-left: 8px;
}

.feature-text {
    font-weight: 200;
    margin-left: 10px;
}

.feature-text .imp-text{
    font-weight: 400;
    color: #fff !important;
}

.pricing-box a{
    position: relative;
    z-index: 2;
    margin-top: 20px;
    width: 100%;
}

span.pre-title {
    background: linear-gradient(to right, #00B099 0%, #00B099 50%, #00B099 100%);
    color: #000000;
    border-radius: 50px;
    padding: 5px 15px;
    margin-bottom: 20px;
    display: block;
    width: fit-content;
    font-weight: 500;
}

.hero-text h1 span{
    font-weight: 700;
    background: linear-gradient(to right, #00B099 0%, #00B099 50%, #00B099 100%);
    color: #00B099;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.faq{
    padding-top: 100px;
    position: relative;
}


section.contact{
    display: flex;
    align-items: center;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    background: #18181b;
    padding: 20px 0px;
}



section.contact .bg-wrapper{
    position: absolute;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    top: 0;
    z-index: 1;
}

section.contact .container{
    position: relative;
    z-index: 2;
}

section.contact .bg-wrapper img{
    margin-top: -80px;
}

section.contact .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.contact .footer p{
    color: #ffffffa1;
    font-size: 14px;
    margin: 0px;
}

section.contact .footer a{
    color: #00B099;
    font-size: 14px;
}

section.contact .footer .links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

section.contact .navbar-brand, section.contact .links{
    width: 200px;
}




/* 
#################################################
#################################################
#################################################
TERMS TERMS TERMS TERMS TERMS TERMS TERMS TERMS
#################################################
#################################################
################################################# */

.terms-logo img{
    width: 250px;
    margin: auto;
    display: block;
}
.tos-container {
    margin-top: 50px;
}

.tos-container p {
    font-size: 20px;
    font-weight: 600;
}

.tos-list-container {
    margin-top: 20px;
}

.tos-list-container ul {
    list-style-type: none;
    padding-left: 0;
}

.tos-list-container ul li {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #cfcfcf;
    margin-left: 20px 
}

.tos-list-container ul li:last-child {
    margin-bottom: 0;
}

.tos-list-container ul li:before {
    content: "•";
    color: #00B099;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.tos-list-container ul li ul {
    margin-top: 10px;
}

.tos-list-container ul li ul li {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

.tos-list-container ul li ul li:before {
    content: "•";
    color: #00B099;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.text-lists {
    margin-bottom: 50px;
}

section.discord{
    padding-top: 100px;
    position: relative;
    padding-bottom: 50px;

}

section.discord .discord-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 100px;
}

section.discord .discord-box .discord-img {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    filter: contrast(1.3);
    background: linear-gradient(to right, #00B099 0%, #00B099 50%, #00B099 100%);
}

section.discord .discord-box .discord-text {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    margin: 12px;
    border-radius: 100px;
    background: linear-gradient(340deg, #0f1012, #232628);
}

section.discord .discord-box .discord-text h3, section.discord .discord-box .discord-text a{
    font-size: 26px;
}

section.discord .discord-box .discord-text a {
    height: auto !important;
    border-radius: 50px;
    background: #222527;
    color: #fff;
    font-size: 24px;
    padding: 20px 40px;
}

@media screen and (max-width: 768px){
    section.discord .discord-box .discord-text{
        flex-direction: column;
        gap: 30px;
        padding: 30px 30px;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 2px;
        border-radius: 12px;
    }

    section.discord .discord-box .discord-text h3{
        margin-top: 10px;
    }

    section.discord .discord-box .discord-text a{
        margin-bottom: 10px;
    }

    section.discord .discord-box{
        border-radius: 12px;
    }


}