
footer {
    background: darkslategray;
    position: absolute;
    margin: 0;
    bottom: -50vh;
    padding: 10px;
    text-align: center;
    width: 100%;
}

footer i {
    color: aliceblue;
    margin: 0 5px 15px;
    font-size: 2rem;
}

footer span {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

footer span h6{
    margin: 0;
    margin-right: 10px;
    text-align: center;
}

footer span p {
    margin: 0;
}

footer span a:hover {
    color: rgb(241, 215, 182);
}
    footer span a {
    color: antiquewhite;
}


.frequent-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 30px 0;
    color: rgb(20, 80, 82);
}

.frequent-container .frequent-header .frequent-headline p {
    font-size: 1.2rem;
}
.frequent-container .frequent-header .frequent-headline {
    text-align: center;
    margin: 30px;
    padding: 0 30px;
    
}

.frequent-container .frequent-header ul li {
    background: rgba(255, 255, 255, 1);
    list-style: none;
    padding: 10px;
    font-size: 1.2rem;
    border-radius: 5px;
    overflow: hidden;
}
.frequent-container .frequent-header ul li div img {
    width: 10px;
    object-fit: cover;
}
    .frequent-container .frequent-header ul li div i {
    font-size: 1.2rem;
    color: rgb(50, 199, 206);
    border-radius: 5px;
}
.frequent-container .frequent-header ul li p {
    margin: 20px 10px 0;
    display: none;
}
.frequent-container .frequent-header ul li div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.4rem;
    cursor: pointer;
    white-space: nowrap;
}


@media screen and (max-width: 600px) {
    .frequent-container {
        margin: 15px 15px 0;
    }
}
    @media screen and (min-width: 1024px) {
    footer {
        width: 80%;
    }
    
    .frequent-container {
        margin-left: 90px;
    }

}