.button,
.primary,
.secondary {
    text-transform: uppercase;
}

a.button,
span.button {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-right: 20px;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
}

a.primary,
span.primary {
    background-color: $orange;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    text-transform: uppercase;
}

a.primary:hover,
span.primary:hover {
    background-color: $dark-orange;
    transition: background-color 0.3s linear;
}

a.secondary,
span.secondary {
    border: solid 2px $orange;
    color: $orange;
    padding: 8px 13px;
}

a.secondary:hover,
span.secondary:hover {
    background-color: $orange;
    color: #fff;
    transition: all 0.6s linear;
}
@media screen and (max-width:1367px) {
    a.button,
    span.primary {
        font-size: 12px;
        padding: 10px 15px;
    }
}
@media screen and (max-width:1200px) {}
@media screen and (max-width:991px) {}
@media screen and (max-width:768px) {}
@media screen and (max-width:600px) {}
