/*====================
** Variable Scss
====================*/


/*basic color*/


/*heading color*/

@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");

/*====================
** Mixins Scss
====================*/


/*---------------------------
** Global Scss
---------------------------*/

.slicknav_menu {
	display: none;
}

.section-title {
	text-align: center;
	margin-bottom: 65px;
}

.section-title h2 {
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 0;
}

.section-title h2 span {
	color: #25aae1;
}

.boxed-btn {
	display: inline-block;
	padding: 15px 40px;
	border-radius: 25px;
	color: #fff;
	background-color: #25aae1;
	text-transform: uppercase;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
	font-weight: 500;
}

.boxed-btn:hover {
	background-color: #303443;
	color: #fff;
}

.boxed-btn.blank {
	background-color: transparent;
	color: #303443;
	padding: 13px 38px;
	border: 2px solid #c1c1c1;
}

.boxed-btn.blank:hover {
	background-color: #25aae1;
	color: #fff;
	border-color: #25aae1;
}

textarea,
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=search],
input[type=url] {
	border: 2px solid #e9e9e9;
	padding: 13px 20px;
	display: block;
	width: 100%;
	margin-bottom: 10px;
	font-size: 12px;
}

textarea::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #4b4e59;
}

textarea:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=url]:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #4b4e59;
}

textarea::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=url]::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #4b4e59;
}

textarea:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #4b4e59;
}

input[type=submit],
button[type=submit] {
	padding: 13px 20px;
	display: block;
	width: 100%;
	margin-bottom: 10px;
	border: none;
	border-radius: 25px;
	background-color: #25aae1;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

input[type=submit]:hover,
button[type=submit]:hover {
	background-color: #303443;
}

.back-to-top {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #25aae1;
	color: #fff;
	font-size: 20px;
	border: 2px solid #25aae1;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
	border-radius: 50%;
	cursor: pointer;
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 9999;
}

.back-to-top:hover {
	background-color: transparent;
	color: #25aae1;
	border: 2px solid #25aae1;
}


/*----------------------------
    Preloader
----------------------------*/

.preloader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 999999999999;
}

.preloader .preloader-inner {
	position: relative;
}

.preloader .preloader-inner .coin {
	position: absolute;
	top: 30px;
	left: 15%;
	-webkit-animation-duration: 3s;
	-moz-animation-duration: 3s;
	-o-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: upDown;
	-moz-animation-name: upDown;
	-o-animation-name: upDown;
	animation-name: upDown;
	-webkit-animation-direction: linear;
	-moz-animation-direction: linear;
	-o-animation-direction: linear;
	animation-direction: linear;
	-webkit-animation-delay: -3s;
	animation-delay: -3s;
}

@-webkit-keyframes upDown {
	0% {
		top: -50px;
	}
	100% {
		top: 20px;
	}
}

@-moz-keyframes upDown {
	0% {
		top: -50px;
	}
	100% {
		top: 20px;
	}
}

@-o-keyframes upDown {
	0% {
		top: -50px;
	}
	100% {
		top: 20px;
	}
}

@keyframes upDown {
	0% {
		top: -50px;
	}
	100% {
		top: 20px;
	}
}


/*====================
** Normalize Scss
====================*/

html {
	font-family: "Poppins", sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	/*  base font size  15px= 1em*/
	margin: 0;
	color: #4b4f5c;
	overflow-x: hidden;
}

h1 {
	font-size: 56px;
	line-height: 1.0833333333333333;
}

h2 {
	font-size: 42px;
	line-height: 1.4444444444444444;
}

h3 {
	font-size: 31px;
	line-height: 1.0833333333333333;
}

h4 {
	font-size: 28px;
	line-height: 1.2380952380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #303443;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
}

p {
	font-size: 14px;
	color: #303443;
	line-height: 1.625;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

a {
	color: #303443;
	text-decoration: none;
}

a,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	outline: none;
}

a i {
	padding: 0 2px;
}

img {
	max-width: 100%;
}


/*input and button type focus outline disable*/

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #ddd;
}


/**
 * 5.0 - Alignments
 */

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.75em;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}


/*------------------
   Navbar
-------------------*/

.navbar-area.nav-fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #fff;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	z-index: 999999999;
}

.navbar-area .logo {
	padding-top: 25px;
	display: block;
}

