footer {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, Sans-serif;
    background-color: #0d1117;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer {
    width: 100%;
    position: relative;
    height: auto;
    text-align: center;
    background: linear-gradient(to right, #0d1117, #5499c7);
    color: white;
    padding: 100px 15px;
    margin-top: 50px;
    transform: skewY(-5deg);
    border-radius: 25px;
    box-shadow: 0 0 50px #5499c7;
}

.footer a {
    text-decoration: none;
    color: inherit;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .footer-container {
    transform: skewY(5deg);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.footer .footer-col {
    width: 190px;
    height: auto;
    float: left;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0px 20px 20px 20px;
}

.footer .footer-col h1 {
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: 12px;
    line-height: 17px;
    padding: 20px 0px 5px 0px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.footer .footer-col h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer .footer-col ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer .footer-col ul li {
    font-size: 14px;
    font-family: inherit;
    font-weight: bold;
    padding: 5px 0px 5px 0px;
    cursor: pointer;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
}

.footer .footer-col ul li:hover {
    transition: 0.1s;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
}

.footer .footer-col i,
.footer .footer-col .social-icons {
    font-size: 35px;
}

.footer .social ul li {
    display: inline-block;
    padding-right: 5px !important;
}

.footer .footer-bottom {
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #ddd;
    transform: skewY(5deg);
}

.footer .footer-bottom .footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: inline-flex;
    gap: 15px;
}

.clearfix {
    clear: both;
}

@media only screen and (min-width: 1280px) {
    .footer-container {
        width: 1200px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 1139px) {
    .footer-container .social {
        width: 1000px;
        display: block;
    }

    .social h1 {
        margin: 0px;
    }
}

@media only screen and (max-width: 950px) {
    .footer .footer-col {
        width: 33%;
    }

    .footer .footer-col h1 {
        font-size: 14px;
    }

    .footer .footer-col ul li {
        font-size: 13px;
    }
}

@media only screen and (max-width: 500px) {
    .footer .footer-col {
        width: 50%;
    }

    .footer .footer-col h1 {
        font-size: 14px;
    }

    .footer .footer-col ul li {
        font-size: 13px;
    }
}

@media only screen and (max-width: 340px) {
    .footer .footer-col {
        width: 100%;
    }
}