/* 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: #40BCED;
}

a:hover {
    color: #888;
}

body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
span,
ul,
ol,
li,
a,
button,
input {
    font-family: 'OpenSans Regular', sans-serif !important;
}

.container {
    max-width: 980px
}

.heading-wrap {
    margin-top: 80px;
}

.heading-wrap h2 {
    font-size: 42px;
    color: #40BCED;
}

.heading-wrap p {
    font-size: 24px;
    color: #888;
}

.btn-orange {
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 8px;
    background: #40BCED;
    color: #fff;
    font-family: 'Roboto Medium';
}

.btn-orange:hover {
    background: #E9435B;
    color: #fff;
}

#footer {
    background: #40BCED;
    padding: 30px 0;
    margin-top: 80px;
}

ul {
    list-style-type: none;
}

ul li {
    display: inline-block;
}

ul.links {
    margin-bottom: 0;
}

.links a {
    margin: 0 10px;
    color: #fff;
}

p {
    margin-bottom: 0;
}