@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

:focus {
	outline: 0
}

img {
	border: none;
	display: block
}

ol,
ul {
	list-style: none
}

iframe {
	position: absolute;
	height: 0;
	width: 0;
	top: 0;
	left: 0;
	border: none;
	overflow: hidden
}

a {
	text-decoration: none;
	cursor: pointer !important
}
html,
body,
.wrapper {
	height: 100%;
}

html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	position: relative;
    scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: #414f57;
	line-height: 1.2;
	font-size: 2rem;
	background-color: #170f24;
	background-image: linear-gradient(to top, rgb(0 0 0), rgba(23, 102, 220, 0.4)), url(../images/second_page_bg.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: top center;
}
.wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 500px;
	margin: 0 auto;
	padding: 0 15px;
}
.center {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 10px
}

.header-section {
	padding: 10px 0
}

.header-logo {
	display: block;
	width: 80%;
	max-width: 250px;
	margin: 0 auto
}

.content-section {
	text-align: center
}

.content-img-block {
	margin-bottom: 20px;
	margin-top: 50px;
	display: block;
}

.logo {
	margin: 30px auto 0;
	max-width: 80px;
}

.content-img {
	display: block;
	width: 50%;
	max-width: 200px;
	margin: 0 auto;
	border: 2px solid #000;
	border-radius: 6px;
	box-shadow: 2px 6px #ff4166, -6px -3px #00fdff;
}

.content-title {
	font-size: 3rem;
	margin-bottom: 5px;
	margin-top: 15px;
	color: #00fdff;
	font-weight: 600;
	line-height: 1.3;
	text-transform: capitalize;
}

.content-subtitle {
	font-size: 14px;
	margin-bottom: 15px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #fff;
}

.content-text {
	margin-bottom: 35px;
	letter-spacing: .1rem;
	color: #fff;
}
.btns-wrap,
.btn-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}
.btns-wrap {
	justify-content: space-between;
}
.btns-wrap .btn {
	width: calc(50% - 5px);
}
.btn {
	font-size: 21px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 55px;
	width: 100%;
	padding: 0;
	background: #4CFFFD;
	color: #121111;
	text-align: center;
	border-radius: 6px;
	box-shadow: 0px 5px 29px 0px #03f8a9;
}

.btn:hover {
	background: #f8032f;
	color: #fff;
	box-shadow: 0px 6px 24px -6px #69c9d0;
}
.btn.btn-no {
	box-shadow: none;
	background-color: #fff;
}
.step {
	display: none;
}
.step.current {
	display: block;
}

.choice-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.choice-list li {
	font-family: 'Montserrat', sans-serif;
	width: 48%;
	height: 55px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	background: #fff;
	color: #4f4956;
	box-shadow: 0px 5px 29px 0px #03f8a9;
	border-radius: 6px;
	margin-bottom: 15px;
	padding: 0 10px;
	cursor: pointer;
	text-shadow: none;
}
.choice-list li {
	text-align: center;
	line-height: 1.2;
}
.choice-list li.active {
	background: #f8032f;
	color: #fff;
	box-shadow: 0px 6px 24px -6px #69c9d0;
}
.choice-list li.full-width {
	width: 100%;
}

.style_alt .center {
	width: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.style_alt .step.current {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-bottom: 20px;
}
@media (max-width: 600px) {
	.style_alt .choice-list li {
		height: 50px;
        font-size: 18px;
	}
	body.style_alt {
		font-size: 1.7rem;
	}
	.style_alt .content-title {
		font-size: 2.7rem;
	}
}

/* Responsive with push */
.isMobile.has-push,
.isMobile.has-push .wrapper {
    height: auto;
}
.isMobile.has-push.style_alt .content-title {
    font-size: 1.8rem;
}
.isMobile.has-push .wrapper {
    padding-bottom: 90px;
}