@charset "UTF-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

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


body{
    font-family: seravek-web, sans-serif;
}

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

.text-right{
    text-align: right;
}

.fw-800{
    font-weight: 800;
}

.fw-600{
    font-weight: 600;
}

.fw-400{
    font-weight: 400;
}

.c-red{
    color: #E31914;
}

.c-blue{
    color: #040F33;
}

.m-20-auto{
    margin: 20px auto;
}

.m-80-0{
    margin: 80px 0;
}

.m-80-0-0{
    margin: 80px 0 0;
}

.m-120-0-80{
    margin: 120px 0 80px;
}

.f-12{
    font-size: 12px;
    line-height: 15px;
}

.f-15{
    font-size: 15px;
    line-height: 23px;
}

.max-w-1280{
    max-width: 1280px;
}

article{
    padding: 15px;
}

.header{
    padding: 30px 10%;
}

@media screen and (max-width: 768px){
    .header{
        padding: 30px 5%;
    }   
}

@media screen and (max-width: 568px){
    .header .logo{
        max-width: 180px;
    }
}

.hero{
    background-image: url('../img/hero-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 20% 10%;
}

@media screen and (max-width: 768px){
    .hero{
        padding: 100px 30% 100px 5%;
    }
}

@media screen and (max-width: 568px){
    .hero{
        background-position: right -150px center;
    }
}

.hero h1{
    font-size: 60px;
    line-height: 74px;
}

@media screen and (max-width: 768px){
    .hero h1{
        font-size: 30px;
        line-height: 42px;
    }
}

.info h2{
    font-size: 36px;
    line-height: 44px;
}

.faq{
    background-image: url('../img/separator-question-mark.png');
    background-position: left top;
    background-color: #F3F3F3;
    background-repeat: no-repeat;
}

.faq h2{
    font-size: 36px;
    line-height: 44px;
}

.cards{
    max-width: 1380px;
    margin: 20px auto;
    text-align: center;
}

.card{
    margin: 4%;
    width: 346px;
    height: 451px;
    cursor: pointer;
    display: inline-block;
}

@media screen and (max-width: 768px){
    .card{
        width: 247px;
        height: 348px;
    }
}

/*.card-inner{
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.card-front, .card-back{
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.card-back{
    transform: rotateY(180deg);
}

.card.toggle .card-inner{
    transform: rotateY(180deg);
}

.card img{
    position: absolute;
}*/

.footer ul{
    margin: 40px auto;
    padding: 0;
    list-style: none;
    text-align: center;
}

.footer li{
    display: inline-block;
}

.footer li a{
    margin: 5px;
    padding: 5px;
    color: #040F33;
    font-size: 12px;
    line-height: 14px;
    text-decoration: none;
}