html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #f9f9f9;
}

.footer-button {
    background-color: transparent !important;
    border: 2.5px solid #ffffff !important;
    color: #ffffff !important;
    box-shadow: none !important;
    font-size: 15px !important;
    margin: .25rem !important;
    padding: 10px 15px !important;
    background-image: none !important;
    border-radius: 50% !important;
}
.footer-icon {
    font-size: 20px;
    color: #ffffff;
}
.footer-cta {
    background-color: transparent !important;
    background-image: none !important;
    border: 2.5px solid #ffffff !important;
    color: #ffffff !important;
    box-shadow: none !important;
    font-size: 20px !important;
    border-radius: 50rem !important;
    width: 160px !important;
}

footer {
    padding-bottom: 0 !important;
}

.container-body {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
}

/* Style only applies to h2 tags that don't have any classes */
h2:not([class]) {
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 30px !important;
}

    h2:not([class])::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 3px;
        width: 60px;
        background: linear-gradient(to right, #428bca, #5bc0de);
        border-radius: 3px;
        transition: width 0.3s ease;
    }

    h2:not([class]):hover::after {
        width: 100px;
    }

/* Style only applies to h2 tags that don't have any classes */
h3:not([class]) {
    font-weight: 500;
    font-size: 1.4rem;
    color: #444;
    display: inline-block;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 3px;
    margin-bottom: 20px !important;
}
