/* Home page styles */
@font-face {
    font-family: 'cakefont';
    src: url('../font/cakedingbats-webfont.eot');
    src: url('../font/cakedingbats-webfont.eot?#iefix') format('embedded-opentype'),
        url('../font/cakedingbats-webfont.woff2') format('woff2'),
        url('../font/cakedingbats-webfont.woff') format('woff'),
        url('../font/cakedingbats-webfont.ttf') format('truetype'),
        url('../font/cakedingbats-webfont.svg#cake_dingbatsregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    padding: 60px 0;
}

header {
    margin-bottom: 60px;
}

img {
    margin-bottom: 30px;
}

h1 {
    font-weight: bold;
}

ul {
    list-style-type: none;
    margin: 0 0 30px 0;
    padding-left: 25px;
}

a {
    color: #0071BC;
    text-decoration: underline;
}

hr {
    border-bottom: 1px solid #e7e7e7;
    border-top: 0;
    margin-bottom: 35px;
}

.text-center {
    text-align: center;
}

.links a {
    margin-right: 10px;
}

.release-name {
    color: #D33C43;
    font-weight: 400;
    font-style: italic;
}

.bullet:before {
    font-family: 'cakefont', sans-serif;
    font-size: 18px;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: -1px;
}

.success:before {
    color: #88c671;
    content: "\0056";
}

.problem:before {
    color: #d33d44;
    content: "\0057";
}

.cake-error {
    padding: 10px;
    margin: 10px 0;
}

#url-rewriting-warning {
    display: none;
}



/* 14-06-25 */
.link-box {
    background: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 0;

    border: 0 solid #e91e63;
    /* Initial border */
    transition:
        border-width 0.3s ease,
        transform 0.3s ease;
    transform: scale(1);
    /* Default scale */
}

.link-box:hover {
    border-left: 2px solid #e91e63;
    border-right: 2px solid #e91e63;
    /* border-bottom: 2px solid #e91e63; */
    transform: scale(1.03);
    /* Slight scale-up */
}

.link-box::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 5px;
    left: 0;
    bottom: 0;
    background-color: #e91e63;
}

.link-box h3 {
    color: #e91e63;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}

.row .column {
    margin-bottom: 20px;
}

.link-list {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
}

.link-list li {
    position: relative;
    display: flex;
    align-items: center;
    /* background-color: #efefef52;
        padding: 5px; */
    padding: 5px 14px;
    gap: 7px;
    margin-bottom: 0;
    margin-right: 10px;
    cursor: pointer;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.link-list li:hover::after {
     transform: translateX(0);
    opacity: 1;
}
.link-list li .fa{
    color: #000;
}
.link-list li:hover .fa{
    color: #e91e63;
}
.link-list li::after {
    content: "";
    position: absolute;
    background-color: #e91e63;
    width: 100%;
    height: 0.3px;
    left: 0;
    bottom: 0;
   transform: translateX(-100%);
    transition: transform 0.5s ease;
    opacity: 0;
    pointer-events: none;
}
.link-list li:last-child{
    margin-right: 0;
}
.link-list li:hover a {
    color: #e91e63;
}

.link-list li a {
    /* background: #efefef52; */
    /* display: block; */
    font-size: 14px;
    color: #000;
}

a {
    text-decoration: none;
}

.app-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
}

@media(max-width:767px){
    .controller_list .row{
        flex-direction: column;
    }
    .controller_list .row .column.column-50{
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media(max-width:576px){
    .app-title{font-size: 20px; margin-bottom: 30px;}
    .link-box h3{font-size: 22px;}
}

@media(max-width:420px){
    .link-list li{width: 100%; margin-right: 0; padding: 8px 20px;}
    .link-box{padding: 20px 10px;}
    .link-box h3{margin-bottom: 20px;}
}