.footer {
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 0 1rem;
}

.footerTopRow {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.footerLogo {
    object-fit: contain;
}

.footerContactBlock {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.footerLink {
    text-decoration: none;
    color: #fff;
    text-align: center;
}

.tsandcs {
    color: #fff;
    text-align: center;
    font-size: 1rem;
    letter-spacing: .3rem;
}



/* mobile footer met issues */

.mobileFooter {
    position: fixed;
    bottom: 0;
    min-width: 430px;
    /* max-width: 500px; */
    /* width: 100dvw; */
    height: 70px;
    background-color: #000;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.mobileFooter ul{
    position: relative;
    display: flex;
    width: 500px;
    margin-left: -35px;
    /* justify-content: space-evenly; */
}

.mobileFooter ul li{
    position: relative;
    list-style: none;
    width: 70px;
    height: 70px;
    padding: 0  1rem;
    z-index: 1;
    /* background-color: green; */
}

.mobileFooter ul li a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.mobileFooter ul li a .icon{
    position: relative;
    display: block;
    line-height: 75px;
    font-size: 1.5em;
    text-align: center;
    transition: 0.5s;
    color: #fff;
}

.mobileFooter ul li.active a .icon{
    transform: translateY(-35px);
    color: #fff;
}

.mobileFooter ul li a .text{
    position: absolute;
    color: var(--clr);
    font-weight: 400;
    font-size: 0.75em;
    letter-spacing: 0.05em;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(20px);
}

.mobileFooter ul li.active a .text{
    opacity: 1;
    transform: translateY(10px);
}

.indicator{
    position: absolute;
    top: -50%;
    width: 65px;
    height: 65px;
    background-color: #473f3f;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: 0.5s;
}

.mobileFooter ul li:nth-child(1).active ~ .indicator{
    transform: translateX(calc(65px * 0));
}

.mobileFooter ul li:nth-child(2).active ~ .indicator{
    transform: translateX(calc(98px * 1));
}
.mobileFooter ul li:nth-child(3).active ~ .indicator{
    transform: translateX(calc(95px * 2));
}
.mobileFooter ul li:nth-child(4).active ~ .indicator{
    transform: translateX(calc(93px * 3));
}
.mobileFooter ul li:nth-child(5).active ~ .indicator{
    transform: translateX(calc(91px * 4));
}

/* end of mobile footer met issues */


/* mbFooter V3 */

.mbFooter {
   width: 100%;
   background-color: #000;
   display: none;
   position: fixed;
   bottom: 0;
}

.mbList {
    /* background-color: green; */
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    list-style-type: none;
    column-gap: 2%;
}

.mbItem {
   /* background-color: yellow; */
   padding: 1.5rem;
   width: calc(100dvw/5);
   margin-left: -4rem;
}

.mbLink {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   color: #fff;
}

@media (max-width:500px) {
    .footer {
        display: none;
    }

    .mobileFooter,
    .mbFooter {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}