.navbar-area ul {
	text-align: right;
}

.navbar-area ul li {
	text-transform: uppercase;
	display: inline-block;
	padding: 30px 20px;
	font-weight: 500;
}

.navbar-area ul li:last-child {
	padding-right: 0;
}

.navbar-area ul li.active a {
	color: #25aae1;
}

.navbar-area ul li.active a:after {
	visibility: visible;
	opacity: 1;
}

.navbar-area ul li.active a:before {
	visibility: visible;
	opacity: 1;
}

.navbar-area ul li:hover a {
	color: #25aae1;
}

.navbar-area ul li:hover a:after {
	visibility: visible;
	opacity: 1;
}

.navbar-area ul li:hover a:before {
	visibility: visible;
	opacity: 1;
}

.navbar-area ul li a {
	color: #4b4f5c;
	display: block;
	position: relative;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.navbar-area ul li a:after {
	position: absolute;
	bottom: -30px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #25aae1;
	visibility: hidden;
	opacity: 0;
	content: '';
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.navbar-area ul li a:before {
	position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f0d8';
	bottom: -36px;
	color: #25aae1;
	text-align: center;
	left: 50%;
	-ms-transform: translateX(-50%);
	/* IE 9 */
	-webkit-transform: translateX(-50%);
	/* Chrome, Safari, Opera */
	transform: translateX(-50%);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}


/*------------------
    Support Bar
-------------------*/

.support-bar {
	background-color: #303443;
}

.support-bar .support-bar-left li {
	display: inline-block;
	padding: 10px;
}

.support-bar .support-bar-left li:first-child {
	padding-left: 0;
}

.support-bar .support-bar-left li a {
	color: #fafbfb;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.support-bar .support-bar-left li a:hover {
	color: #25aae1;
}

.support-bar .support-bar-right {
	text-align: right;
}

.support-bar .support-bar-right .select-arrow {
	position: relative;
	display: inline-block;
	margin-right: 24px;
}

.support-bar .support-bar-right .select-arrow:after {
	position: absolute;
	right: 0;
	top: 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f0d7';
	color: #fafbfb;
}

.support-bar .support-bar-right .select-arrow select {
	border: none;
	background-color: transparent;
	color: #fafbfb;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-right: 20px;
}

.support-bar .support-bar-right .select-arrow select option {
	color: #000;
	border: none;
}

.support-bar .support-bar-right .account {
	display: inline-block;
	padding: 5px 0;
}

.support-bar .support-bar-right .account .icon {
	color: #fff;
	display: inline-block;
	text-align: center;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background-color: #25aae1;
	border-radius: 50%;
	margin-right: 10px;
}

.support-bar .support-bar-right .account a {
	color: #fafbfb;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.support-bar .support-bar-right .account a:hover {
	color: #25aae1;
}


/*------------------
    Header
-------------------*/

.header-area {
	position: relative;
	z-index: 1;
	padding: 190px 0 215px 0;
	background-size: cover;
	background-position: center;
}

.header-area.header-area-bg {
	background-image: url(../img/bg/header-bg.jpg);
}

.header-area:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: #000;
	opacity: 0;
	z-index: -1;
}

.header-area.slider {
	padding: 0 0 0 0;
}

.header-area.slider .single-header-slide-item {
	padding: 190px 0 215px 0;
}

.header-area.slider .single-header-slide-item.header-area-bg {
	background-image: url(../img/bg/header-bg.jpg);
	background-size: cover;
	background-position: center;
}

.header-area .single-header-slide-item h1 {
	margin-bottom: 40px;
	display: block;
	font-weight: 700;
}

.header-area .single-header-slide-item .header-btn-group {
	margin-top: 37px;
}

.header-area .single-header-slide-item .header-btn-group .boxed-btn {
	margin-right: 15px;
}

.header-area.slider .header-slider-carousel .owl-nav div {
	position: absolute;
	left: 20px;
	top: 50%;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background-color: #25aae1;
	text-align: center;
	font-size: 20px;
	border-radius: 50%;
	color: #fff;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.header-area.slider .header-slider-carousel .owl-nav:focus {
	outline: none;
}

.header-area.slider .header-slider-carousel .owl-nav:hover {
	background-color: #fff;
	color: #25aae1;
}

.header-area.slider .header-slider-carousel .owl-nav .owl-next {
	left: auto;
	right: 20px;
}

.header-circle-magic {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100% !important;
}

.header-circle-magic canvas {
	width: 100% !important;
	height: 100% !important;
}


/*------------------
   Why Choose Us
-------------------*/

.why-choose-us {
	padding-top: 110px;
	padding-bottom: 107px;
}

.why-choose-us .single-why-choose-us-box {
	text-align: center;
}

.why-choose-us .single-why-choose-us-box .icon {
	margin-bottom: 25px;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.why-choose-us .single-why-choose-us-box .icon i {
	color: #25aae1;
	font-size: 50px;
}

.why-choose-us .single-why-choose-us-box .icon svg {
	fill: #25aae1;
}

.why-choose-us .single-why-choose-us-box .content h3 {
	margin-bottom: 18px;
}

.why-choose-us .single-why-choose-us-box:hover .icon {
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}


/*------------------
   How It Work
-------------------*/

.how-it-work {
	position: relative;
	padding-top: 110px;
	padding-bottom: 120px;
	z-index: 1;
}

.how-it-work.how-it-work-bg {
	background-image: url(../img/bg/how-it-work-bg.jpg);
	background-position: center;
	background-size: cover;
}

.how-it-work:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #25aae1;
	opacity: .60;
	content: '';
	z-index: -1;
}

.how-it-work .section-title h2 {
	color: #000000;
}

.how-it-work .single-how-it-work-box {
	text-align: center;
	border: 2px solid rgba(255, 255, 255, 0.3);
	padding: 50px 30px 40px 30px;
}

.how-it-work .single-how-it-work-box .icon {
	display: inline-block;
	position: relative;
	background: #25aae1;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	margin-bottom: 10px;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.how-it-work .single-how-it-work-box .icon i {
	color: #fff;
	font-size: 30px;
}

.how-it-work .single-how-it-work-box .icon svg {
	fill: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	-ms-transform: translate(-50%, -50%);
	/* IE 9 */
	-webkit-transform: translate(-50%, -50%);
	/* Chrome, Safari, Opera */
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.how-it-work .single-how-it-work-box h4 {
	color: #fff;
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 0;
}

.how-it-work .single-how-it-work-box:hover .icon {
	background-color: #fff;
}

.how-it-work .single-how-it-work-box:hover .icon svg {
	fill: #25aae1;
}


/*---------------------------
** Mobile Recharge
---------------------------*/

.mobile-recharge-area {
	padding-top: 110px;
	padding-bottom: 120px;
}

.mobile-recharge-area .recharge-right-box {
	-webkit-box-shadow: 0.968px 3.881px 17px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0.968px 3.881px 17px rgba(0, 0, 0, 0.1);
	box-shadow: 0.968px 3.881px 17px rgba(0, 0, 0, 0.1);
	padding: 47px 40px 40px 40px;
}

.mobile-recharge-area .recharge-right-box h3 {
	margin-top: 0;
	margin-bottom: 30px;
}

.mobile-recharge-area .recharge-right-box .single-promo-box {
	border: 2px solid #dbdfe4;
	padding: 33px 40px 27px 40px;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}

.mobile-recharge-area .recharge-right-box .single-promo-box h4 {
	font-size: 20px;
	margin-top: 0;
	font-weight: 500;
	margin-bottom: 15px;
	color: #4b4e59;
}

.mobile-recharge-area .recharge-right-box .single-promo-box:last-child {
	margin-bottom: 0;
}

.mobile-recharge-area .recharge-right-box .single-promo-box .icon {
	position: absolute;
	right: -30px;
	top: -30px;
	width: 80px;
	height: 60px;
	line-height: 40px;
	background-color: #25aae1;
	color: #fff;
	text-align: center;
	-ms-transform: rotate(42deg);
	/* IE 9 */
	-webkit-transform: rotate(42deg);
	/* Chrome, Safari, Opera */
	transform: rotate(42deg);
}

.mobile-recharge-area .recharge-right-box .single-promo-box .icon i {
	-ms-transform: rotate(-42deg);
	/* IE 9 */
	-webkit-transform: rotate(-42deg);
	/* Chrome, Safari, Opera */
	transform: rotate(-42deg);
	position: absolute;
	right: 25px;
	bottom: 7px;
}

.mobile-recharge-area .recharge-left-form {
	-webkit-box-shadow: 0.968px 3.881px 17px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0.968px 3.881px 17px rgba(0, 0, 0, 0.1);
	box-shadow: 0.968px 3.881px 17px rgba(0, 0, 0, 0.1);
	padding: 47px 40px 40px 40px;
}

.mobile-recharge-area .recharge-left-form h3 {
	margin-top: 0;
	margin-bottom: 30px;
}

.mobile-recharge-area .recharge-left-form .input-group {
	display: block;
}

.mobile-recharge-area .recharge-left-form .radio-btn-group {
	margin-bottom: 27px;
}

.mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio {
	display: inline-block;
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	margin-right: 25px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio input:checked~.radio-box {
	background-color: #fff;
	border-color: #25aae1;
}

.mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio input:checked~.radio-box:after {
	display: block;
}

.mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio .radio-box {
	position: absolute;
	top: 3px;
	left: 0;
	height: 15px;
	width: 15px;
	border: 2px solid #c3c3c3;
	border-radius: 50%;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio .radio-box:after {
	position: absolute;
	content: '';
	top: 3px;
	left: 3px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #25aae1;
	-ms-transform: tranlate(-50%, -50%);
	/* IE 9 */
	-webkit-transform: tranlate(-50%, -50%);
	/* Chrome, Safari, Opera */
	transform: tranlate(-50%, -50%);
	display: none;
}

.mobile-recharge-area .recharge-left-form .radio-btn-group .custom-radio:hover input~.radio-box {
	border-color: #25aae1;
}

.mobile-recharge-area .recharge-left-form .checkbox-group {
	margin-top: 20px;
	margin-bottom: 30px;
}

.mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox {
	width: 20px;
	height: 20px;
	position: relative;
	background: #fff;
	border: 2px solid rgba(238, 238, 238, 0.5);
	border-radius: 5px;
	margin-bottom: 20px;
}

.mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox:last-child {
	margin-bottom: 0;
}

.mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox span {
	position: absolute;
	display: block;
	width: 250px;
	left: 30px;
	top: -2px;
	color: #25aae1;
}

.mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox label {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0px;
	left: 0px;
	cursor: pointer;
	border-radius: 50px;
}

.mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox label:after {
	content: '';
	width: 9px;
	height: 5px;
	position: absolute;
	top: 5px;
	left: 4px;
	border: 3px solid #25aae1;
	border-top: none;
	border-right: none;
	background: transparent;
	opacity: 0;
	-ms-transform: rotate(-45deg);
	/* IE 9 */
	-webkit-transform: rotate(-45deg);
	/* Chrome, Safari, Opera */
	transform: rotate(-45deg);
}

.mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox label:hover::after {
	opacity: 0;
}

.mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox input[type=checkbox] {
	visibility: hidden;
}

.mobile-recharge-area .recharge-left-form .checkbox-group .d-checkbox input[type=checkbox]:checked+label:after {
	opacity: 1;
}


/*---------------------------
** Choose Plan
---------------------------*/

.choose-plan {
	position: relative;
	z-index: 1;
	padding-bottom: 120px;
	padding-top: 107px;
}

.choose-plan:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .2;
	display: none;
}

.choose-plan.choose-plan-bg {
	background-color: #ddd;
	background-position: center;
	background-size: cover;
	background-image: url(../img/bg/choose-plan.jpg);
}

.choose-plan .single-price-plan {
	border: 2px solid rgba(56, 128, 244, 0.3);
	text-align: center;
	background-color: #fff;
	position: relative;
	border-radius: 5px;
}

.choose-plan .single-price-plan .premium {
	position: absolute;
	left: 50%;
	top: -25px;
	display: inline-block;
	text-transform: uppercase;
	background-color: #ff0066;
	color: #fff;
	font-weight: 500;
	padding: 15px 25px;
	border-radius: 25px;
	-ms-transform: translateX(-50%);
	/* IE 9 */
	-webkit-transform: translateX(-50%);
	/* Chrome, Safari, Opera */
	transform: translateX(-50%);
}

.choose-plan .single-price-plan .header {
	padding: 59px 0 30px 0;
	border-bottom: 1px solid #d4d4d4;
	margin: 0 40px 37px 40px;
}

.choose-plan .single-price-plan .header .pname {
	color: #303443;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.choose-plan .single-price-plan .header h2 {
	font-size: 62px;
	font-weight: 700;
	margin-top: 10px;
	margin-bottom: 0;
}

.choose-plan .single-price-plan .header .month {
	color: #4b4e59;
}

.choose-plan .single-price-plan .body {
	padding: 0 0 40px 0;
}

.choose-plan .single-price-plan .body .boxed-btn {
	display: block;
	margin: 0 40px 0 40px;
}

.choose-plan .single-price-plan .body ul {
	padding-bottom: 35px;
}

.choose-plan .single-price-plan .body ul li {
	color: #4b4e59;
	padding: 13px 0;
}

.choose-plan .single-price-plan .body ul li:first-child {
	padding-top: 0;
}

.choose-plan .single-price-plan .body ul li:last-child {
	padding-bottom: 0;
}


/*---------------------------
** Reffer 
---------------------------*/

.reffer-section {
	padding: 100px 0 90px 0;
}

.reffer-section .single-reffer-box {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 40px 50px 50px 50px;
}

.reffer-section .single-reffer-box .boxed-btn {
	border: 2px solid transparent;
	padding: 13px 38px;
}

.reffer-section .single-reffer-box .boxed-btn.blank {
	color: #fff;
	border-color: #25aae1;
}

.reffer-section .single-reffer-box .boxed-btn.blank:hover {
	background-color: #25aae1;
}

.reffer-section .single-reffer-box .boxed-btn:hover {
	background-color: transparent;
	border: 2px solid #25aae1;
}

.reffer-section .single-reffer-box:hover:after {
	opacity: .90;
}

.reffer-section .single-reffer-box:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	content: '';
	background-color: #303443;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.reffer-section .single-reffer-box.reffer-bg {
	background-color: #000;
	background-image: url(../img/bg/reffer-bg.jpg);
	background-position: center;
	background-size: cover;
}

.reffer-section .single-reffer-box .icon {
	font-size: 46px;
	color: #25aae1;
	padding-bottom: 7px;
}

.reffer-section .single-reffer-box .content h4 {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 40px;
	line-height: 32px;
}

.reffer-section .single-reffer-box .search-store {
	position: relative;
	display: block;
}

.reffer-section .single-reffer-box .search-store input[type=text] {
	width: 100%;
	border-radius: 25px;
	position: relative;
	background-color: rgba(255, 255, 255, 0.1);
	border: 2px solid #ddd;
	padding-right: 40%;
	color: #fafbfb;
	margin-bottom: 2px;
}

.reffer-section .single-reffer-box .search-store input[type=text]::-webkit-input-placeholder {
	/* WebKit browsers */
	color: rgba(250, 251, 251, 0.6);
}

.reffer-section .single-reffer-box .search-store input[type=text]:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: rgba(250, 251, 251, 0.6);
}

.reffer-section .single-reffer-box .search-store input[type=text]::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: rgba(250, 251, 251, 0.6);
}

