* {
    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: #323232;
    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;
	border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}
.logo img {
	display: inline-block;
    max-width: 100%;
}

.wraper h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #020202;
}
.wraper h5 {
    font-size: 1rem;
    font-weight: normal;
}
.wraper ul {
    list-style: none;
    margin-top: 2rem;
}
.wraper ul li:not(:last-child){
    margin-right: 10px;
}
.wraper ul li a {
	display: block;
	background: #cb2021;
	color: #fff;
	padding: 10px 20px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
}


footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #dc2121;
}

@media only screen and (max-width: 414px) {
	.wraper h2 {
		font-size: 1.2rem;
	}
	.wraper ul li a {
		padding: 10px 15px;
	}
  }