/*
 * Single Page Web Design (.bg-icon, .ct-bg)
 *
 * @package Studiare_Child
 */

.bg-icon {
    z-index: 1;
}

.bg-icon::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80%;
    height: 80%;
    background: #035300;
    border-radius: 5px 10px 5px 10px;
    transition: ease-in-out 0.2s;
}

.ct-bg:hover .bg-icon::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80%;
    height: 80%;
    background: #035300;
    border-radius: 15px;
    transition: ease-in-out 0.2s;
}
