

.form-card a {
    color: #212529;
    font-weight: 700;
}

.form-card label {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: .2rem;  
}
.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.form-control {
    border-radius: 0;
    border: 1px solid #c8c8c8;
}

textarea.form-control {
    height: auto;
}


.btn-arrow {
    font-family: 'Dosis', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    width: fit-content;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    position: relative;
    background-color: #b91e22;
    color: #FFF;
    border: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.btn-arrow::after {
    content: "";
    position: absolute;
    top: 0;
    right: -25px;
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 25px solid #b91e22;
}

.color-red, a.color-red:hover {
    color: #B91E22 !important;
}

.fontfamily-secondary {
    /* font-family: 'Dosis', sans-serif; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.fontsize-2 {
    font-size: 2rem;
    line-height: normal;
}