@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&amp;display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&amp;display=swap");

* {
	box-sizing: border-box;
}

.popup {
	cursor: pointer;
}

.popup-fixed {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999;
}

.popup-section {
	width: 100%;
	max-width: 888px;
	margin: auto;
	border-radius: 4px;
	text-align: center;
	position: relative;
}

.popup-section::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -35px;
	right: 35px;
	background-color: #15131a;
	border-radius: 12px;
}

.popup-section .cross-box {
	position: absolute;
	top: 25px;
	right: 0;
	background: none;
	border: 0;
	padding: 0;
}

.popup-section .popup-body {
	position: relative;
	background-color: #ffffff;
	border-radius: 8px;
	padding: 15px;
}

.popup-section .popup-body img {
	max-width: 100%;
}

.popup-section h2 {
	font: 800 36px 'Poppins';
	color: #ffffff;
	position: relative;
	text-transform: uppercase;
	margin: 0;
	padding: 20px 0 10px;
	display: inline-block;
}

.popup-section h2::before,
.popup-section h2::after {
	content: '';
	width: 225px;
	height: 3px;
	position: absolute;
	bottom: 35px;
}

.popup-section h2::before {
	background-image: linear-gradient(to right, #15131a , #bdbcbe 70%);
	left: -250px;
}

.popup-section h2::after {
	background-image: linear-gradient(to right, #bdbcbe , #15131a 90%);
	right: -250px;
}

.popup-section h3 {
	font: italic 600 27px/28px 'Poppins';
	text-transform: uppercase;
	color: #333333;
	margin: 10px 0;
}

.popup-section h3 strong {
	font-size: 36px;
	font-weight: 600;
}

.popup-section h3 span {
	font: italic 600 30px 'Poppins';
	color: #f64d1b;
	display: block;
}

.popup-section label {
	font: italic 600 20px 'Poppins';
	color: #333333;
	display: inline-block;
	position: relative;
}

.popup-section label::before,
.popup-section label::after {
	content: '';
	width: 100px;
	height: 3px;
	position: absolute;
	bottom: 13px;
}

.popup-section label::before {
	background-image: linear-gradient(to right, #ffffff , #519d08 70%);
	left: -110px;
}

.popup-section label::after {
	background-image: linear-gradient(to right, #519d08 , #ffffff 70%);
	right: -110px;
}

.popup-section h4 {
	font: italic 800 70px 'Roboto';
	color: #f64d1b;
	margin: 0;
}

.popup-section h4 span {
	font-size: 32px;
}

.popup-section .btn-section {
	margin-top: 15px;
}

.popup-section .btn-section .btn-orange {
	font: 500 24px 'Poppins';
	text-transform: uppercase;
	background-color: #f4471a;
	background: linear-gradient(#fd691e, #f4471a);
	padding: 12px 60px;
	border-radius: 4px;
	display: inline-block;
	text-decoration: none;
	color: #ffffff;
}

.popup-section .btn-section .btn-orange:hover,
.popup-section .btn-section .btn-orange:focus,
.popup-section .btn-section .btn-orange:active {
	background-color: #f4471a;
	background: linear-gradient(#f4471a, #fd691e);
}
.popup-section .btn-section .btn-green
{
	font: 500 24px 'Poppins';
	text-transform: uppercase;
	background-color: #11a211;
	padding: 12px 60px;
	border-radius: 4px;
	display: inline-block;
	text-decoration: none;
	color: #ffffff;
}
.popup-section .btn-section .btn-green:hover,
.popup-section .btn-section .btn-green:focus,
.popup-section .btn-section .btn-green:active {
	background-color: #11c611;
}

.popup-section .btn-section p {
	margin: 10px 0 0;
}

.popup-section .btn-section .btn-link {
	font: 400 13px 'Poppins';
	text-decoration: underline;
	color: #1441c1;
	letter-spacing: 0.5px;
}

@media screen and (max-width: 767px) {
	.popup-section h2::before,
	.popup-section h2::after {
		display: none;
	}
	.popup-section h2 {
		font-size: 26px;
	}
	.popup-section h3 {
		font-size: 18px;
		line-height: 21px;
	}
	.popup-section h3 strong {
		font-size: 23px;
	}
	.popup-section h4 {
		font-size: 40px;
	}
}

.btn-orange-gra {
    background-color: #f4471a;
    background: linear-gradient(#fd691e, #f4471a);
    color: #fff !important;
    text-decoration:none !important;
	font: 700 20px/20px 'Roboto' !important;
	padding: 22px 26px;
	display: inline-block;
	border-radius: 4px;
	transition: all 0.2s;
	text-transform: uppercase;
}

.btn-orange-gra:hover, 
.btn-orange-gra:focus, 
.btn-orange-gra:active {
    background-color: #fd691e;
    background: linear-gradient(#f4471a, #fd691e);
}