aside {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 15px;
    position: fixed;
    z-index: 1;
}
.assetWrapper {
    display: flex;
    flex-direction: column;
}
._tMenuBox {
    display: flex;
    align-self: stretch;
}
._tMenuBox > span {
    display: flex;
    align-items: center;
}
._tMenuBox > span:nth-child(2) {
    flex: 1;
    cursor: pointer;
    /* padding-left: 7.5px; */
    /* padding-right: 7.5px; */
    justify-content: center;
    visibility: hidden;
}

._tMenuBox > span:nth-child(2) > p {
    display: flex;
    flex-direction: row;
    margin: 0px;
    padding: 0px;
    align-items: center;
}

.icon-phone {
    display: flex;
    flex-direction: row;
    width: 20px;
    height: 20px;
    /* border: solid 1px red; */
    border-radius: 50%;
    margin-right: 10px;
}
.icon-phone img{
    border-radius: 50%;
}
._tMenuBox > span:nth-child(2) > p > span {
    display: flex;
    flex-direction: row;
    color:black;
}


.navLink {
    display: flex;
    flex: 1;
}
.navLink > ul {
    flex: 1;
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 40px 0px;
    padding: 0px;
}
.navLink > ul li {
    display: flex;
    /* flex: 1; */
    margin: 5px 0px;
}
.navLink > ul li a {
    display: flex;
    flex: 1;
    text-decoration: none;
    color: var(--color-gray);
    font-size: 14px;
    line-height: 17px;
    font-style: normal;
    font-weight: normal;
    padding: 3px 0px;
}
.navLink > ul li a.active {
    color: var(--color-primary);
}

.socialMedia {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}
.socialMedia > ._block {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.socialMedia > ._block:nth-child(3) {
    margin-bottom: 25px;
}
._block > .icon {
    display: flex;
    width: 20px;
    height: 21px;
    border-radius: 40px;
    cursor: pointer;
}
.socialMedia > span._txt {
    color: var(--color-gray);
    font-size: 12px;
    margin-bottom: 10px;
}

.assetWrapper.grey .socialMedia > span._txt {
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 10px;
}
.assetWrapper.grey .socialMedia ._block .icon svg path {
    fill: rgb(255, 255, 255);
}
/* MEDIA */
@media screen and (min-width: 900px) {
    aside {
        width: 280px;
        padding: 70px 50px 0px 70px;
        height: 100vh;
    }
    .assetWrapper {
        flex: 1;
    }
    .assetWrapper.grey .navLink a {
        color: #F4F4F4;
    }
    .assetWrapper.grey .socialMedia a {
        color: #F4F4F4;
    }

    .assetWrapper.grey svg.menu rect {
        fill: #F4F4F4;
    }

    div[data-section] {
        display: flex;
        flex-direction: column;
        padding-left: 280px;
    }
}
@media screen and (max-width: 900px) {
    aside {
        z-index: 10;
        background-color: #ffffff;
    }
    .navLink {
        display: none;
    }
    .socialMedia {
        display: none;
    }
    ._tMenuBox > span:nth-child(2) {
        visibility: visible;
    }
}
