/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;

    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
    font-size: 100%;
}
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;
}
.wrap{
    width: 762px;
    max-width: 100%;

    margin: 0 auto;
}




/* Top */
.top{
    width: 100%;

    float: left;
}

.top h2{
    width: 100%;
    text-align: center;

    margin-top: 50px;

    float: left;
}
.top img{
    width: 200px;
    max-width: 100%;
    height: auto;
}
.top h1{
    width: 100%;
    
    color: #00101A;
    font-size: 50px;
    font-size: 3.125rem;
    line-height: 72px;
    line-height: 4.5rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    text-align: center;

    margin-top: 60px;
    
    float: left;
}
.top h1 strong{
    color: #1CCFA5;
}
.top .box-description{
    width: 100%;
    margin-top: 40px;
    float: left;
}
.top .box-description p{
    width: 100%;
    
    color: #00101A;
    font-size: 16px;
    line-height: 32px;
    line-height: 2rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    text-align: center;
    
    float: left;
}




/* Content */
.content{
    width: 100%;
    margin-top: 40px;
    float: left;
}


/* Footer */
.footer{
    width: 100%;
    text-align: center;

    margin: 30px 0;
    float: left;
}
.button{
    width: auto;
    height: 50px;

    color: #ffffff;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    text-align: center;
    text-decoration: none;

    background-color: #1CCFA5;

    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;

    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    border-radius: 32px; 
    
    display: inline-block;
    margin: 5px 6px;

    padding: 13px 35px;
}
.button:hover{
    transform: scale(1.05);
}


@media screen and (max-width: 480px) {
    body{
        padding: 0 30px;
    }
    .top h2{
        margin: 30px 0;
    }
    .top h1{
        font-size: 38px;
        font-size: 2.375rem;
        line-height: 48px;
        line-height: 3rem;
        margin-top: 30px;
    }
  }