.icon{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.quick-links {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
    width: 50px;
}

.insta-feed-img{
    padding: 0 0 16.66666667% 0; height: 0; background-repeat: no-repeat; background-position: center; background-size: cover;
}

.quick-links .quick-links-list{
    position: absolute;
    right: 0;
    bottom: 100%;
    transition: all 0.5s;
    opacity: 0;
    list-style: none;
}
.quick-links .quick-links-list li{
    width: 50px;
    height: 0;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    cursor: pointer;
}
.quick-links.active .quick-links-list{
    opacity: 1;
}
.quick-links.active .quick-links-list li{
    margin: 10px 0;
    height: 50px;
}
.quick-links.active .quick-links-list li a{
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: block;
}
.quick-links.active .quick-links-list li:last-child{
    margin-bottom: 0;
}

.menu-icon {
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 4px;
    background-color: #FF6F00;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    position: relative;
}
.menu-icon span{
    position: absolute;
    display: inline-block;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    width: 35px;
    top: 50%;
    left: 50%;
}
.menu-icon span:nth-of-type(1){
    transform: translate(-50%, -8px);
}
.menu-icon span:nth-of-type(2){
    transform: translate(-50%, 0);
}
.menu-icon span:nth-of-type(3){
    transform: translate(-50%, 8px);
}
.quick-links.active .menu-icon span:nth-of-type(1){
    transform: translate(-50%,0px) rotate(45deg);
}
.quick-links.active .menu-icon span:nth-of-type(2){
    width: 0px;
}
.quick-links.active .menu-icon span:nth-of-type(3){
    transform: translate(-50%,0px) rotate(-45deg);
}