
::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* For Firefox */
html {
  scrollbar-width: none; /* hides scrollbar */
}

/* Prevent overflow weirdness */
body {
  -ms-overflow-style: none;  /* IE/Edge legacy */
  overflow-y: scroll;        /* keep scroll working, just no bar */
}

.inter-text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.sans-font {
    font-family: sans-serif;
}

body {
    margin: 0;
    background-color: #09090e;
}

.flex-box{
    display: flex;
}

.header-frame {
    width: 100%;
    height: 70px;
    background-color: #09090e;

    gap: .5%;
}

.header-title {
    color: white;
    font-size: 36px;
    font-weight: 600;


    width: 80%;
    
    margin: 0;
    margin-left: 40px;
}

.v-align {
    align-content: center;
}

.x-align {
    justify-items: center;
}

.header-button {
    text-align: center;
    align-content: center;

    width: 160px;
    height: 60%;


    border: none;
    outline: none;

    border-radius: 6px;

    font-size: 20px;
    font-weight: 500;

    text-decoration: none;
    
    margin: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px;

    transition: 250ms;
}

.header-button:hover {
    transform: scale(1.02);
    cursor: pointer;

    opacity: .8;
}

.bg-green {
    background-color: #48c45c;
    color: black;
}

.bg-black {
    color: #48c45c;
    border: 1.5px solid #48c45c;
    background-color: transparent;
}

.body-frame {
    height: fit-content;
    width: 100%;


    background-color: #09090e;

}

.body-title {
    color: white;
    font-size: 100px;
    font-weight: 700;

    background-color: gray;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;

    margin-top: 25vh;
    margin-bottom: 0;
}


.gradient-text {
    background: linear-gradient(to right, #ffffff, #7dc589, #48c45c); /* gradient colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.body-text {
    color: rgb(111, 126, 131);
    font-size: 35px;
    font-weight: 500;

    display: block;

    width: fit-content;
    margin-left: auto;
    margin-right: auto;

    margin-top: 0;
    margin-bottom: 0;
}

.body-button {
    width: fit-content;
    height: fit-content;

    text-decoration: none;

    padding: 10px 25px;

    border: none;
    outline: none;

    border-radius: 6px;

    font-size: 30px;
    font-weight: 500;
    
    margin-left: auto;
    margin-right: auto;

    margin-top: 0;
    margin-bottom: 0;

    transition: 250ms;
}
.body-button:hover {
    transform: scale(1.02);
    cursor: pointer;

    opacity: .8;
}

.button-div {
    margin-top: 20px;

}

.about-title {
    color: white;
    font-size: 50px;
    font-weight: 600;

    width: fit-content;
    
    margin-left: auto;
    margin-right: auto;

    margin-top: 300px;
    margin-bottom: 0;
}

.about-text {

    font-size: 30px;

    width: 60%;
    height: fit-content;

    border: 1px solid rgb(111, 126, 131);
    border-radius: 8px;

    padding: 50px 40px;
    margin-top: 20px;
    margin-bottom: 50px;

    text-align: center;
}

.features-frame {
    height: fit-content;
    width: 100%;


    background-color: #101018;
}

.features-title {
    color: white;
    font-size: 60px;
    font-weight: 700;

    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    
    margin-top: 0;
    padding-top: 40px;
    margin-bottom: 0;
}

.feature-frame {
    width: 100%;
    height: fit-content;
    
    flex-wrap: wrap;
    justify-content: center;

    gap: 1%;

    padding-bottom: 80px;

    margin-bottom: 50px;
    margin-top: 50px;
}

.feature-box {
    width: 450px;
    height: 260px;

    padding: 0px 30px;
    margin-top: 20px;

    border:  1px solid rgba(111, 126, 131, 0.356);
    border-radius: 8px;
}

.title-frame {
    width: 100%;
    height: 70px;

    align-items: center;
    margin-top: 10px;
}

.icon {
    width: 55px;
    height: 40px;

    color: #48c45c;

    background-color: rgba(3, 87, 17, 0.582);
    padding: 10px 5px;
    border-radius: 8px;
}

.feature-title {
    margin-left: 15px;

    color: white;
    font-size: 25px;
    font-weight: 600;

}

.feature-text {
    color: rgba(111, 126, 131);
    font-size: 20px;
    font-weight: 600;

    margin: 0;
    margin-top: 15px;
}

.CTA-frame {
    width: 100%;
    height: fit-content;
    background-color: #09090e;

    padding-top: 5px;
    padding-bottom: 100px;
}
.CTA-Title {
    margin: 0;
    width: 100%;


    text-align: center;

    margin-left: auto;
    margin-right: auto;

    margin-top: 50px;
    margin-bottom: 0;

    color: white;
    font-size: 60px;
    font-weight: 700;

    width: fit-content;
    
}

.cta-button-div {
    margin-top: 30px;
    gap: 1%;
    justify-content: center;

    width: 100%
}

.CTA-button {
    width: fit-content;

    text-decoration: none;
    font-size: 25px;
    font-weight: 500;

    padding: 10px 25px;
    border-radius: 8px;

    transition: 250ms;
}

.CTA-button:hover {
    transform: scale(1.02);
    cursor: pointer;

    opacity: .8;
}

.video-frame {
    width: 100%;
    height: fit-content;

    justify-content: center;

    margin-bottom: 20px;
}

.video-div {
    width: 70%;
    height: 80%;
}

@media (max-width: 768px) {
    .header-button {
        display: none;
    }

    .header-title {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }


    .body-title {
        font-size: 45px;
        margin-left: auto;
        margin-right: auto;
    }

    .body-text {
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .body-button {
        font-size: 15px;
        margin-bottom: 25vh;

        margin-left: auto;
        margin-right: auto;
    }

    .about-title {
        font-size: 30px;
        width: 100%;
        text-align: center;
    }

    .features-title {
        font-size: 30px;
        width: 100%;
        text-align: center;
    }

    .feature-box {
        height: 250px;
        width: 65%;
    }

    .icon {
        height: 30px;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-text {
        font-size: 13px;
    }

    .CTA-Title {
        font-size: 25px;
    }

    .cta-button-div {
        display: none;
    }
}