:root {
    --primary-color: #014d7f;
    --secondary-color: #038eda;
}

h1{
    color: white;
    font-weight: bold;
    font-size: 130%;
}

.isfirst{
    color: var(--primary-color)!important;
}
.issecond{
    color: var(--secondary-color)!important;
}
.isbgfirst{
    background-color: var(--primary-color)!important;
}
.isbgsecond{
    background-color: var(--secondary-color)!important;
}
a, a:hover{
    color: var(--secondary-color)!important;
}


#hero-banner{
    background-image: url('../img/banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

@supports (-webkit-overflow-scrolling: touch) {
    #hero-banner { background-attachment: scroll; }
}

#hero-banner .container{
    margin-top: auto;
    margin-bottom: 30px;
    border-radius:6px;
    background-color: rgba(0, 0, 0, 0.35);;
    padding: 20px;
}

.icon.is-very-large{
    height: 6rem;
    width: 6rem;
}

#expertises .card {
    height: 100%;
}

.card-image {
    color: var(--secondary-color);
}

.box .media-left {
    color: var(--secondary-color);
}



.step {
    position: relative;
    min-height: 1em;
    color: white;
}
.step-title {
    line-height: 1.5em;
    font-weight: bold;
    text-align: left;
}
.step-caption {
    font-size: 0.8em;
}
.step + .step {
    margin-top: 1.5em
}
.step > div:first-child {
    position: static;
    height: 0;
}
.step > div:not(:first-child) {
    margin-left: 1.5em;
    padding-left: 1em;
}
.step-circle {
    background-color: var(--secondary-color);
    position: relative;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 0 3px #fff;
}
/* Vertical Line */
.step-circle:after {
    content: ' ';
    position: absolute;
    display: block;
    top: 1px;
    right: 50%;
    bottom: 1px;
    left: 50%;
    height: 100%;
    width: 2px;
    transform: scale(1, 2);
    transform-origin: 50% -100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: -1;
}
.step:last-child .step-circle:after {
    display: none
}
.step.step-active {
    color: white;
}
.step.step-active .step-circle {
    background-color: var(--primary-color);
}