/* Buttons */
.btn {
    display: inline-block;
    background: var(--new-primary-color);
    color: #fff;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btnActive {
    display: inline-block;
    background: var(--new-secondary-color);
    color: #fff;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btnSecondary {
    background: var(--new-secondary-color);
}

.btnDark {
    background: #333;
    color: #fff;
}

.btnLight {
    background: #f4f4f4;
    color: #333;
}

.btn:hover {
    opacity: 0.8;
}

/* Backgrounds */
.bgDark {
    background: rgb(54, 54, 54);
    color: #fff;
}

.bgLight {
    background: #f4f4f4;
    color: #333;
}

.bgPrimary {
    background: var(--new-primary-color);
    color: #fff;
}

.bgSecondary {
    background: var(--secondary-color);
    color: #fff;
}

.bgProject {
    /* background: rgb(244, 244, 244); */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.bgProject:hover {
    transition: 0.5s ease;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Other */
.textCenter {
    text-align: center;
}

.flexItems {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flexColumns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    padding: 0 1.5rem;
    margin: auto;
    overflow: hidden;
}

.sectionTitle {
    font-size: 2rem;
    display: block;
    padding-bottom: 0.5rem;
    text-align: center;
    font-weight: 100;
    text-transform: uppercase;
}
  
.bottomLine {
    height: 2px;
    width: 3rem;
    background: var(--new-primary-color);
    display: block;
    margin: 0 auto 1rem auto;
}

.lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.current {
    animation: fade ease 0.5s;
    border-bottom: 2px var(--new-secondary-color) solid !important;
}

.linkCorrection {
    margin-top: -3rem;
    height: 3rem;
}

@keyframes fade {
    from{
        border-bottom: none;
    }
    to{
        border-bottom: 2px var(--new-secondary-color) solid !important;
    }
}