@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

:root {
    --primary-color: #b6001d;
}

body {
    min-height: 130vh;
    margin: 0;
    position: relative;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

#content {
    padding-bottom: 200px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

label {
    margin-bottom: 0.2rem;
}

.form-control:focus {
    outline: none !important;
}

.form-group {
    margin-bottom: 15px !important;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    border-radius: 0px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#header {
    padding: 20px 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
    margin-bottom: 50px;

}


.card-header {
    background: transparent;
    text-align: left;
    padding: 15px 15px 0px 15px;
}

.card-section {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary-color);
}

.nav-row .nav-link {
    display: block;
    padding: .5rem 1rem;
    color: black;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    border-radius: 0;
    border: 1px solid var(--primary-color);
}

.nav-row .nav-link:hover {
    background: var(--primary-color);
    color: #fff;
}

.disabled {
    pointer-events: none;
    cursor: not-allowed !important;
}

.kbw-signature {
    width: 100%;
    height: 200px;
}

#sig canvas {
    width: 100% !important;
    height: auto;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.btn-theme {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-theme:hover {
    color: var(--primary-color);
    background-color: #fff;
    border-color: var(--primary-color);
}

.btn-theme-outline {
    color: var(--primary-color);
    background-color: #fff;
    border-color: var(--primary-color);
}

.btn-theme-outline:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: 1s;
}