header {
    padding: 150px 0px
}

header h1 {
    position: relative;
    color: var(--color-primary);
}

header h1::before {
    content: '';
    position: absolute;
    top: -25%;
    left: 0;
    width: 20px;
    height: 20px;
    background: #E6EFFE;
    border-radius: 50%;
}

header h1::after {
    content: '';
    position: absolute;
    top: -25%;
    left: 30px;
    width: 20px;
    height: 20px;
    background: #E6EFFE;
    border-radius: 50%;
}
#catalogs{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}
#catalogs div {
    background: #FFFFFF;
    box-shadow: 0px 4px 40px -10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 20px 50px;
    height: min-content;
}
#catalogs div h4{
    position: relative;
}
#catalogs div h4::before{
    content: '';
    position: absolute;
    width: 13px;
    height: 100%;
    top: 0;
    left: -15%;
    background-color: var(--color-purple);
    border-radius: 5px;
}

#catalogs div:nth-child(2n+1) h4::before{
    background-color: var(--color-secondary);
}

#catalogs div a{
    font-size: 14px;
    color: var(--color-text-grey);
    display: flex;
    align-items: center;
    grid-gap: 1rem;
    margin-top: 1rem;
}

@media(max-width: 991px){
    #catalogs{
        grid-template-columns: 1fr;
    }
    #catalogs div h4::before{
        left: -10%;
    }
}