body {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	position: relative;
	font-family: 'Roboto', sans-serif;
}
* {
	box-sizing: border-box;
}

.main {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.inner-box {
	padding: 40px;
	text-align: center;
}

.basic-btn {
	background: green;
	color: #fff;
	padding: 15px 20px;
	text-transform: uppercase;
	border-radius: 8px;
	cursor: pointer;
}

.basic-btn:hover {
	background: red;
}

.basic-a {
	background: red;
	color: #fff;
	padding: 15px 20px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 8px;
}

.basic-a:hover {
	background: green;
}

.popup-main {
	background: rgb(0,0,0);
	background: linear-gradient(111deg, rgba(0,0,0,0.38699229691876746) 100%, rgba(0,0,0,0.0844712885154062) 100%);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
}

.pop-inner {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	max-width:600px;
	min-height: 200px;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 1rem;
}
.popInner {
	max-height: 500px;
	overflow-y: scroll;
}
.popInner b {
	margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
}
.inner-main {
	background: #fff;
	max-height: 600px;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	padding: 1rem;
	border: 1.5px solid #c4c4c4;
	position: relative;
}

.title {
	text-align: center;
	margin: 0;
	padding-bottom: 15px;
	border-bottom: 2px solid #c4c4c4;
}

.form-title {
	text-align: center;
}

.group-form input[type=text], .group-form input[type=text], .group-form input[type=tel], .group-form textarea {
	width: 100%;
	margin-top: 8px;
	padding: 8px;
	border-radius: 5px;
	border: 1px solid #c1c1c1;
	font-size: 14px;
}

.group-form {
	margin-bottom: 10px;
}

.submit {
	padding: 30px;
	text-align: center;
}

.close-btn {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 35px;
	height: 35px;
	border: 1.5px solid #c4c4c4;
	text-align: center;
	padding: 7px 0 0 0;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	font-weight: 700;
	color: #c4c4c4;
}