.reffer-section .single-reffer-box .search-store input[type=text]:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: rgba(250, 251, 251, 0.6);
}

.reffer-section .single-reffer-box .search-store input[type=submit] {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 40%;
	display: inline-block;
	padding: 11.5px 15px;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.reffer-section .single-reffer-box .search-store input[type=submit]:hover {
	background-color: transparent;
	border: 2px solid #25aae1;
	padding: 9.5px 15px;
}


/*---------------------------
** Award Winning
---------------------------*/

.award-wining-area {
	padding-top: 110px;
	padding-bottom: 120px;
	background-color: #303443;
}

.award-wining-area .section-title h2 {
	color: #fff;
}

.award-wining-area .right-content {
	color: #bab9b9;
}

.award-wining-area .right-content p {
	color: #bab9b9;
	margin-bottom: 20px;
}

.award-wining-area .right-content h3 {
	color: #fff;
	margin-bottom: 37px;
	font-family: 500;
}

.award-wining-area .right-content li {
	padding: 7px 0;
}

.award-wining-area .right-content li i {
	color: #25aae1;
	padding-right: 5px;
}

.award-wining-area .right-content .boxed-btn {
	margin-top: 32px;
	border: 2px solid transparent;
	padding: 11px 36px;
}

.award-wining-area .right-content .boxed-btn:hover {
	background-color: transparent;
	border: 2px solid #ddd;
}


/*---------------------------
** Contact Area
---------------------------*/

.contact-area {
	position: relative;
}

.contact-area .google-map {
	position: absolute;
	left: 0;
	width: 40%;
	height: 100%;
}

.contact-area .google-map #map {
	width: 100%;
	height: 100%;
}

