.container-hero {
    background-image: url("https://media.discordapp.net/attachments/1116319479316623440/1151847517856727050/Untitled_design_10.png?width=840&height=473");
    background-size: cover;
    background-position: center;
    width: 100%;
    display: flex;
    height: 85vh;
    align-items: left;
    justify-content: left;
    color: #fff;
    text-align: left;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 10%,
            rgba(0, 0, 0, 0.7) 90%,
            rgba(0, 0, 0, 0.9) 100%);
}


.hero-content h1 {
    text-align: left;
    font-size: 3rem;
    font-weight: bold;
    margin-top: 11.5rem;
    margin-bottom: 2rem;
    line-height: 50px;
    margin-left: 1rem;
}

.hero-content h1 span {
    color: cyan;
}

.hero-content p {
    margin-left: 1rem;
    margin-top: -1.4rem;
    color: #bbb;
    font-size: 1rem;
    white-space: nowrap;
    font-family: 'Nunito', sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2rem;
}

.hero-button {
    padding: 10px 20px;
    background-color: rgba(84, 199, 228, 0.8);
    font-size: 15px;
    color: #fff;
    margin-left: 1rem;
    border: 1px solid rgba(84, 199, 228, 0.8);
    border-radius: 4px;
    text-decoration: none;
    z-index: 100;
    position: relative;
    transition: 0.3s;
    margin-bottom: -3rem;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.9), 5px 5px 5px #121212;
}

.hero-button:hover {
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.9), 0 0 10px #121212;
}

.hero-button-clear {
    padding: 10px 20px;
    background-color: rgba(84, 199, 228, 0.8);
    font-size: 15px;
    z-index: 100;
    position: relative;
    color: #fff;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.9), 5px 5px 5px #121212;
    margin-left: 1rem;
    border: 1px solid rgba(84, 199, 228, 0.8);
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.hero-button-clear:hover {
    background-color: rgba(84, 199, 228, 0.8);
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: cyan;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: transparent;
}


@media (max-width: 768px) {


    .hero-content h1 {
        font-size: 2rem;
        margin-top: 10rem;
    }


    .hero-content p {
        font-size: 1rem;
        margin-top: 1rem;
        white-space: normal;
        overflow: visible;
    }

}

.advertising-section {
    background-color: transparent;
    padding: 10px;
    text-align: center;
    color: #fff;
    margin-bottom: 5rem;
}

.advertising-section h1 {
    color: #Fff;
    margin-top: -5rem;
    font-size: 30px;
    font-weight: bold;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-left: 1rem;
    margin-right: 1rem;
}


.logo-box img {
    max-width: 110px;
    margin: 5px;
}

.line {
    height: 1px;
    background-color: #4d4d4d;
    flex-grow: 1;
    margin: 0 10px;
}

.logo-box {
    flex-grow: 1;
    padding: 10px 10px;
    text-align: center;
    border: 1px solid rgba(55, 56, 56, 0.438);
    transition: all 0.3s ease;
    position: relative;
    background-color: #0f0f0f;
}

.logo-box:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transform: translateY(-2px);
}

.logo-box::before,
.logo-box::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    transform: rotate(45deg);
}

.logo-box::before {
    left: 0;
}

.logo-box::after {
    right: 0;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.feature {
    text-align: center;
    max-width: 300px;
    padding: 20px;
    background-color: #171717;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature img {
    max-width: 100px;
}

.feature h2 {
    margin: 10px 0;
    font-size: 1.5em;
    color: #fff;
}

.feature p {
    font-size: 1em;
    color: #fff;
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatey(0);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0);
    }

}

.advertisement {
    backdrop-filter: blur(6px);
    padding: 50px;
    border-bottom: 1px solid rgba(55, 56, 56, 0.438);
    border-top: 1px solid rgba(55, 56, 56, 0.438);
    margin-top: -8rem;
    text-align: center;

}

.p-10 {
    background-color: #1c1f37;
}

.border-gray-800 {
    border-color:rgba(55, 56, 56, 0.438) !important;
}

.py-8 {
    border: 1px solid rgba(55, 56, 56, 0.438);

}

@media (max-width: 768px) {
    .advertisement {
        margin-top: -6rem;
    }
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.company-box {
    max-width: 220px;
    max-height: 110px;
    width: auto;
    height: auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.company-box img {
    width: 110%;
    height: auto;
    transition: transform 0.2s ease-in-out;
}

@media screen and (max-width: 768px) {
    .partner-logos {
        flex-direction: column;
        /* Stack logos vertically on smaller screens */
        gap: 10px;
        /* Reduce the gap between logos */
    }

    .company-box {
        max-width: 60%;
        /* Allow images to take full width on smaller screens */
        max-height: auto;
        /* Allow images to adjust height proportionally */
    }
}
.pt-12 {
    background-color: #1c1f37;
}

.lg\:p-12 {
    margin-top: 1.5rem;
}
.features-main {
    font-size: 40px;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
}

.features {
    border-bottom: 1px solid rgba(55, 56, 56, 0.438);
}