﻿.arrow-steps .step {
    box-sizing: border-box;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    height: 100px;
    text-align: center;
    cursor: default;
    margin: 0 3px;
    padding: 10px 10px 10px 20px;
    width: calc(20% - 10px);
    float: left;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: background-color 0.2s ease;
    background-color: black;
    color: #fff;
    font-family: "United Sans",Impact,"Arial Black","sans serif";
}
.step sup{
    position: relative;
    top: -5px;
    font-weight: bold;
    margin-left: 3px;
}

.step a{
    text-decoration: none;
    color: white;
    display: block;
    width: 100%;
}

.step a:hover{
    color: #c5a563;
    cursor: pointer;
}

.arrow-steps .step:after,
.arrow-steps .step:before {
    content: " ";
    position: absolute;
    top: 0;
    right: -30px;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid black;
    z-index: 2;
}

.step:first-child{
    background-color: #c5a563;
    color: black;
    font-weight: bold;
    cursor: auto;
    margin-left: 0;
}

.step:first-child:hover{
    color: black;
}

.arrow-steps .step:first-child:after{
    color: black;
    border-left: 30px solid #c5a563;
}

.arrow-steps .step:before {
    right: auto;
    left: -1px;
    border-left: 30px solid #fff;
    z-index: 0;
    
}

.arrow-steps .step:first-child:before {
    border: none;
    
}

.arrow-steps .step span:before {
    opacity: 0;
    content: "✔";
    position: absolute;
    top: -2px;
    left: -30px;
    color: white;
}

.section-title{
    font-family: acumin-pro-semi-condensed,"Franklin Gothic",sans-serif;
    font-weight: 700;
    font-size: 280%;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.2;
}

.section-sub-title{
    font-family: acumin-pro-semi-condensed,"Franklin Gothic",sans-serif;
    font-size: 120%;
    text-align: left;
    width: 60%;
    margin: 0 auto;
    margin-top: 10px;
}

.section-sub-title-a{
    text-align: center;
    font-family: acumin-pro-semi-condensed,"Franklin Gothic",sans-serif;
    font-weight: 600;
    font-size: 180%;
    margin-bottom: 20px;
    line-height: 1.2;
}
.short-hr{
    width: 100px;
    border-width: 5px;
    border-color: #c5a563;
}

.purdue-sub-header{
    font-family: "United Sans",Impact,"Arial Black","sans serif";
    font-weight: 700;
    font-size: 1.875rem;
    color: #727272;
    text-transform: uppercase;
}

#quick-link-cards .card{
    border-radius: 0;
    border: none;
}

#quick-link-cards .card img{
    /*border: 3px solid black;*/
}

#quick-link-cards .card-body{
    height: 100%;
    padding: 10px 20px;
    font-family: "United Sans",Impact,"Arial Black","sans serif";
    font-size: 130%;
    background-image: url(https://purdue.edu/purdue/images/templateElements/2015/stripes-tile.png);
    background-repeat: repeat;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
}

#quick-link-cards .card-body>a{
    text-decoration: none;
    color: white;
}

#quick-link-cards .card-body>a>i{
    margin-right: 5px;
}

#quick-link-cards .card-body>a:hover{
    color: #c5a563;
    cursor: pointer;
}

@media screen and (max-width: 720px) {
    .section-title{
        font-size: 26px;
    }
    .section-sub-title{
        width: 100%;
        font-size: 16px;
    }
    .arrow-steps .step{
        font-size: 16px;
        line-height: 20px;
        height: 60px;
        width: calc(25% - 10px);
        text-align: center;
        padding-left: 30px;
    }
    .arrow-steps .step:after,
    .arrow-steps .step:before{
        right: -20px;
        width: 0;
        height: 0;
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent;
        border-left: 20px solid black;
    }
    .arrow-steps .step:before {
        right: auto;
        left: -1px;
        border-left: 20px solid #fff;
        z-index: 0;
    }

    .arrow-steps .step span:before {
        left: -20px;
    }
    .step:first-child{
        width: 100%;
        margin-bottom: 10px;
        height: auto;
        padding-left: 0;
    }

    .step:first-child:after{
        display: none;
    }

}