.custom-links-container{
    margin-bottom: 30px;
}

.custom-links-container .custom-link {
    position: relative;
    width: 100%;
    line-height:22px!important;
    background-color: var(--primary);
    color: #343A74;
    padding: 10px 50px ;
    cursor: pointer;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    box-sizing: border-box;
    position: relative;

}
.custom-links-container .custom-link svg{
    color:#fff;
    font-size:16px;
    margin-right: 15px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    position: absolute;
    left: 17px;
    top: 14px;
}



.custom-links-container .custom-link span {
    font-weight: 500;
    font-size: 17px;
    line-height:22px;
    color: #fff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.custom-links-container .custom-link:hover {
    background-color: var(--secondary);
}

.custom-links-container .custom-link:after{
    background: url(../../../assets/images/link.svg) no-repeat left;
    background-size: 100% auto;
    content: "";
    display: block;
    width: 15px;
    height: 14px;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    right: 20px;
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.custom-links-container .custom-link:hover:after{
    opacity: 1;

}
@media only screen and (max-width: 1024px) {
    .custom-links-container {
        max-width: 100%;
    }
}