.contact-area .contact-form {
	padding-top: 87px;
	padding-bottom: 80px;
	padding-left: 20px;
}

.contact-area .contact-form h2 {
	margin-top: 0;
	margin-bottom: 44px;
}

.contact-area .contact-form h2 span {
	color: #25aae1;
}

.contact-area .contact-form input {
	margin-bottom: 20px;
	background-color: #FAFAFA;
}

.contact-area .contact-form textarea {
	background-color: #FAFAFA;
}

.contact-area .contact-form input[type=submit] {
	margin-top: 30px;
	display: inline-block;
	padding: 15px 35px;
	width: auto;
	background-color: #25aae1;
}

.contact-area .contact-form input[type=submit]:hover {
	background-color: #303443;
}


/*---------------------------
** faq area
---------------------------*/

.faq-area-start {
	background-color: #f2f3f4;
	padding-top: 110px;
	padding-bottom: 100px;
}

.faq-area-start .faq-accordion .panel-title {
	font-size: 14px;
	font-weight: 400;
	color: #303443;
}

.faq-area-start .faq-accordion .panel {
	-webkit-box-shadow: none;
	box-shadow: none;
	margin-bottom: 17px;
}

.faq-area-start .faq-accordion .panel-default>.panel-heading {
	border: none;
	background-color: transparent;
	padding: 0;
}

