﻿@charset "UTF-8";
* {
	position: relative;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

*::after, *::before {
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  -webkit-box-sizing: inherit;
}

html, body {
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
  height: 100%;
}

html {
  font-size: 62.5%;
  background: #fff;
  color: #000;
}


img {
	width: 100%;
	height: auto;
	float: left;
}

div {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

ul {
	list-style: none;
}

.full_width {
	display: block;
	width: 100%;
	float: left;
}

.header {
    padding: 20px 0;
    background: #2196f3;
}

.header .logo a {
    font-size: 34px;
    color: #000;
}

.header .logo a:hover {
    text-decoration: none;
}

.header .logo a span {
    font-weight: 800;
}

.header .buttons_wrap {
    margin-top: 2%;
}

.header .top_rt a {
    background: #2196f3;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.header .top_rt a:hover {
    text-decoration: none;
    background: #fff;
    color: #2196f3;
}

.body_wrap {
    background-color: #fff;
    background-size: cover;
    background-position: top;
    padding-bottom: 10%;
}

.body_wrap h2 {
    font-size: 36px;
    color: #000;
    line-height: 1.5;
    margin: 40px 0 20px;
}

.body_wrap h2 span {
    color: #2196f3;
}

.footer {
    padding: 20px 0;
}

.footer, .footer a {
    font-size: 14px;
    color: #979595;
}

#popup {
    text-align: left;
}

#popup h2 {
    width: 100%;
    font-size: 16px;
    float: left;
    color: #fff;
    margin-bottom: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#popup p {
    font-size: 12px;
    margin-bottom: 20px;
}

#popup .modal-header {
    background: #2196f3;
    padding: 20px 0 0;
    text-align: center;
}

#popup button.close {
    position: absolute;
    top: -4px;
    right: 5px;
    color: #fff;
    font-size: 32px;
}

@media screen and (max-width: 767px) {
    #popup h2 {
        font-size: 14px;
    }

    #popup p {
        font-size: 10px;
    }

    .container {
        max-width: 650px;
    }

    .body_wrap h2 {
        font-size: 30px;
    }

    .header .buttons_wrap {
        margin-top: 5%;
    }

    .header .top_rt a {
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {
    ￼
    .footer, .footer a {
        font-size: 12px;
    }

    .body_wrap h2 {
        font-size: 5.3vw;
    }

    .header .buttons_wrap {
        width: 100%;
    }
    .header .buttons_wrap a {
        display: block;
    }

}

