Footer{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px 80px 100px 80px;
    background-color: #101015;
    width: 100%;
    flex-wrap: wrap;
    margin: -30px 0 0 -30px;
    width: calc(100% + 30px);
}

.FooterNavContainer{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 30px 0 0 30px;
}

.FooterNavContainer h4{
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: none;
    font-size: 18px;
    font-weight: 600;
}

.FooterNavContainer ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.FooterNavContainer ul li{
    list-style: none;
    margin-bottom: 10px;
}

.FooterNavContainer ul li a{
    color: #ABABAB;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.FooterContactContainer{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 30px 0 0 30px;
}

.FooterContactContainer h4{
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: none;
    font-size: 18px;
    font-weight: 600;
}

.FooterContactRow{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
}

.FooterContactRow i{
    color: #ffffff;
    font-size: 20px;
    padding: 15px;
    border-radius: 50%;
    margin-right: 18px;
    background-color: #242C33;
}

.FooterContactRow a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

.FooterInfoContainer{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 30%;
    margin: 30px 0 0 30px;
}

.FooterInfoContainer h4{
    text-transform: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.FooterInfoContainer p{
    color: #ABABAB;
    text-align: left;
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
}

.FooterSocialRow{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
    margin-bottom: 50px;
}

.FooterSocialRow a{
    text-decoration: none;
    color: #ffffff;
    padding: 15px 20px 15px 20px;
    background-color: #242C33;
    transition: 0.3s ease-in-out;
}

.FooterSocialRow a:nth-child(1){
    margin-right: 20px;
}

.FooterSocialRow a:hover{
    background-color: #E74A3B;
    transform: scale(1.2);
}

.FooterSocialRow i{
    font-size: 18px;
}

.FooterCredit{
    position: absolute;
    bottom: 0%;
    left: 0%;
    padding: 20px 30px 20px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #242C33;
}

.FooterCredit p{
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
}

.FooterCredit p:nth-child(2){
    margin-left: 20px;
}

.FooterCredit a{
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.FooterCredit a:hover{
    color: #E74A3B;
}

@media screen and (max-width: 1095px){
    .FooterInfoContainer{
        width: 40%;
    }
}

@media screen and (max-width: 1086px){
    .FooterInfoContainer{
        width: 100%;
    }
}

@media screen and (max-width: 751px){
    .FooterCredit{
        flex-direction: column;
        text-align: center;
    }
}