﻿/* === THREE FEATURE CARDS === */

.feature-card {
    height: 100%;
    padding: 30px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}
.feature-card > h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.42857143;    
}

/* Colors (taken from original theme intent) */
.bg-theme-colored {
    background-color: #0d5189 !important;
    box-shadow: 10px 10px 10px #0d5189;
}
.bg-theme-colored2 {
    background-color: #FC9928 !important;
    box-shadow: 10px 10px 10px #FC9928;
}

.bg-theme-colored3 {
    background-color: #f45661 !important;
    box-shadow: 10px 10px 10px #f45661;
}

/* Headings */
.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Paragraph text */
.feature-card p {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Images */
.feature-card img {
    max-height: 130px;
    object-fit: contain;
}

/* Buttons */
.btn-circled {
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 0.8rem;
}

.btn-theme-colored2 {
    background-color: #FC9928;
    color: #fff;
}
.btn-theme-colored2:hover {
    color: #fff;
    background-color: #e47b03;
    border-color: #e47b03;
}

.btn-theme-colored3 {
    background-color: #f45661;
    color: #fff;
}

/*.btn-theme-colored3:focus,
.btn-theme-colored3.focus {
    color: #f45661;
    background-color: #e6e6e6;
    border-color: #be0c19;
}*/

    .btn-theme-colored3:hover {
        color: #fff;
        background-color: #fa2d3c;
        border-color: #f01d2b;
    }

.btn-theme-colored {
    color: #fff;
    background-color: #0d5189;
    border-color: #0d5189;

}

    .btn-theme-colored:hover {
        color: #fff;
        background-color: #074170;
        border-color: #083051;
    }

/* Hover */
.feature-card a:hover h3 {
    text-decoration: underline;
}

/* Responsive spacing */
@media (max-width: 767px) {
    .feature-card {
        margin-bottom: 15px;
    }
}
