.trim img {
    width: 20px;
    height: 20px;
}

.foot-web-icon img {
    height: 100%;
}

.foot-websites {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.foot-web-item {
    position: static;
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.foot-web-item:last-child {
    margin-right: 0;
}

.website-dropdown {
    display: none;
    position: absolute;
    background-color: white;
    width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 20px;
    border-radius: 4px;
    bottom: calc(90%);
    box-sizing: border-box;
}

.website-dropdown::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

.foot-web-item:nth-child(1) .website-dropdown::after {
    margin-left: -400px;
}

.foot-web-item:nth-child(2) .website-dropdown::after {
    margin-left: 0;
}

.foot-web-item:nth-child(3) .website-dropdown::after {
    margin-left: 400px;
}

.dropdown-columns {
    display: flex;
    justify-content: space-between;
}

.dropdown-column {
    flex: 1;
    padding: 0 15px;
    border-right: 1px solid #eee;
}

.dropdown-column:last-child {
    border-right: none;
}

.column-title {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
  	text-align: left;
}

.column-links {
    display: flex;
    flex-direction: column;
}

.column-links a {
    display: block;
    padding: 5px 0;
    color: #555;
    text-decoration: none;
    text-align: left;
    white-space: nowrap;
}

.column-links a:hover {
    color: #0066cc;
}

.foot-web-title {
    display: block;
    margin-bottom: 0;
    flex-grow: 1;
    margin-bottom: 4px;
    margin-left: 60px;
}

.foot-web-icon {
    cursor: pointer;
    display: inline-block;
    margin-left: 10px;
}

.foot-web-icon:hover {
    opacity: 0.8;
}