@import url("../assets/css/root.css");

h2{
    font-size: 1.5rem;
    font-weight: 700;
}
/* FOOTER */
footer {
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background-color: var(--gradient4-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .cont {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
}

footer .cont .sec h2 {
    position: relative;
    color: var(--bg-color);
    font-weight: 500;
    margin-bottom: 15px;
}

footer .cont .sec h2::before {
    content: '';
    position: absolute;
    bottom: .5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient1-color);
}

footer .cont .sec p {
    color: var(--bg-color);
}
.sci{
    margin-top: 20px;
    display: grid;
    grid-template-columns:repeat(3,50px) ;
    grid-gap: 10px;
}
.sci li a{
    display: inline;
    width: 48px;
    height: 48px;
    background: var(--gradient5-color);
    display: grid;
    justify-content: center;
    align-content: center;
    text-decoration: none;
    border-radius: 4px;
}
.sci li a:hover{
    background: var(--gradient2-color);
}
.sci li a i{
    color: var(--bg-color);
    font-size: 25px;
}
.quickLink{
    position: relative;
}
.quickLink li{
    list-style: none;
}
.quickLink li a{
    color: var(--bg-color);
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}
.quickLink li a:hover{
    color:#ffcc00;
}
.information{
    position: relative;
    text-align: left;
}
.information li{
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.information li span:nth-child(1){
    color: var(--bg-color);
    font-size: 20px;
}

.information li span{
    color: var(--bg2-color);
}
.information li span a{
    color: var(--bg2-color);
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}
.information li span a:hover{
    color:#ffcc00;
}
.copyrightText{
    width: 100%;
    background-color: var(--gradient5-color);
    padding: 1rem 0 0 0;
    text-align: center;
    color: var(--bg-color);
}

.copyrightText p{
    margin-bottom: 0;
    padding-bottom: 1rem;
}

@media (max-width: 1024px) {
    footer .cont{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    footer{
        padding: 0 2rem;
    }

    footer .cont{
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    .sci{
        justify-content: center;
    }
    footer .cont .sec h2{
        padding: 1rem;
    }
    footer .cont .sec h2::before {
        width: 100%;
    }
    .copyrightText {
        padding: 8px 40px;
    }
    .copyrightText p{
        padding: 1rem 0 0 0;
    }
    .information{
        text-align: center;
    }
}
