/*
Font Family
=========================== */

/* Typography 
=========================== */
html,
body {
    padding: 0;
    margin: 0;
    overflow-x: hidden !important;
}

body {
    color: #ffffff;
    background: #f5f5f5;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

a {
    outline: 0;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:focus {
    outline: 0;
}

a:hover {
    text-decoration: none;
}

a.link {
    color: #6a6a6a;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
    margin: 0 0 15px 0;
    font-size: 48px;
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    line-height: 52px;
    /* text-transform: uppercase; */
}

h2 {
    font-size: 36px;
    line-height: 48px;
}

h3 {
    font-size: 30px;
    line-height: 36px;
}

h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 30px;
}

h5 {
    font-size: 18px;
    line-height: 24px;
}

h6 {
    font-size: 14px;
    line-height: 18px;
}

p {
    margin-top: 0;
    margin-bottom: 20px;
}

.material-icons-outlined,
.material-icons,
.material-icons-sharp,
.material-icons-round {
    vertical-align: middle;
    font-size: inherit;
}

.section {
    padding: 100px 0;
    border-top: solid 1px #efefef;
}


.btn-warning {
    position: relative;
    background: #ff7620;
    border: 1px solid #ff7620;
    border-radius: 10px 10px 10px 10px;
}

.btn-warning:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
}

.btn-warning:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    opacity: 0;
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.btn-warning:hover:before {
    left: -3px;
    bottom: -3px;
    opacity: 1;
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.btn-warning:hover:after {
    right: -3px;
    top: -3px;
    opacity: 1;
    -webkit-transition: all 0.1s ease-in-out;
    -khtml-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}





.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}