/* Text colors */
.text-primary {
    color: #28a745;
}

.text-secondary {
    color: #0284d0;
}

/* Button */
.btn {
    cursor: pointer;
    display: inline-block;
    padding: 10px 30px;
    color: #333;
    background-color: var(--yellow-color);
    border: none;
    font-size: 15px;
    border-radius: 5px;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary,
.bg-primary {
    background: #28a745;
    color: #fff;
}

.btn-secondary,
.bg-secondary {
    background: #0284d0;
    color: #fff;
}

.btn-dark,
.bg-dark {
    background: #333;
    color: #fff;
}

.btn-light,
.bg-light {
    background: #f4f4f4;
    color: #333;
}

.btn-outline {
    background: transparent;
    border: 1px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #333;
}

/* Flex items */
.flex-items {
    display: flex;
    text-align: center;
    justify-content: center;
    text-align: center;
    height: 100;
}

.flex-items>div {
    padding: 20px;
}

/* Flex columns */
.flex-columns.flex-reverse .row {
    flex-direction: row-reverse;
}

.flex-columns .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100;
}

.flex-columns .column {
    display: flex;
    flex-direction: column;
    flex-basis: 100;
    flex: 1;
}

.flex-columns .column .column-1,
.flex-columns .column .column-2 {
    height: 100%;
}

.flex-columns img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flex-columns .column-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px;
}

.flex-columns h2 {
    font-size: 40px;
    font-weight: 100;
}

.flex-columns h4 {
    margin-bottom: 10px;
}

.flex-columns p {
    margin: 20px 0;
}

/* My Utilities */
.primary-btn {
    padding: 8px;
    /* width: 50px; */
    border: none;
    border-radius: 2px;
    background-color: #333;
    color: var(--white-color);
    font-family: inherit;
    /* font-weight: 550; */
}

.primary-btn:hover {
    background-color: #413b3b;
    color: var(--white-color);
}

.secondary-btn {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--yellow-color);
    font-size: 15px;
    transition: all .3s ease-in-out;
}

.secondary-btn:hover {
    background-color: var(--gray-color);
    transition: width 2s, height 4s;
}

.current {
    color: var(--white-color);
}