* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
    min-height: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    word-wrap: break-word;
    color: #393737;
    font-family: 'Montserrat';
    font-size: 13px;
    line-height: 1.5;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.text-center {
    text-align: center !important;
}

.fullSection {
    min-height: 100vh;
    background: url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
}

.wraper {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
    padding: 0 15px;
}

.logo {
    display: inline-block;
    margin-bottom: 2rem;
}

.logo img {
    display: inline-block;
    max-width: 100%;
}

.wraper h2 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    color: #ff4e25;
}

.wraper h5 {
    font-size: 1rem;
    font-weight: 500;
}

.wraper ul {
    list-style: none;
    margin-top: 2rem;
}

.wraper ul li:not(:last-child) {
    margin-bottom: 10px;
}

.wraper ul li a {
    display: block;
    background: #cd3b23;
    ;
    color: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #ff4e25;
}