.btn,
.btn:link,
.btn:visited,
button{
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--white);
    font-weight: 700;
    text-align: center;
    line-height: 1.45em;
    text-transform: none;
    
	position: relative;
    z-index: 2;
    display: inline-block;
    cursor: pointer;
    padding: 0.5em 1.5635em;
    margin-bottom: 0;
    background-color: var(--orange);
    overflow: hidden;
	
    border:1px solid var(--orange);
    -webkit-appearance: none;
    border-radius: var(--border-radius);
	
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    
    -webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.25);
}

.btn.btn-gray,
.btn.btn-gray:link,
.btn.btn-gray:visited{
    font-size: clamp(0.95rem, 1.125vw, 1.125rem);
    color: var(--purple);
    font-weight: 500;
    background-color: var(--light-gray);
    border:1px solid var(--light-gray);
}

.btn.btn-purple,
.btn.btn-purple:link,
.btn.btn-purple:visited{
    color: var(--white);
    background-color: var(--purple);
    border:1px solid var(--purple);
}

.btn.btn-large-font{
    font-size: 1.5rem;
}

.btn.btn-gray:hover,
.nf-form-content input[type=submit]:active,
.nf-form-content input[type=submit]:hover,
.btn:hover,
.btn:active,
button:hover,
button:active,.btn.btn-white:hover,
.btn.btn-white:active,
.btn.btn-blue:hover,
.btn.btn-blue:active{
    color: var(--dark-gray);
    background-color: var(--tan) !important;
    border:1px solid var(--tan);
    text-decoration: none;
}

.btn.with-arrow{
    padding-right: 2em;
}

.btn.with-arrow:after{
    content: '';
    position: absolute;
    top: calc(50% - 7px);
    right: 0.85em;
    background-image: url(../images/icon-right-arrow.svg);
    background-repeat: no-repeat;
    background-size: 9px 14px;
    width: 9px;
    height: 14px;
}

.btn.with-arrow:hover:after{
    background-image: url(../images/icon-right-arrow-gray.svg);

}

.btn.btn-gray.with-arrow:after{
    background-image: url(../images/icon-right-arrow-gray.svg);
}

.btn.btn-large{
    font-size: clamp(1.25rem, 1.35vw, 1.55rem);
}

#navWrapper .btn{
    line-height: normal;
}

@media only screen and (max-width:720px) {
 
}
