.icon-callouts {
    display: flex;
    flex-direction: column;
}

.icon-callouts .col {
    background-color: #D95518;
    padding: 8px 20px;
    position: relative;
    min-height:  50px;
}

.icon-callouts .col-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap:10px;
}

.icon-callouts .col:nth-child(even) {
    background-color: #8C3510;
}

.icon-callouts .icon-cont {
    width: 40px;
    display: flex;
    justify-content: center;
}

.icon-callouts .icon {
    width: 35px;
}

.icon-callouts .icon.bag {
    width: 25px;
}

.icon-callouts .col,
.icon-callouts .col a {
    font-family: var(--font-clear-sans-med);
    font-size: 1.06725rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
}

.icon-callouts .col:not(:first-of-type)::before {
    content:"";
    pointer-events: none;
    position: absolute;
    top:0;
    left: 0;
    z-index:1;
    display: block;
    width: 100%;
    height:16px;
    background: rgb(0,0,0,.16);
    background: linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,0) 100%);
}

.icon-callouts .col i {
    font-size: 10px;
    margin-left: 3px;
}



@media screen and (min-width: 64em) {
    .panel-page > .slideshow-container {
        position: relative;
    }

    .icon-callouts {
        position: absolute;
        bottom: 0;
        left: 0;
        flex-direction: row;
        width: 100%;
        display:  grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .icon-callouts .col {
        flex: 1 1 calc(100% / 3);
        justify-content: center;
        background-color:rgba(217, 85, 24, 0.8);
        
        padding: 15px 20px;
        min-height: 106px;
    }

    .icon-callouts .col-inner {
        gap: 15px;
        max-width:275px;
        margin: auto;
    }

    .icon-callouts .col:nth-child(even) {
        background-color: rgba(140, 53, 16, 0.8);
    }

    .icon-callouts .col:not(:first-of-type)::before {
        display: none;
    }

    .icon-callouts .icon-cont {
        width: 120px;
    }

    .icon-callouts .icon {width: 62px;}
    
    .icon-callouts .icon.jeep {
        width: 65px;
    }
    
    .icon-callouts .icon.bag {
        width: 45px;
    }

    .icon-callouts .col,
    .icon-callouts .col a {
        font-size: 1.3125rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-callouts .col i {
        font-size: 13px;
        margin-left: 3px;
    }
}