/* colors */
.text-primary {
    color: #28a428;
}

.text-secondary {
    color: #0284d0;
}

.text-third {
    color: #ff4500;
}

/* Button */
.btn {
    cursor: pointer;
    display: inline-block;
    padding: 10px 30px;
    color: #fff;
    background: #28a428;
    border: none;
    border-radius: 5px;
}

.btn:hover {
    opacity: 0.8;
}

.btn-secondary,
.bg-primary {
    color: #fff;
    background: #0284d0;
}

.btn-primary,
.bg-secondary {
    color: #fff;
    background: #28a428;
}

.btn-dark,
.bg-dark {
    color: #fff;
    background: #333;
}

/* Flex-items */
.flex-items {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.flex-items>div {
    padding: 20px;
}

/* 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;
}

/* Flex column */
.flex-column.flex-reverse .row {
    flex-direction: row-reverse;
}

.flex-column .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.flex-column .column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}

.flex-column .column .column-1,
.flex-column .column .column-2 {
    height: 100%;
}

.flex-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flex-column .column-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.flex-column h2 {
    font-size: 40px;
    font-weight: 100;
}

.flex-column p {
    margin: 20px 0;
}


/* form */
.callback-form,
.register-form {
    width: 100%;
    padding: 20px 0;
}

.callback-form label,
.register-form label {
    display: block;
    margin-bottom: 5px;
}

.callback-form .form-control,
.register-form .form-control {
    margin-bottom: 15px;
}

.callback-form input,
.register-form input {
    width: 100%;
    padding: 4px;
    height: 40px;
    border: #f5f5f5 1px solid;
}

.callback-form input:focus,
.register-form input:focus {
    outline-color: #28a745;
}

.callback-form .btn,
.register-form .btn {
    padding: 12px 0;
    margin-top: 20px;
}