/*****************************/
/* Icon box */
/*****************************/

.tabs-style-iconbox nav ul li {
    /* background: #E5DFD2; */
    background: #EAAA0F;
    align-content: center;
    /* height: 150px; */
}

.tabs-style-iconbox nav ul li:hover {
    background: #C74724;
    /* height: 150px; */
}

.tabs-style-iconbox nav ul li a {
    overflow: visible;
    padding: 5px 0;
    line-height: 1;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.tabs-style-iconbox nav ul li a:hover {
    color: #ffffff;
}

.tabs-style-iconbox nav ul li a:hover span {
    color: #ffffff;
}

.tabs-style-iconbox nav ul li a span {
    font-weight: 500;
    font-size: 0.7em;
    color: #611E29;
}

.tabs-style-iconbox nav ul li .tab-current {
    z-index: 100;
}

.tabs-style-iconbox nav ul li.tab-current a::after {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    border-top-color: #fff;
    pointer-events: none;
}

.tabs-style-iconbox nav ul li:first-child::before,
.tabs-style-iconbox nav ul li::after {
    position: absolute;
    top: 20%;
    right: 0;
    z-index: -1;
    width: 1px;
    height: 60%;
    background: rgba(0, 0, 0, 0.07);
}

.tabs-style-iconbox nav ul li:first-child::before {
    right: auto;
    left: 0;
}

.tabs-style-iconbox .icon::before {
    display: block;
    margin: 0 0 0.25em 0;
}


/*****************************/
/* Underline */
/*****************************/

.tabs-style-underline nav {
    background: #fff;
}

.tabs-style-underline nav a {
    padding: 0.25em 0 0.5em;
    border-left: 1px solid #e7ecea;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.tabs-style-underline nav li:last-child a {
    border-right: 1px solid #e7ecea;
}

.tabs-style-underline nav li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #EAAA0F;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
}

.tabs-style-underline nav li.tab-current a::after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.tabs-style-underline nav a span {
    font-weight: 700;
}