.faq-area-start .faq-accordion .panel-default>.panel-heading a {
	padding: 15px 30px;
	display: block;
	border: 2px solid #E4E5E6;
	background-color: #F2F3F4;
	position: relative;
}

.faq-area-start .faq-accordion .panel-default>.panel-heading a:after {
	position: absolute;
	right: 20px;
	content: '\f0ab';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #25aae1;
}

.faq-area-start .faq-accordion .panel-default>.panel-heading a[aria-expanded="true"] {
	border-bottom: none;
	background-color: #fff;
}

.faq-area-start .faq-accordion .panel-default>.panel-heading a[aria-expanded="true"]:after {
	position: absolute;
	right: 20px;
	content: '\f0aa';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #25aae1;
}

.faq-area-start .faq-accordion .panel-group .panel-heading+.panel-collapse>.panel-body {
	border: 2px solid #E4E5E6;
	border-top: none;
}

.faq-area-start .faq-accordion .panel-body {
	padding: 30px;
	padding-top: 10px;
	padding-bottom: 27px;
}


/*---------------------------
** Subscription Area
---------------------------*/

.subscription-area {
	background-color: #303443;
	padding-top: 108px;
	padding-bottom: 120px;
}

.subscription-area .section-title h2 {
	color: #fff;
}

.subscription-area .subscription-form {
	position: relative;
	margin-bottom: 40px;
}

