.serviceBox{
    padding: 6px 12px;
    min-height: 480px;
    margin-bottom: 24px;
    text-align: center;
    background: #ffffff;
    border: 4px solid #eec214;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}
@media screen and (max-width: 1080px) {
    .serviceBox{
        min-height: 400px;
    }
    .start-grid{
        grid-gap: 20px;
    }
  }

.serviceBox .service-icon{
    display: inline-block;
    padding: 20px;
    width: 100px;
    height: 100px;
    border: 2px solid #eec214;
    color: #eec214;
    margin-top: 16px;
    margin-bottom: 16px;
    position: relative;
}

.serviceBox img{
    background-repeat: no-repeat;
    background-position: center center;
}

.serviceBox .title{
    font-size: 1rem;
    font-weight: 700;
    color: #eec214;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .title{ 
    letter-spacing: 3px; 
}
.serviceBox .description{
    font-size: 1rem;
    text-align: left;
    color: #222222;
    letter-spacing: 1px;
    line-height: 27px;
    margin: 0;
}

.active{
    /* content: "";
    border-top: 0 solid #000000;
    border-right: 0 solid #000000;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 0.3s ease 0s; */
    border: 4px solid #000000;
    background-color: whitesmoke;
}
.active:hover:before{
    border-top-width: 54px;
    border-right-width: 54px;
}
.active:before{
    content: "";
    border-bottom: 0 solid #660909;
    border-left: 0 solid transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.active:after{
    content: "";
    border-bottom: 0 solid #000000;
    border-left: 0 solid transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.active:hover:after{
    border-bottom-width: 54px;
    border-left-width: 54px;
}

.tintlay {
    position: relative;
}
  
.tintlay:before{
    position: absolute;
    display: block;
    content:" ";
    top:0;
    left:0;
    width:100%;
    height:100%;
    display: none;
    z-index:0;
}
  
.tintlay:before{
    display: block;
}
  
.dark:before {
    background-color: rgba(0, 0, 0, .5);
}