body {
    background: #f3f5f6;
}

.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    z-index: 10;
}

.main-header .header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    min-width: 5rem;
    min-height: 1rem;
    background: white;
    margin: auto;
    border-radius: 0 0 1rem 1rem;
}

.header-menu ul {
    display: flex;
    list-style-type: none;

}

.header-menu ul li {
    display: block;
}

.header-menu ul li a {
    display: block;
    text-decoration: none;
    font-size: 1.25rem;
    padding: .2rem .7rem;
    color: var(--color-main);
}

.main-sections {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    padding: 1rem .5rem;
    margin: 0;
}

.hero-section {
    min-height: 400px;
    background: linear-gradient(0deg, rgba(109, 22, 154, 0.2), transparent);
    border-radius: 0 0 1rem 1rem;
    padding: .75rem;
    width: 95%;
    margin: auto;
    position: relative;
}

.hero-section .glower {
    bottom: 0;
    right: 0;
    background: red;
}

.hero-logo{

    margin-bottom: 2.5rem;
}
.hero-logo img{
    height: 80px;
}

.hero-section .hero-image {
    padding-top: 4rem;
}

.hero-section .hero-text {
    font-size: 2.5rem;
    margin-top: 3rem;
}

.hero-badge {
    border-radius: .5rem;
    background: #e8e8e8;
    padding: .5rem;
}

.hero-btn {
    --bs-btn-hover-border-color: var(--color-main);
    border: 1px solid var(--color-main);
}

.glower {
    position: absolute;
    content: "";
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    z-index: -1;
    filter: blur(7rem);
}

.bg-glow-1 {
    background: #1c7fb3;
}

.code-section {
    position: relative;
    margin-top: 5rem;
    padding: 0 1rem;
}

.glowing-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.glowing-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    aspect-ratio: 1/1;
    background: conic-gradient(
            from 0deg,
            #ff00ff,
            #00ffff,
            #ff00ff,
            #00ffff,
            #ff00ff
    );
    animation: rotate 4s linear infinite;
    z-index: 1;
    filter: blur(30px);
}


.glowing-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    aspect-ratio: 1/1;
    background: conic-gradient(
            from 0deg,
            #ff00ff,
            #00ffff,
            #ff00ff,
            #00ffff,
            #ff00ff
    );
    animation: rotate 4s linear infinite;
    z-index: 1;
    filter: blur(30px);
}

.code-glower {
    padding: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

.code-section img {
    border-radius: 20px;
}


.footer-container {
    height: 500px;
    background: black;
}

.footer-logo {
    height: 40px;
}
.contact-section{
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.contact-section .contact-info{
    position: relative;
    border-radius: 2rem;
    background: #1c7fb3;
    margin: auto;
    width: 95%;
    padding: 5rem;
    isolation: isolate;
}
.contact-section .decorators{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: .6;
    pointer-events: none;
    z-index: -1;
}
.decorators.decorator-left{
    left: 0;
}
.decorators.decorator-right{
    right: 0;
}