.subscription-area .subscription-form input {
	border-radius: 25px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	background-color: transparent;
	color: #fafbfb;
	position: relative;
}

.subscription-area .subscription-form input::-webkit-input-placeholder {
	/* WebKit browsers */
	color: rgba(250, 251, 251, 0.5);
}

.subscription-area .subscription-form input:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: rgba(250, 251, 251, 0.5);
}

.subscription-area .subscription-form input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: rgba(250, 251, 251, 0.5);
}

.subscription-area .subscription-form input:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: rgba(250, 251, 251, 0.5);
}

.subscription-area .subscription-form input[type=submit] {
	border: none;
	background-color: #25aae1;
	width: 150px;
	position: absolute;
	top: 2px;
	right: 2px;
	border: 2px solid #25aae1;
	padding: 9.5px 12px;
}

.subscription-area .subscription-form input[type=submit]:hover {
	background-color: transparent;
	border: 2px solid rgba(255, 255, 255, 0.2);
	padding: 9.5px 12px;
}

.subscription-area .social-links-footer li {
	display: inline-block;
}

.subscription-area .social-links-footer li a {
	display: inline-block;
	color: #fff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

.subscription-area .social-links-footer li a:hover {
	background-color: #25aae1;
	border-color: #25aae1;
}


/*---------------------------
** Footer Area
---------------------------*/

.footer-area {
	background-color: #1c2031;
	color: #a9a9aa;
	padding: 25px 0;
}

.logossection {
	text-align: center;
	padding: 20px;
}


/* Popup box BEGIN */

.hover_bkgr_fricc {
	background: rgba(0, 0, 0, .4);
	cursor: pointer;
	display: none;
	height: 100%;
	position: fixed;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 10000;
}

.hover_bkgr_fricc .helper {
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.hover_bkgr_fricc>div {
	background-color: #fff;
	box-shadow: 10px 10px 60px #555;
	display: inline-block;
	height: auto;
	max-width: 551px;
	min-height: 100px;
	vertical-align: middle;
	width: 60%;
	position: relative;
	border-radius: 8px;
	padding: 15px 5%;
}

.popupCloseButton {
	background-color: #fff;
	border: 3px solid #999;
	border-radius: 50px;
	cursor: pointer;
	display: inline-block;
	font-family: arial;
	font-weight: bold;
	position: absolute;
	top: -20px;
	right: -20px;
	font-size: 25px;
	line-height: 30px;
	width: 30px;
	height: 30px;
	text-align: center;
}

.popupCloseButton:hover {
	background-color: #ccc;
}

.trigger_popup_fricc {
	cursor: pointer;
	font-size: 20px;
	margin: 20px;
	display: inline-block;
	font-weight: bold;
}


/* Popup box BEGIN */

html,
body {
	min-height: 100%;
}

body,
div,
form,
input,
select,
p {
	padding: 0;
	margin: 0;
	outline: none;
	font-family: Roboto, Arial, sans-serif;
	font-size: 14px;
	color: #666;
	line-height: 22px;
}

h1 {
	margin: 15px 0;
	font-weight: 400;
}

h4 {
	margin-bottom: 4px;
}

.testbox {
	display: flex;
	justify-content: center;
	align-items: center;
	height: inherit;
	padding: 3px;
}

form {
	width: 100%;
	padding: 20px;
	background: #fff;
	box-shadow: 0 2px 5px #ccc;
}

input,
select,
textarea {
	width: 100%;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input {
	width: calc(100% - 10px);
	padding: 5px;
}

input:hover,
textarea:hover,
select:hover {
	outline: none;
	border: 1px solid #095484;
}

select {
	padding: 7px 0;
	background: transparent;
}

textarea {
	margin-bottom: 3px;
}

.item {
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 10px 0;
}

input[type="date"]::-webkit-inner-spin-button {
	display: none;
}

.item i,
input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	font-size: 20px;
	color: #a9a9a9;
}

.item i {
	left: 94%;
	top: 30px;
	z-index: 1;
}

[type="date"]::-webkit-calendar-picker-indicator {
	left: 93%;
	z-index: 2;
	opacity: 0;
	cursor: pointer;
}

.street,
.desired-outcome-item,
.complaint-details-item {
	display: flex;
	flex-wrap: wrap;
}

.street input {
	margin-bottom: 10px;
}

small {
	display: block;
	line-height: 16px;
	opacity: 0.7;
}

.btn-block {
	margin-top: 20px;
	text-align: center;
}

button {
	width: 150px;
	padding: 10px;
	border: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: #095484;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
}

button:hover {
	background-color: #0666a3;
}

@media (min-width: 568px) {
	input {
		width: calc(35% - 20px);
		margin: 0 0 0 8px;
	}
	select {
		width: calc(50% - 8px);
		margin: 0 0 10px 8px;
	}
	.item {
		flex-direction: row;
		align-items: center;
	}
	.item p {
		width: 30%;
	}
	.item i {
		left: 61%;
		top: 25%;
	}
	[type="date"]::-webkit-calendar-picker-indicator {
		left: 60%;
	}
	.street,
	.desired-outcome-item,
	.complaint-details-item {
		width: 70%;
	}
	.street input {
		width: calc(50% - 20px);
	}
	.street .street-item {
		width: 100%;
	}
	.address p,
	.desired-outcome p,
	.complaint-details p {
		align-self: flex-start;
		margin-top: 6px;
	}
	.desired-outcome-item,
	.complaint-details-item {
		margin-left: 12px;
	}
	textarea {
		width: calc(100% - 6px);
	}
}