/* Removing basic margin & padding */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

a,
img,
.fa {
    transition: .3s all;
}

a {
    color: #d83f36;
}

a:hover {
    color: #4f4f4f;
}

.container {
    max-width: 980px
}

.heading-wrap {
    margin-top: 80px;
}

.heading-wrap h2 {
    font-size: 42px;
}

.heading-wrap p {
    font-size: 24px;
}

.btn-orange {
    background: #ac3730;
    color: #fff;
    text-transform: uppercase;
    border-radius: 0;
    padding: 4px 15px;
    padding-top: 4px;
    font-size: 18px;
    line-height: 20px;
    padding-top: 6px;
    position: relative;
}

.btn-orange::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -25px;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #ac3730;
    transition: .3s all ease;
}

.btn-orange:hover::after {
    border-left: 16px solid #4f4f4f;
    right: -16px;
}

.btn-orange:hover {
    background: #4f4f4f;
    color: #fff;
}

.icon-wrap {
    margin-bottom: 150px;
}

.icon-wrap img {
    width: 210px;
}

.user-footer-container {
    background: #dedfe0;
    padding: 50px 0 30px 0;
}

.user-footer-container .footer-link,
.user-footer-container .social-links {
    margin-bottom: 0;
}

.user-footer-container .footer-link li {
    font-family: 'BebasNeue';
    float: left;
    color: #4f4f4f;
    font-size: 15px;
}

.user-footer-container .footer-link li a {
    color: #d83f36;
    margin-left: 7px;
    padding-left: 7px;
    text-decoration: none;
    position: relative;
    font-size: 15px;
    border-left: 2px solid #ccc;
    display: block;
    line-height: 13px;
    margin-top: 4px;
}

.user-footer-container .footer-link li a:hover {
    color: #4f4f4f;
}

.user-social-wrapper {
    position: relative;
}

.user-social-wrapper .social-links {
    margin-top: -15px;
}

.user-social-wrapper .social-links li {
    float: left;
    margin: 0 5px;
}

.user-social-wrapper .social-links img {
    max-height: 45px;
}

.user-social-wrapper .social-links img:hover {
    opacity: .8;
}

.heading-wrap a {
    font-size: 18px;
}