/* test colors */
.text-primary{
    color:#28a745
}

.text-secondary{
    color:#0284d0;
}

.text-logoBlue{
    color:#0000ff; /*#cc0909;*/
    font-weight: bold;
}

.text-logolBlue{
    color:#0084ff; /*#cc0909;*/
    font-weight: bold;
}

.text-logoRed{
    color:#cc0909;
    font-weight: bold;
}
.text-logo{
    color:#0084ff;
    font-weight: bold;
}

.text-italc{
    font-style: italic;
}

/* background color*/
.bg-dark{
    background: #333; 
    color: #fff;
}

.bg-gray{
    background: #444; 
    color: #fff;
}


/* button */
.btn{
    cursor: pointer;
    display: inline-block;
    padding: 10px 30px;
    color: #fff;
    background-color: #28a745;
    border-radius: 5px;
    border: none;
}

.btn:hover{
    opacity: 0.9;
}

.btn-primary, .bg-primary{
    color: #fff;
    background: #28a745;
}

.btn-secondary, .bg-secondary{
    color: #fff;
    background: #0284d0;
}

.btn-dark, .bg-dark{
    background: #333;
    color: #fff;
}

.btn-light, .bg-light{
    color: #333;
    background: #f4f4f4;
}

.btn-outline{
    background: transparent;
    border: 1px solid #fff;
}

/* flex columns */
.flex-columns .row{
    display: flex;
    flex-direction: row;
    /* ? */
    flex-wrap: wrap;
    width: 100%;
}

.flex-columns .column{
    display: flex;
    flex-direction: column;
    /* ? */
    flex-basis: 100%;
    /* take entire height */
    flex: 1;
    /* max-height: 70vh; */
}

.flex-columns .column .column-1,
.flex-columns .column .column-2{
    height: 100%;
}

.flex-columns img{
    width: 100%;
    height: 100%;
    object-fit: fill;
} 

.flex-columns .column .column-2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px;
}

.flex-columns h2{
    font-size: 30px;
    font-weight: 100;
}

.flex-columns h4{
    margin-bottom: 10px;
}

.flex-columns p{
    margin: 20px 0;
}

/* section header */
.section-header{
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.section-header h2{
    font-size: 40px;
    margin: 20px 0;
}

.section-padding{
    padding: 20px 20px 40px;
}