footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    bottom: 0;
    left: 0;
}
.footerkecil{
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 50px;
    gap: 25px;
    background-color: var(--nav-active-color);
}
.ContainerSession{
    color: var(--text-color);
    display: flex;
    gap: 10px;
    align-items: center;
}
.ContainerSession a{
    text-decoration: none;
}
.ContainerSession a span{
    color: var(--text-color);
    text-align: center;
    text-decoration: none;
}
.ContainerSession a:hover span{
    text-decoration: none;
    color: #ffd500;
}
.footeratas{
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--nav-color);
}
.ContainerSession2{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.con1{
    width: 32%;
    height: 200px;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}
.con1 a{
    color: var(--text-color);
    text-decoration: none;
}
.con1 a:hover{
    color: var(--btn-warning);
}
.social{
    display: flex;
    gap: 10px;
}
.social span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--text-color);
    border-radius: 50%;
}
.social a span i{
    flex-direction: row;
    color: var(--nav-color);
}
.social span:hover{
    background-color: var(--btn-warning);
    transition: 0.5s all ease;
}
@media screen and (max-width: 850px) {
    .ContainerSession2{
        flex-wrap: wrap;
        padding-left: 15px;
        padding-top: 15px;
    }
    .ContainerSession span{
        padding-left: 10px;
    }
    .con1:nth-child(1){
        flex: 0 0 40%;
        height: 220px;
    }
    .con1:nth-child(2){
        flex: 0 0 56%;
        height: 220px;
    }
    .con1:nth-child(3){
        flex: 0 0 100%;
        padding-left: 6px;
        padding-right: 6px;
        height: 100px;
    }
}