.flex{
    display: flex;
}
.item-center{
    align-items: center;
}
.justify-between{
    justify-content: space-between;
}
.btn1{
    padding: 0.8rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    
}
.btn2{
    padding: 0.8rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn2 a{
    color: wheat;
    text-decoration: none;
}
.btn-primary{
    background: transparent;
    border: solid blue;
    color: var(--light);
    
}
.btn-primary:hover{
    background: transparent;
    border-color: var(--pure);
}
.btn-secondary{
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-secondary:hover{
      background:rgba(255, 255, 255, 0.075)
    

}
.flex1{
    flex: 1;
}
.justify-center{
    justify-content: center;
}
.sticky{
    position: sticky;
}
