/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

/*======================
   02. Basic css
========================*/
*{
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}
@media only screen and (max-width: 767px) {
    #btn1
    {
        font-size: 16px;
        padding: 8px 10px;
        width: 100%;
        height: 35px;
        border: solid 1px #3486e5;
    }
}

body {
	line-height: 1.27;
	font-family: 'Open Sans', sans-serif;
	background-color: #fff;
	color: #000;
	font-weight: 400;
	font-size: 2.2rem;
}
a, a:visited, a:hover, a:active {
    text-decoration: none;
    /*color: inherit;*/
}
ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}
.container{
	margin-left: auto;
	margin-right: auto;
	padding: 1.5rem 0;
}
strong{
	font-weight: 600;
}
.show_hide{
    max-width: 350px;
    margin: auto;
    height: 45px;
    border-radius: 2px;
    border: solid 2px #3486e5;
    color: #3486e5;
    font-family: Roboto;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    display: block;
    font-size: 25px;
    padding: 10px 15px;
}

.top_btn{
    background-color: #FFFFFF;
    display: block;
    margin: auto;
    text-decoration: none;
}
}
.bottom_btn{
	background-color: #FFFFFF;
	display: block;
    margin: auto;
}

.step_item:first-child{
	text-align: center;
}
.step_item{
	display: none;
}
.step_item.active{
	display: block;
}
.step_item p{
	padding-top: 2.4rem;
}
.top_bar{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 1.2rem 0;
	-webkit-column-gap: 0.8rem;
	   -moz-column-gap: 0.8rem;
	        column-gap: 0.8rem;
	font-size: 2.9rem;
	font-weight: 600;
}
.circle {
	font-size: 2.3rem;
	color: #888;
	font-weight: 600;
	background: #ececec;
	border-radius: .3rem;
	padding: .8rem 1.8rem;
}
.circle.current{
	background-color: #088F8F;
	color: #fff;
}

footer{
	text-align: center;
	font-weight: 600;
	margin-top: 45rem;
	padding-bottom: 1.5rem;
}
footer p{
	font-size: 1rem;
	padding: 1rem 0;
}
footer ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	line-height: 1;
	padding-top: 1.5rem;
}
footer ul li:not(:last-child){
	border-right: 0.2rem solid #000;
	margin-right: 0.8rem;
	padding-right: 1rem;
}
footer ul li a{
	display: inline-block;
	line-height: 1;
    text-decoration: none;
}



/*responsive css*/
@media (min-width: 768px) { 
	.container{
		max-width: 600px;
	}
}
@media (max-width: 767.98px) { 
	.container{
		padding-left: 2rem;
		padding-right: 2rem;
	}
}
@media (max-width: 575.98px) { 
	html{
		font-size: 2.4vw;
	}
	footer ul{
		font-size: 1.5rem;
	}
}