#services-section-web, #services-section-design,  #services-section-it, #services-section-cyber, #services-section-network, #services-section-training {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--color-bg-light-blue);
}

#services-section-design, #services-section-cyber, #services-section-training {
    background: var(--color-bg-light-orange);
}

.services-section-heading {
    font-family: var(--font-primary);
    width: 60%;

}

.services-section-heading h1 {
    font-size: var(--font-size-h1);
}

#hero-section .hero-section-heading h2 {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-medium);
    font-family: var(--font-secondary);
}

.my-services-section {
    margin: var(--spacing-sm) 0;
    text-align: justify;
    font-family: var(--font-primary);
}

.my-services-section li {
    margin-left: var(--spacing-lg);
}

.services-section-cta {
    width: 40%;
    display: flex;
    justify-content: center;
}

.services-section-cta button {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.glow-on-hover {
    width: 350px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: var(--color-primary);
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #0066CC, #FF6B35, #0052A3, #CC5529, #17A2B8, #004C99, #212529, #6C757D, #FFF4EF);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: var(--color-primary);
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@media (max-width: 1000px) {
   #services-section-web, #services-section-design,  #services-section-it, #services-section-cyber, #services-section-network, #services-section-training {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.services-section-heading, .services-section-cta {
width: 100%;
}

.services-section-cta {
    margin-top: 15px;
    justify-content: flex-start;
}

}
