.btn {
    outline: none !important;
    box-shadow: none !important;
}

.btn-animate-red {
    background: transparent;
    color: var(--white);
    min-width: 120px;
    border-radius: 0px;
    height: 48px;
    line-height: 48px;
    padding: 0 25px;
    margin-top: 30px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    border: 1px solid var(--maroon);
    transition: all .5s;
    z-index: 1;
}

.btn-animate-red:hover {
    color: var(--maroon);
    transition: all .5s;
}

.btn-animate-red::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--maroon);
    content: '';
    z-index: -1;
    transition: all .5s;
}

.btn-animate-red:hover::before {
    width: 0%;
    transition: all .5s;
}

.btn-solid-red,
.btn-solid-black {
    height: 44px;
    line-height: 44px;
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0px 25px;
}

.btn-solid-red {
    background: var(--maroon);
}

.btn-solid-black {
    background: var(--black);
}

.btn-solid-black:hover {
    color: var(--white);
}

.btn-solid-red:hover {
    color: var(--white);
}

.btn-solid-red span {
    font-size: 16px;
}

.pd-bottom .btn-solid-red,
.pd-bottom .btn-solid-black {
    width: auto;
    padding: 0 25px 0 54px;
}

.pd-bottom .btn span {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    text-align: center;
    border-right: 1px solid #ccc;
}

.pd-bottom .btn-solid-red span {
    font-size: 13px;
}

.pd-bottom .btn-solid-black span {
    font-size: 16px;
}

.btn-read {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    position: relative;
    margin-top: 15px;
    padding-bottom: 5px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.btn-read:hover {
    color: var(--lime-green);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.btn-read:before {
    width: 100%;
    height: 2px;
    background: var(--lime-green);
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
}