:root {
    --text-color: #14112C;
    --white-color: #FFFFFF;
    --doted-border-color: #B5B5B5;
    --red-gradient-bg: radial-gradient(59.36% 59.36% at 50% 50%, #D32A35 0%, #220305 100%);
    --border-radius-light: 10px;
    --border-radius-large: 20px;
    --light-bg: #F4FBFF;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-primary {
    background-color: #0277C5;
}

.button.button-primary {
    background-color: var(--white-color);
    border-radius: var(--border-radius-light);
    color: var(--text-color);
}

.highlight-text {
    color: #0277C5;
}

.challange-card {
    padding: 45px 20px;
    border-radius: var(--border-radius-light);
    border: 1px solid #DFDFDF;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.challange-card:hover {
    border: 1px solid #0277C5;
    background-color: #0277C5;
    color: var(--white-color);
    transform: translateY(-5px);
    box-shadow: 0px 0px 14px 0px #6FC4FD;
}

.solution-card {
    padding: 20px;
    background-color: var(--white-color);
    border: 1px solid #DFDFDF;
    border-radius: var(--border-radius-large);
    height: 100%;
}

@media (min-width: 992px) {
    .result-sec .row .col:nth-child(even) .challange-card {
        margin-top: 50px;
    }
}