.link-list { padding: 0 30px; }

@media (min-width: 1178px) {
    .link-list { padding: 0 46px; }
}

.link-list h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fdb924;
}

.link-list h3 .carrot-down {
    margin-left: 15px;
    width: 36px;
    height: 20px;
    border: none;
    background: transparent;
    background-image: url(/includes/public/assets/shared/svg/icon-carrot-down.svg);
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 400ms cubic-bezier(0,0,0.3,1);
    cursor: pointer;
}

.link-list h3 .carrot-down.active {
    transform: rotate(-180deg);
}

@media (min-width: 1024px) {
    .link-list h3 {
        justify-content: flex-start;
    }

    .link-list h3 .carrot-down { display: none; }
}

.link-list .list {
    overflow: hidden;
}

@media (min-width: 1024px) {
    .link-list .list {
        display: block !important;
        padding: 0;
    }
}

.link-list .list ul {
    margin: 0;
    padding: 15px;
    list-style: none;
}

.link-list .list ul li {
    margin-bottom: 10px;
    padding: 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .link-list .list ul li {
        text-align: left;
    }
}

.link-list .list a,
.link-list .list span {
    font-size: 16px;
    font-weight: 500px;
    color: #fff;
    transition: color 400ms cubic-bezier(0,0,0.3,1);
}

.link-list .list a:hover {
    color: #00A4EF;
    text-decoration: none;
}
