header {
    min-height: 100vh;
    padding: var(--SectionPadding) 10px;
    /* background-color: var(--BlackBackground); */
}
.categories button{
    padding: 10px;
    border: 1px solid var(--OrangeText);
    color:var(--OrangeText);
    background-color: transparent;
    font-weight: bold;
    transition: .2s linear;
}
.categories button.active{
    background-color: var(--OrangeText);
    color: white;
    outline: 5px solid #ffa875;
}
.categories button.off{
    opacity: .6;
    cursor: auto;
}



.card{
    box-shadow: 0px 0px 10px #f2f2f2;
    border: none;
    outline: 2px solid #e9e9e9cc;
    transition: .3s linear;
    padding: 25px 20px;
}
.card img{
    width: 300px;
    height: 350px;
}


.button1 {
    border: none;
    padding: 10px;
    font-size: 1rem;
    position: relative;
    background: transparent;
    color: rgba(255, 102, 0, 0.707);
    text-transform: uppercase;
    margin-top: 20px;
    border: 1px solid rgba(255, 102, 0, 0.707);
    cursor: pointer;
    transition: all 0.7s;
    overflow: hidden;
    border-radius: 100px;
    width: fit-content;
    font-weight: bold;
}
.button1 p{
    position: relative;
    z-index: 1;
}

.button1:hover {
    color: white;
}



.button1 span {
    transition: all 0.7s;
    z-index: 0;
}

.button1 .first {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: 25%;
    height: 100%;
    background: var(--OrangeText);
}

.button1:hover .first {
    top: 0;
    right: 0;
}

.button1 .second {
    content: "";
    position: absolute;
    left: 25%;
    top: -100%;
    height: 100%;
    width: 25%;
    background: var(--OrangeText);
}

.button1:hover .second {
    top: 0;
    left: 50%;
}

.button1 .third {
    content: "";
    position: absolute;
    left: 50%;
    height: 100%;
    top: 100%;
    width: 25%;
    background: var(--OrangeText);
}

.button1:hover .third {
    top: 0;
    left: 25%;
}

.button1 .fourth {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    height: 100%;
    width: 25%;
    background: var(--OrangeText);
}

.button1:hover .fourth {
    top: 0;
    left: 0;
}

