*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Montserrat;
}
a{
	text-decoration: none !important;
}
ul{
	list-style: none !important;
}
:root{
	--theme-orange: #E74C3C;;
}
@media(min-width:768px){
	.container{
		width:750px
	}
}
@media(min-width:992px){
	.container{
		width:970px
	}
}
@media(min-width:1200px){
	.container{
		width:1170px
	}
}
.container-fluid{
	padding-right:15px;
	padding-left:15px;
	margin-right:auto;
	margin-left:auto
}
h2.heading{
	color: var(--theme-orange);
	font-weight: 700;
	font-size: 40px;
	line-height: 40px;
}
@media (max-width: 767px) {
	h2.heading{
		font-size: 21px;
		line-height: 30px;
	}
}
@media (min-width: 768px) and (max-width: 991px){
	h2.heading{
		font-size: 32px;
		line-height: 35px;
	}
}
@media (min-width: 992px) and (max-width: 1600px) {
	h2.heading{
		font-size: 42px;
		line-height: 45px;
	}	
}

::selection{
	background: var(--theme-orange);
	color: #fff;
}

/*fixed icon*/
.fixed-icon{
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 88;
	width: 145px;
	height: 130px;
	background: var(--theme-orange);
	border-radius: 0px 12px 12px 0px;
}
.fixed-icon a{
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*header*/
#header{
	background: url('/webp/v3/dmca-bg.webp');
	height: 425px;
	display: flex;
	align-items: center;
}
#header h3{
	font-size: 40px;
	line-height: 40px;
	font-weight: 700;
}
@media (max-width: 767px) {
	#header h3{
		font-size: 30px;
		line-height: 43px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#header h3{
		font-size: 30px;
		line-height: 50px;
	}
	#header{
		height: 300px;
	}
}
@media (min-width: 992px) and (max-width: 1400px) {
	#header h3{
		font-size: 48px;
		line-height: 70px;
	}
	#header{
		height: 400px;
	}
}


/*main*/
.main {
	margin-bottom: 130px;
}
.main .step{
	background: #FFFFFF;
	border: 1px solid #D0D0D0;
	box-shadow: 5px 10px 42px rgba(0, 0, 0, 0.12);
	border-radius: 20px;
	overflow: hidden;
	margin-top: 130px;
}
.main .step .heading{
	padding: 25px 0;
	background: var(--theme-orange);
	text-align: center;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 31px;
	line-height: 42px;
}
.main .step .body{
	padding: 30px;
	width: 100%;
	height: 100%;
}
@media (max-width: 767px) {
	.main {
		margin-bottom: 40px;
	}
	.main .step{
		margin-top: 40px;
	}
	.main .step .heading{
		padding: 10px;
		font-size: 32px;
	}
	.main .step .body{
		padding: 20px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.main .step{
		margin-top: 70px;
	}
	.main .step .heading{
		padding: 25px 0;
		font-size: 36px;
	}
	.main {
		margin-bottom: 70px;
	}
}