.cto-ctr {
    background-color: var(--clr8);
    padding: 40px 0;
}

.ftr-ctr {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ftr-ctr h1,
.ftr-ctr h2 {
    color: var(--clr5);
    font-family: 'Roboto Slab', serif;
}
.ftr-ctr h2 {
    margin-top: 30px;    
}
.ftr-ctr a {
    transition: .2s all;
    display: flex;
    align-items: center;
    height: auto;
    margin-top: 10px;
    text-decoration: none;
    color: var(--clr4);
}
.ftr-ctr a p {
    text-align: center;
}
.ftr-ctr a svg {
    transition: .2s all;
    margin-right: 8px;
    fill: var(--clr6);
    width: 20px;
    height: 20px;
}
.ftr-ctr a:hover {
    color: var(--clr1);
}
.ftr-ctr a:hover svg {
    fill: var(--clr1);
}
.ftr-rds-ctr {
    margin-top: 20px;
    display: flex;
    justify-content: center;

}
.ftr-rds {
    margin: 0 10px;
}
.ftr-rds:hover svg {
    fill: var(--clr1);
}
.ftr-rds svg {
    fill: var(--clr5);
    width: 40px;
    height: 40px;
}
/* Copyright */
.ftr-cpy {
    background-color: var(--clr4);
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 860px) {
    .ftr-ctr h1 {
        font-size: 28px;
    }
    .ftr-ctr h2 {
        width: 70%;
        font-size: 20px;
    }
}
@media screen and (max-width: 460px) {
    .ftr-ctr a {
        max-width: 80%;
        align-items: start;
        text-align: left;
        justify-content: center;
    }
}