@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Oswald:700&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Lobster&amp;display=swap');
/*font-family: 'Oswald', sans-serif;*/

body {
	margin: 0px;
	font-family: 'Poppins', sans-serif;
	overflow-x: hidden;
}
.no_pd {
	padding: 0px;
}
a, a:hover, a:focus {
	text-decoration: none;
}
.title_blk {
	color: #000000;
	font-size: 70px;
	font-weight: 700;
	margin: 0 0 0;
	text-transform: uppercase;
}
.title_blk span {
	font-weight: 600;
	font-size: 20px;
	display: block;
	margin: 0 0 5px;
}
.title_cn {
	text-align: center;
}
.title_white {
	color: #fff;
	font-weight: 600;
	font-size: 36px;
	margin: 0;
	text-align: center;
}
.para {
	color: #666666;
	font-size: 15px;
	margin: 5px 0 0;
}
.para span {
	display: block;
}
.para_cn {
	text-align: center;
}
/*Btn Yellow*/

.btn_yellow {
	color: #fff !important;
	background-color: #ffd200;
	align-items: center;
	display: grid;
	padding: 12px 30px;
	--c: #000000;
	position: relative;
	overflow: hidden;
	z-index: 1;
	font-weight: 600;
	text-align: center;
	border-radius: 2px;
	font-size: 16px;
	text-transform: uppercase;
}
.btn_yellow:hover, .btn_yellow:focus {
	color: #ffd200 !important;
}
.btn_yellow em {
	position: absolute;
	width: 25%;
	height: 100%;
	background-color: #222222;
	transform: translateY(150%);
	border-radius: 50%;
	left: calc((var(--n) - 1) * 25%);
	transition: 0.5s;
	transition-delay: calc((var(--n) - 1) * 0.1s);
	z-index: -1;
}
.btn_yellow:hover em, .btn_yellow:focus em {
	transform: translateY(0) scale(2);
}
.btn_yellow em:nth-child(1) {
 --n: 1;
}
.btn_yellow em:nth-child(2) {
 --n: 2;
}
.btn_yellow em:nth-child(3) {
 --n: 3;
}
.btn_yellow em:nth-child(4) {
 --n: 4;
}
/*Btn_Blue*/

.btn_blue {
	color: #fff !important;
	background-color: #0a0a99;
	align-items: center;
	display: grid;
	padding: 12px 30px;
 --c: #000000;
	position: relative;
	overflow: hidden;
	z-index: 1;
	font-weight: 600;
	text-align: center;
	border-radius: 2px;
	font-size: 16px;
	text-transform: uppercase;
}
.btn_blue:hover, .btn_blue:focus {
	color: #fff !important;
}
.btn_blue em {
	position: absolute;
	width: 25%;
	height: 100%;
	background-color: var(--c);
	transform: translateY(150%);
	border-radius: 50%;
 left: calc((var(--n) - 1) * 25%);
	transition: 0.5s;
 transition-delay: calc((var(--n) - 1) * 0.1s);
	z-index: -1;
}
.btn_blue:hover em, .btn_blue:focus em {
	transform: translateY(0) scale(2);
}
.btn_blue em:nth-child(1) {
 --n: 1;
}
.btn_blue em:nth-child(2) {
 --n: 2;
}
.btn_blue em:nth-child(3) {
 --n: 3;
}
.btn_blue em:nth-child(4) {
 --n: 4;
}

/*Btn_white*/

.btn_white {
	color: #000 !important;
	background-color: #fff;
	align-items: center;
	display: grid;
	padding: 12px 30px;
 --c: #000000;
	position: relative;
	overflow: hidden;
	z-index: 1;
	font-weight: 600;
	text-align: center;
	border-radius: 2px;
	font-size: 16px;
	text-transform: uppercase;
}
.btn_white:hover, .btn_white:focus {
	color: #fff !important;
}
.btn_white em {
	position: absolute;
	width: 25%;
	height: 100%;
	background-color: var(--c);
	transform: translateY(150%);
	border-radius: 50%;
 left: calc((var(--n) - 1) * 25%);
	transition: 0.5s;
 transition-delay: calc((var(--n) - 1) * 0.1s);
	z-index: -1;
}
.btn_white:hover em, .btn_white:focus em {
	transform: translateY(0) scale(2);
}
.btn_white em:nth-child(1) {
 --n: 1;
}
.btn_white em:nth-child(2) {
 --n: 2;
}
.btn_white em:nth-child(3) {
 --n: 3;
}
.btn_white em:nth-child(4) {
 --n: 4;
}
/*Btn_blk*/

.btn_blk {
	color: #fff !important;
	background-color: #000;
	align-items: center;
	display: grid;
	padding: 12px 30px;
	--c: #fff;
	position: relative;
	overflow: hidden;
	z-index: 1;
	font-weight: 600;
	text-align: center;
	border-radius: 2px;
	font-size: 16px;
	text-transform: uppercase;
}
.btn_blk:hover, .btn_blk:focus {
	color: #fff !important;
}
.btn_blk em {
	position: absolute;
	width: 25%;
	height: 100%;
	background-color: #ffd200;
	transform: translateY(150%);
	border-radius: 50%;
	left: calc((var(--n) - 1) * 25%);
	transition: 0.5s;
	transition-delay: calc((var(--n) - 1) * 0.1s);
	z-index: -1;
}
.btn_blk:hover em, .btn_blk:focus em {
	transform: translateY(0) scale(2);
}
.btn_blk em:nth-child(1) {
 --n: 1;
}
.btn_blk em:nth-child(2) {
 --n: 2;
}
.btn_blk em:nth-child(3) {
 --n: 3;
}
.btn_blk em:nth-child(4) {
 --n: 4;
}
/*top_header*/

.head-top {
	padding: 25px 0;
}
.head-btn {
	float: right;
}
.head-btn a {
	display: inline-block;
	margin: 0 0px 0 10px;
}
.number {
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
}
.number span {
	display: block;
	color: #ffd200;
	font-weight: 500;
	font-size: 14px;
}
.number:hover {
	color: #ffffff;
}
/*top_header*/


/*hero_banner*/
.hero_banner {
	background-image: url(../images/banner-bg.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	width: 100%;
	/* min-height: 807px; */
	position: relative;
	padding: 0 0 195px;
}
/*.hero_banner:before {
	content: "";
	background-image: url(../images/hero-bg-before.png);
	background-position: 0px 0px;
	background-repeat: no-repeat;
	position: absolute;
	width: 250px;
	height: 365px;
	left: 0;
}*/

.banner_img.banner_img_left {
    float: right;
    position: relative;
    /* display: table; */
    width: 100%;
}

.banner_img.banner_img_left img {
    position: absolute;
    box-shadow: 0px 9px 15px 7px #000000c2;
}

.banner_img_left1 {
    box-shadow: 0px 0px 35px 19px #000000 !important;
}

.banner_img_left1 {
    left: 65px;
    top: 0px;
}

.banner_img_left2 {
    bottom: -607px;
    left: 150px;
}
.banner_img_left3 {
    bottom: -608px;
    left: 350px;
}

.banner_img.banner_img_right {
    float: left;
    margin: 0 0 0 30px;
    position: relative;
    /* display: table; */
    width: 100%;
}

.banner_img.banner_img_right img {
    position: absolute;
    box-shadow: -15px 15px 15px 5px #000000c4;
    z-index: 9;
}



.banner_img_right1 {
    left: -130px;
    top: 130px;
}

.banner_img_right2 {
    left: 50px;
    top: 0;
}

.banner_img_right2{
    position: absolute;
    box-shadow: -15px 15px 15px 5px #000000ad !important;
    z-index: 7;
}
.banner_img_right3 {
    bottom: -545px;
    left: 140px;
    z-index: 1 !important;
}

.hero_banner_boxes {
    margin: 30px 0 0;
}

.hero_banner_text {
    align-items: center;
    padding: 60px 0 0;
    text-align: center;
}
.hero_banner_text h1 {
	color: #ffd200;
	font-size: 80px;
	font-weight: 700;
	margin: 0 0 0;
	text-transform: uppercase;
}
.hero_banner_text h1 span {
	color: #fff;
	font-weight: 600;
	font-size: 40px;
	display: block;
	margin: 5px 0 5px;
	text-align: center;
}

.hero_banner_text h1 b {
    color: #fff;
}

.hero_banner_text p {
    text-align: center;
    color: #fff;
    margin: 20px 0 30px;
}



.hero_banner_boxes h2 {
    font-size: 40px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 20px 0px;
    font-family: 'Lobster', cursive;
    text-align: left;
    float: left;
    width: 100%;
}
.banner_list {
	padding: 0 0 0 20px;
	margin: 30px 0 30px;
}
.banner_list li {
	color: #666666;
	font-size: 15px;
	position: relative;
	list-style: none;
	padding: 0 0 10px 30px;
	font-weight: 500;
}
.banner_list li:before {
	content: "";
	background-image: url(../images/check-icon.png);
	background-position: 0px 5px;
	background-repeat: no-repeat;
	position: absolute;
	width: 50px;
	height: 50px;
	left: 0;
}

.banner_btn {
    margin: 50px auto 0;
    display: table;
}

.banner_btn a {
	display: inline-block;
	margin: 0 10px 0 0;
}
.hero_banner_form {
	width: 75%;
	float: right;
}
.contact_form_box:before {
	content: "";
	background-image: url(../images/banner-form-top-img.png);
	background-position: 0 0px;
	background-repeat: no-repeat;
	position: absolute;
	/* bottom: -30px; */
	left: 0;
	width: 210px;
	height: 20px;
	right: 0;
	margin: auto;
	top: 0;
}
.contact_form_box {
	background-color: #0a0a99;
	width: 100%;
	padding: 50px 30px 50px;
	margin: 30px 0 0;
	border-radius: 5px;
	position: relative;
}
.contact_form_box h3 {
	margin: 0px 0 10px;
	font-size: 18px;
	font-weight: 500;
	color: #ffffff;
	text-transform: uppercase;
	text-align: center;
}
.contact_form_box h3 span {
	font-size: 50px;
	color: #ffd200;
	display: block;
	margin: 5px 0 0;
	font-weight: 700;
}
.contact_form_box .form-control {
	display: block;
	width: 100%;
	height: 50px;
	padding: 6px 0px 0;
	font-size: 14px;
	line-height: 1.42857143;
	color: #fff;
	background-color: transparent;
	background-image: none;
	border: 0px solid #fff;
	background-color: transparent;
	border-radius: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	border-bottom: 1px solid #6c6cc2;
}
.contact_form_box textarea.form-control {
	height: 100px !important;
}
select option, select optgroup {
	color: #fff;
}
 .contact_form_box input::-webkit-input-placeholder, .contact_form_box textarea::-webkit-input-placeholder {
color: #fff !important;
}
 .contact_form_box input:-moz-placeholder, .contact_form_box textarea:-moz-placeholder { /* Firefox 18- */
color: #fff !important;
}
 .contact_form_box input::-moz-placeholder {  /* Firefox 19+ */
color: #fff !important;
}
 .contact_form_box input:-ms-input-placeholder {
color: #fff !important;
}
.submit_btn {
	font-weight: 600;
	font-size: 18px;
	border: none;
	width: 100%;
}
.banner_form_img {
	position: absolute;
	top: 20px;
	right: 23px;
}
/*banner End*/


/*Guaranteed Sec*/

.client_logo_sec {
	margin: -54px 0 0;
	background-color: #f6f9fd;
	padding: 90px 0 45px;
}
.client_logo_sec img {
    width: 100%;
    filter: invert(1);
}
/*Guaranteed Sec*/


/*types_of_blogs_sec*/

.types_of_blogs_sec {
	padding: 50px 0 20px;
	position: relative;
}
.types_of_blogs_sec:before {
	content: "";
	background-image: url(../images/types-blogs-before.png);
	background-position: 0 0px;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -95px;
	left: 0px;
	width: 395px;
	height: 680px;
	/* right: 0; */
	margin: auto;
	z-index: 1;
}
.types_of_blogs_boxes {
	margin: 40px 0 0;
}
.types_of_blogs_boxes .slider-nav .slick-track {
	transform: translate3d(0px, 0px, 0px) !important;
}
.types_of_blogs_boxes .slider-for .slick-next:before, .types_of_blogs_boxes .slider-for .slick-next {
	color: #000;
	opacity: 1;
}
.types_of_blogs_boxes .slider-for .slick-prev:after, .types_of_blogs_boxes .slider-for .slick-prev {
	color: #fff;
	opacity: 1;
	z-index: 99;
}
.slick-next:before, .slick-prev:before {
	font-size: 30px;
}
.types_of_blogs_boxes .slider-nav {
	width: 75%;
	margin: 0 auto 50px;
}
.types_of_blogs_boxes .slider-nav .slick-slide:focus {
	outline: none;
}
.types_of_blogs_icon h3 {
	text-align: center;
	margin: 50px 0 0;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
}
.slick-current .types_of_blogs_icon h3 {
	color: #0a0a99;
}
.types_of_blogs_icon {
	height: 105px;
	width: 120px;
	background-color: #0a0a99;
	background-repeat: no-repeat;
	margin: auto;
	display: grid;
	align-items: center;
	border-radius: 5px;
	cursor: pointer;
}
.slick-current .types_of_blogs_icon {
	background-color: #ffd200;
}
.types_of_blogs_icon1 {
	background-image: url(../images/types-blog-icon1.png);
	background-position: 30px 20px;
}
.slick-current .types_of_blogs_icon1 {
	background-image: url(../images/types-blog-icon1.png);
	background-position: 30px -65px;
}
.types_of_blogs_icon2 {
	background-image: url(../images/types-blog-icon2.png);
	background-position: 35px 15px;
}
.slick-current .types_of_blogs_icon2 {
	background-image: url(../images/types-blog-icon2.png);
	background-position: 35px -75px;
}
.types_of_blogs_icon3 {
	background-image: url(../images/types-blog-icon3.png);
	background-position: 40px 17px;
}
.slick-current .types_of_blogs_icon3 {
	background-image: url(../images/types-blog-icon3.png);
	background-position: 40px -73px;
}
.types_of_blogs_icon4 {
	background-image: url(../images/types-blog-icon4.png);
	background-position: 40px 15px;
}
.slick-current .types_of_blogs_icon4 {
	background-image: url(../images/types-blog-icon4.png);
	background-position: 40px -75px;
}
.types_of_blogs_icon5 {
	background-image: url(../images/types-blog-icon5.png);
	background-position: 30px 20px;
}
.slick-current .types_of_blogs_icon5 {
	background-image: url(../images/types-blog-icon5.png);
	background-position: 30px -60px;
}
.types_of_blogs_icon6 {
	background-image: url(../images/types-blog-icon6.png);
	background-position: 35px 20px;
}
.slick-current .types_of_blogs_icon6 {
	background-image: url(../images/types-blog-icon6.png);
	background-position: 35px -60px;
}
.types_of_blogs_box img {
	width: 100%;
}
.types_of_blogs_box h2 {
	font-size: 200px;
	color: #e6e6f2;
	margin: -20px 0 -85px;
	font-weight: 600;
}
.types_of_blogs_box h3 {
	color: #000000;
	font-weight: 600;
	font-size: 26px;
}
.types_of_blogs_box p {
	color: #666666;
	font-size: 15px;
	font-weight: 400;
}
.types_of_blogs_btn {
	margin: 40px 0 0;
}
.types_of_blogs_btn a {
	display: inline-block;
	margin: 0 5px 0 0;
}
.types_of_blogs_box h3 {
	color: #000000;
	font-weight: 600;
	font-size: 26px;
}
.types_of_blogs_box p {
	color: #666666;
	font-size: 15px;
	font-weight: 400;
}
.types_of_blogs_btn {
    margin: 40px 0 0;
    text-align: center;
}
.types_of_blogs_btn a {
	display: inline-block;
	margin: 0 5px 0 0;
}
/*types_of_blogs_sec*/



/*guarantee_sec*/

.guarantee_sec {
	background-color: #f6f9fd;
	padding: 60px 0 60px;
	position: relative;
}
.guarantee_sec:before {
	content: "";
	background-image: url(../images/guarantee-affter-img.png);
	background-position: 0 0px;
	background-repeat: no-repeat;
	position: absolute;
	right: 0px;
	width: 218px;
	height: 330px;
	/* right: 0; */
	margin: auto;
	top: -200px;
}
.guarantee_box h3 {
	color: #000000;
	font-size: 20px;
	font-weight: 600;
}
.guarantee_box p {
	font-size: 15px;
	color: #666666;
}
/*guarantee_sec*/


/*sample_sec*/
.sample_sec {
	padding: 50px 0 50px;
	position: relative;
}
/*.sample_sec:before {
	content: "";
	background-image: url(../images/sample-after-img.png);
	background-position: 0 0px;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -110px;
	right: 0px;
	width: 545px;
	height: 560px;
	margin: auto;
	z-index: 1;
}*/
.sample_slider a {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	transition-duration: .5s;
}
.sample_slider a:before, .sample_slider a:after {
	transition-duration: .5s;
}
.sample_slider a:hover:before {
	background-color: rgba(0, 0, 0, 0.69);
	content: "";
	height: 100%;
	left: 0;
	right: 0;
	position: absolute;
	top: 0;
	transition: all 0.5s ease-in 0s;
	width: 95%;
	z-index: 2;
	transition-duration: .5s;
	margin: auto;
}
.sample_slider a:hover:after {
	background-image: url(../images/zoom.png);
	background-position: center;
	background-repeat: no-repeat;
	/* background-size: 22%; */
	height: 55px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 9999;
	/* display: grid; */
	align-items: center;
	left: 0;
	right: 0px;
	transition-duration: .5s;
	width: 100%;
	content: "";
}
.sample_boxes {
	margin: 50px 0 0;
	z-index: 99;
	position: relative;
}
.sample_slider img {
	width: 95%;
	margin: 0 auto;
}
.sample_slider .slick-next:before, .sample_slider .slick-next {
	color: #000;
	opacity: 1;
}
.sample_slider .slick-prev:after, .sample_slider .slick-prev {
	color: #000;
	opacity: 1;
}
.sample_slider .slick-prev:before {
	color: #000;
	opacity: 1;
}
.sample_slider .slick-prev {
	left: -35px;
}
.sample_slider .slick-slide:focus {
	outline: none;
}
/*sample_sec*/


/*Cta Sec1*/
.cta_sec_1 {
	background-image: url(../images/cta-bg1.jpg);
	z-index: 0;
}
.cta_sec_2 {
	background-image: url(../images/cta-bg2.jpg);
	z-index: 0;
}
.cta_sec_2 .title_blk {
	color: #fff;
}
.cta_sec {
	padding: 50px 0 50px;
	background-position: center bottom;
	background-repeat: no-repeat;
	position: relative;
	background-size: cover;
}
.cta_boxes_btn {
	margin: 30px auto 0;
	display: table;
}
.cta_boxes_btn a {
	display: inline-block;
	margin: 0 5px;
}
/*Cta Sec1*/


/*hire_us_sec*/

.hire_us_sec {
	padding: 50px 0 50px;
	position: relative;
}
.hire_us_sec:before {
	content: "";
	background-image: url(../images/hire-us-before-img.png);
	background-position: 0 0px;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
	left: 270px;
	width: 320px;
	height: 320px;
	/* right: 0; */
	margin: auto;
}
.hire_us_sec:after {
	content: "";
	background-image: url(../images/hire-us-after-img.png);
	background-position: 0 0px;
	background-repeat: no-repeat;
	position: absolute;
	top: 30px;
	right: 170px;
	width: 320px;
	height: 320px;
	/* right: 0; */
	margin: auto;
	z-index: -1;
}
.hire_us_boxes {
	margin: 50px 0 0;
}
.hire_us_box {
	background: #fff;
	box-shadow: 0 0 30px 20px rgba(237, 237, 248, 0.37);
	padding: 25px 30px 30px;
	margin: 0 0 30px;
}
.hire_img_box {
	float: left;
	width: 25%;
	height: 65px;
	align-items: center;
	display: grid;
}
.hire_us_box h3 {
	color: #000000;
	font-weight: 600;
	font-size: 18px;
	float: left;
	width: 75%;
	margin: 12px 0 0;
}
.hire_us_box p {
	margin: 80px 0 0;
	display: table;
	color: #666666;
	font-size: 15px;
}
.hire_us_box1 {
	margin: -90px 0 30px;
}
.hire_us_box5 {
	margin: 95px 0 0px;
}
/*hire_us_sec*/


/*benefits_sec*/

.benefits_sec {
	padding: 0 0 50px;
}
.benefits_boxes {
	margin: 50px 0 0;
}
.benefits_box_img {
	align-items: center;
	display: grid;
	height: 60px;
}
.benefits_box_img img {
	margin: auto;
}
.benefits_box h3 {
	text-align: center;
	color: #666666;
	font-size: 14px;
	font-weight: 500;
}
.benefits_boxes_btn {
	margin: 40px auto 0;
	display: table;
}
.benefits_boxes_btn a {
	display: inline-block;
	margin: 0 5px;
}
/*benefits_sec*/


/*process_sec*/

.process_sec {
	padding: 50px 0 50px;
	background-color: #f6f9fd;
}
.process_boxes {
	margin: 50px auto 0;
	width: 85%;
	display: table;
}
.process_boxes .col-sm-2 {
	width: 20%;
}
.process_box_icon_blue {
    background-color: #262626;
}
.process_box_icon_yellow {
	background-color: #ffd200;
	margin: 80px 0 0;
}
.process_box_icon {
	height: 170px;
	border-radius: 250px;
	align-items: center;
	display: grid;
}
.process_box_icon img {
	margin: auto;
}
.process_box h3 {
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: #000000;
	margin: 20px 0 5px;
}
.process_box p {
	text-align: center;
	color: #676767;
	font-size: 15px;
}
/*process_sec*/

/*testimonial_sec*/

.testimonial_sec {
	padding: 0px 0 50px;
	position: relative;
}
.testimonial_sec:before {
	content: "";
	background-image: url(../images/testi-before-img.png);
	background-position: 0 0px;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -270px;
	left: 0;
	width: 316px;
	height: 583px;
	/* right: 0; */
	margin: auto;
	z-index: 1;
}
/*.testimonial_sec:after {
	content: "";
	background-image: url(../images/testi-after-img.png);
	background-position: 0 0px;
	background-repeat: no-repeat;
	position: absolute;
	top: -300px;
	right: 0;
	width: 276px;
	height: 433px;
	margin: auto;
	z-index: 1;
}*/
.testimonial_box_lf {
	padding: 200px 0 0;
}
.testimonial_text_lf {
	margin: 0 0 40px;
}
.raiting_box_lf {
	position: relative;
}
.raiting_box_lf p {
	position: absolute;
	top: 5px;
	left: 174px;
	font-size: 15px;
	font-weight: 600;
	color: #000000;
}
.trust_box_lf {
	display: inline-block;
	margin: 40px 0 0;
}
.trust_box_lf img {
	display: inline-block;
}
.trust_box_lf a {
	/* margin: 50px 0px 0; */
	display: inline-table;
	position: relative;
	top: 15px;
	left: 10px;
}
/*testislider*/

.clien_review_box {
	background-color: #ffffff;
	/* background: #fff; */
	box-shadow: 0 0 30px 10px rgba(237, 237, 248, 0.37);
	padding: 0 10px 0px;
	margin: 0 0 30px 30px;
	width: 90% !important;
}
.review_meta {
	border-bottom: 1px solid #f2f2f2;
	padding: 20px 25px;
}
.review_name {
	font-family: Circular-Bold, sans-serif;
	font-weight: 700;
	color: #1b2b68;
	margin-right: 5px;
	font-size: 18px;
}
.review_date {
	color: #57798e;
	width: 100%;
	background: #fff;
	border-radius: 4px;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 17px;
}
.ratingstar {
	display: inline-block;
	margin-right: 15px;
	margin-left: 15px;
	float: right;
	margin-right: 0;
}
.ratingstar i {
	background-color: #00b67a;
	width: 25px;
	height: 0;
	margin: auto;
	text-align: center;
	align-items: center;
	color: #fff;
	position: relative;
	padding: 5px 0 19px;
}
.review_body {
	padding: 30px 25px;
}
.review_title {
	font-size: 20px;
	font-weight: 600;
	color: #1b2b68;
	text-transform: capitalize;
}
.review_body p {
	color: #567a8f;
	font-size: 14px;
}
.review_link {
	font-weight: 600;
	font-size: 15px;
}
/*testimonial_sec*/


/*form_sec*/
.form_sec {
	background-color: #f6f9fd;
	padding: 50px 0 50px;
	position: relative;
}
.form_sec:before {
	content: "";
	background-image: url(../images/contact-form-after-img.png);
	background-position: 0 0px;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -150px;
	right: 0;
	width: 391px;
	height: 583px;
	margin: auto;
}
.form_sec_boxes {
	margin: 50px 0 0;
}
.form_sec_box {
	margin: auto;
	display: table;
	width: 70%;
}
.form_sec_box .form-group {
	margin: 0 7px 15px;
}
.form_sec_box .form-control {
	display: block;
	width: 100%;
	height: 50px;
	padding: 6px 0px 0;
	font-size: 14px;
	line-height: 1.42857143;
	color: #000;
	background-color: transparent;
	background-image: none;
	border: 0px solid #000;
	background-color: transparent;
	border-radius: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	border-bottom: 1px solid #000;
}
.form_sec_box textarea.form-control {
	height: 100px !important;
}
select option, select optgroup {
	color: #000;
}
 .form_sec_box input::-webkit-input-placeholder, .form_sec_box textarea::-webkit-input-placeholder {
color: #000 !important;
}
 .form_sec_box input:-moz-placeholder, .form_sec_box textarea:-moz-placeholder { /* Firefox 18- */
color: #000 !important;
}
 .form_sec_box input::-moz-placeholder {  /* Firefox 19+ */
color: #000 !important;
}
 .form_sec_box input:-ms-input-placeholder {
color: #000 !important;
}
.form_sec_box .btn_blue {
	border: none;
	float: right;
	margin: 0 7px 0 0;
}
/*Coantsact Form*/


/*footer_sec*/
.footer_sec {
	padding: 20px 0 20px;
}
.footer_box p {
	margin: 0;
	color: #000000;
	font-size: 15px;
}
.footer_boxes .col-sm-6:last-child .footer_box {
	float: right !important;
}
.footer_box a {
	margin: 0 5px 0 0px;
	color: #000000;
	font-size: 15px;
	text-align: right;
	border: none;
}
.footer_box a:first-child {
	border-right: 1px solid #000;
	padding: 0 10px 0 0px;
}
.footer_box a:hover, .footer_box a:focus {
	color: #0a0a99;
}
/*footer_sec*/

/*popup*/
#entry-popup {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 99999990;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.87);
	display: none;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	top: 0;
}
.entry-box {
	background-image: url(../images/entry-popup-bg.png);
	text-align: center;
	padding-top: 60px;
	padding-bottom: 0;
	width: 100%;
	margin: 0 auto;
	border-radius: 0;
	/* background-size: 100% 100%; */
    /* padding-left: 7%; */
	padding-right: 3%;
	/* box-shadow: 0 0 50px 0 #000; */
	position: relative;
	/* background-color: #ffffff; */
    /* border-bottom: 5px solid #2196f3; */
    /* text-align: left; */
	min-height: 640px;
	background-repeat: no-repeat;
}
.entry-right {
	float: right;
	padding: 0;
}
a#entry-box_close {
	position: absolute;
	right: 40px;
	background-color: #ffd200;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	color: #0a0a99;
	font-size: 30px;
	top: 3px;
	align-items: center;
	display: grid;
}
.entry-left {
	position: relative;
}
.entry-left:before {
	content: "";
	position: absolute;
	height: 100%;
	width: 20px;
	right: 24px;
}
.entry-left h2 {
	color: #000000;
	font-size: 30px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 20px 200px;
}
.entry-left h2 .lightblue {
	color: #090a9a;
	font-weight: bold;
	font-size: 70px;
	line-height: 65px;
}
.entry-left h2 .darkblue {
	color: #000000;
	font-weight: 600;
	font-size: 22px;
}
.entry-right .form-group {
	margin-bottom: 10px;
	position: relative;
}
#entry-popup .entry-right .form-control {
	border-radius: 0;
	height: 50px;
	padding-left: 45px;
	border: 0px solid #d4d4d4;
	box-shadow: none;
	font-family: 'Poppins', sans-serif;
	display: block;
	width: 80%;
	padding: 0 0 0 0px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-image: none;
	border-bottom: 1px solid #d4d4d4;
	background-color: transparent;
	margin: 0 0 0 30px;
}
#entry-popup .entry-right textarea.form-control {
	height: 100px;
	padding: 15px 0 0;
}
.entery-submit.btn_blue {
	border: none;
	float: right;
	margin: 25px 83px 0px 0;
}
/*Popup*/



.benefits_box:hover img, .guarantee_box:hover img, .hire_us_box:hover img {
	animation: pulse 1s infinite;
	animation-timing-function: linear;
}
 @keyframes pulse {
 0% {
transform: scale(1);
}
 50% {
transform: scale(1.1);
}
 100% {
transform: scale(1);
}

}
.process_box:hover img {
	/* Start the shake animation and make the animation last for 0.5 seconds */
/*	animation: shake 0.3s;*/
	/* When the animation is finished, start again */
	/*animation-iteration-count: infinite;*/
}
 @keyframes shake {
 0% {
transform: translate(1px, 1px) rotate(0deg);
}
 10% {
transform: translate(-1px, -2px) rotate(-1deg);
}
 20% {
transform: translate(-3px, 0px) rotate(1deg);
}
 30% {
transform: translate(3px, 2px) rotate(0deg);
}
 40% {
transform: translate(1px, -1px) rotate(1deg);
}
 50% {
transform: translate(-1px, 2px) rotate(-1deg);
}
 60% {
transform: translate(-3px, 1px) rotate(0deg);
}
 70% {
transform: translate(3px, 1px) rotate(-1deg);
}
 80% {
transform: translate(-1px, -1px) rotate(1deg);
}
 90% {
transform: translate(1px, 2px) rotate(0deg);
}
 100% {
transform: translate(1px, -2px) rotate(-1deg);
}
}
.ebook_section {
	margin: 0px;
	padding: 0px;
	float: left;
	width: 100%;
}
.ebook_section p {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.ebook_section ul {
	text-align: center;
	margin: 41px auto 0 auto;
}
.ebook_section ul li {
	list-style: none;
	margin: 0 11px;
	display: inline-block;
}
.ebook_section ul li img {
	margin: 0 auto;
}









.sec-service {
    padding: 50px 0 80px;
    background: #fafbff;
    float: left;
    width: 100%;
}

.sec-service h4 {
    font-size: 36px;
    color: #000;
    margin-bottom: 15px;
    /* margin-top: -90px; */
}


.sec-service div#carouselExampleIndicators {
    padding: 50px 0 0;
}

.sec-service .carousel-indicators {
left: auto;
    margin-right: 0;
    bottom: 0px;
    float: right;
    right: 0;
    text-align: right;
}

.sec-service .carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: #d9d9d9;
}

.sec-service .carousel-indicators .active {
    background-color: #f15034;
}

.sec-service h1 {
    font-size: 250px;
    color: #f1503421;
    line-height: 190px;
}

.sec-service h4 {
    font-size: 36px;
    color: #000;
    margin-bottom: 15px;
    /* margin-top: -90px; */
}

.button a:first-child {
    background: #0a0a99;
    color: #fff;
}

.button a {
    border-radius: 0px !important;
    padding: 10px 30px;
    float: left;
    transition: all .3s ease-in-out;
    border-radius: 4px;
    background: #232323;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    margin: 30px 15px 0 0;
    position: relative;
    z-index: 99999;
}


.pricing_div{
	    background: #ff581e;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    padding: 5px 12px;
	    text-transform: uppercase;
}


/*types_of_services_box*/
.types_of_services_box h4 {
    color: #000400;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    
}

.types_of_services_box h4 img{
    position: absolute;
    left: -40px;
    top: 0px;
    width: 43px;
	}

.types_of_services_box h4:before {
  /*  content: "\f00c";
    color: #ffd200;
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    left: -20px;
    font-size: 20px;*/
}

.types_of_services_boxes {
    margin: 50px 0 0;
    display: table;
}

.types_of_services_box p {
    color: #666666;
    font-size: 14px;
}



.types_of_services_box {
    width: 93%;
    margin: 0 0 40px;
}

/*Pricing*/

.package_sec {
    background-color: #f1f6fc;
    padding: 50px 0 70px;
}

.packg_boxes {
    margin: 50px 0 0;
}

.packg_head {
    padding: 30px 20px 35px;
    position: relative;
}

.packg_head h3 {
    color: #fff;
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
}

.packg_head h4 {
    position: absolute;
    right: 48px;
    font-size: 28px;
    font-weight: 700;
    background-color: #ffd200;
    color: #222;
    width: 100px;
    height: 100px;
    align-items: center;
    display: flex;
    text-align: center;
    margin: auto;
    border-radius: 50px;
    top: 35px;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
    padding-top: 30px;
}

.packg_body {
    background-color: #fff;
    padding: 60px 15px 40px;
}


.packg_list {
    padding: 0px 0 0px;
    margin: 0;
    min-height: 430px;
}

.packg_list li {
    list-style: none;
    position: relative;
    padding: 0 0 15px 30px;
    color: #666666;
    font-size: 15px;
    font-weight: 500;
}

.packg_list li:before {
    content: "\f00c";
    color: #ffd200;
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    left: 7px;
    font-size: 17px;
    top: 2px;
}

.packg_box_btn {
    display: table;
    margin: auto;
}

.packg_box_btn a {
    display: inline-block;
    margin: 0 5px;
}

.packg_box_num {
    text-align: center;
    margin: 15px 0 0;
}

.packg_box_num a {
    color: #666666;
    text-align: center;
    margin: auto;
    font-size: 16px;
    font-weight: 500;
}

.best_seller_packg .packg_head h4 {
    background-color: #ffd200;
    color: #222;
}

.best_seller_packg .packg_head img {
    position: absolute;
    top: -1px;
    right: -8px;
    width: 93px;
}

/*Prico=ing*/

.sample_slider_box:focus{
	outline: none;
}

/*clickbank_sec*/

.clickbank_sec {
    background-color: #f9f3e5;
    padding: 50px 0 50px;
}

.clickbank_sec.types_of_blogs_sec:before{
	display: none;
}

.clickbank_sec .ebook_section p {
    color: #222;
    margin: 10px 0 0;
}

.clickbank_sec .types_of_services_box h4 {
    color: #000400;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.clickbank_sec .types_of_services_box h4:before {
    content: "\f00c";
    color: #222;
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    left: -10px;
    font-size: 15px;
}


.clickbank_sec .types_of_services_box p {
    color: #444444;
    font-size: 14px;
}



.clickbank_sec .types_of_services_box {
    width: 100%;
    margin: 0 0 20px;
}


.packg_box_btn .btn_blk {
    background-color: #222;
}


.hero_banner .banner_img img {
	animation: lantern 7s infinite;
	animation-timing-function: linear;
}
 @keyframes lantern {
 0% {
 transform: translateY(-1vw)
}
 50% {
 transform: translateY(0vw)
}
 100% {
 transform: translateY(-1vw)
}
}

.hero_banner .banner_img .banner_img_left1{
	animation: lantern1 8s infinite;
	animation-timing-function: linear;
}
 @keyframes lantern1 {
 0% {
 transform: translateX(1vw)
}
 50% {
 transform: translateX(0vw)
}
 100% {
 transform: translateX(1vw)
}

}

.hero_banner .banner_img .banner_img_left3{
	animation: lantern2 8s infinite;
	animation-timing-function: linear;
}
 @keyframes lantern2 {
 0% {
 transform: translateY(1vw)
}
 50% {
 transform: translateY(0vw)
}
 100% {
 transform: translateY(1vw)
}

}


.hero_banner .banner_img .banner_img_right2{
	animation: lantern3 8s infinite;
	animation-timing-function: linear;
}
 @keyframes lantern3 {
 0% {
 transform: translateY(1vw)
}
 50% {
 transform: translateY(0vw)
}
 100% {
 transform: translateY(1vw)
}

}

.hero_banner .banner_img .banner_img_right3{
	animation: lantern4 8s infinite;
	animation-timing-function: linear;
}
 @keyframes lantern4 {
 0% {
 transform: translateX(1vw)
}
 50% {
 transform: translateX(0vw)
}
 100% {
 transform: translateX(1vw)
}

}



/*modal*/
.modal-dialog {
    max-width: 980px;
    width: auto;
    margin: 6% auto 0;
}
.m-main-div {
	/* display: flex; */
	/* align-items: flex-start; */
	/* justify-content: center; */
	/* padding: 0; */
}
.modal-form-div .m-main-div {
	/*display: flex;
	align-items: flex-start;
	justify-content: center;*/
	padding: 0px;
}
.modal-img img {
	width: 100%;
	margin: 15px 0 0;
}
.modal-form-div label {
	margin: 5px 0;
	color: #fff;
}
.form-col-st {
    margin: 0px 0px 15px 20px;
}
.col-form-div-m {
	/* background: #2b388f; */
	/* padding: 50px 40px 10px 40px; */
	/* min-height: 700px; */
	/* margin: 0px 0 0 1px; */
}
a.chat-btn-nav {
	background: #000000;
	padding: 0 20px;
	color: #fff;
	font-size: 16px;
	border-radius: 8px;
	margin: 0px 0 0 10px;
	height: 40px;
	line-height: 38px;
	position: relative;
	top: 25px;
	width: auto;
	text-align: center;
}
.modal-body {
	padding-top: 0;
	padding-bottom: 0;
	padding: 0;
}
.modal-form-div .btn.form-btn {
	height: 55px;
	align-items: center;
	vertical-align: middle;
	display: flex;
	justify-content: center;
	margin-top: 10px;
	position: relative;
}
.modal-form-div .btn.form-btn {
	width: 100%;
	text-transform: uppercase;
	color: #fff !important;
	border-radius: 0;
	background: #0a0a99;
	font-size: 17px;
	font-weight: 700;
	transition-duration: .5s;
}

.modal-form-div .btn.form-btn:hover{
	background-color: #fdd209;
}
.sub-btn-m {
	position: relative;
}
.sub-btn-m:before {
	content: '';
	background: url(../images/modal-mirror.html);
	width: 35px;
	height: 46px;
	background-size: cover;
	position: absolute;
	z-index: 1;
	background-position: 100%;
	right: 55px;
	top: -46px;
}
.modal-form-txt:after {
	content: '';
	background: url(../images/modal-pencil.html);
	width: 68px;
	height: 68px;
	background-size: cover;
	position: absolute;
	z-index: 1;
	background-position: 100%;
	right: 100px;
	top: 70px;
}
.m-main-div .form-control {
	height: 47px;
	border-radius: 0;
}

.m-main-div textarea.form-control {
    height: 120px !important;
}

.modal-form-txt p {
	color: #fff;
	text-align: center;
	margin: 5px 0 50px;
	font-size: 15px;
	font-weight: 500;
}
.modal-form-txt h2 {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 15px;
	text-transform: uppercase;
}
.m-main-div input[type="checkbox"] {
	margin-top: 20px;/* color: #ffff; */
}
.form-col-st.check-txt a {
	color: #fff;
}
.form-col-st.check-txt {
	color: #fff;
}
#Mymodal .modal-header {
	position: absolute;
	width: 100%;
	z-index: 111;
	border: 0;
	top: -37px;
	right: -80px;
	left: 0;
	margin: auto;
	display: table;
	/* bottom: 0; */
}
#Mymodal h5#exampleModalLabel {
	display: none;
}
#Mymodal button.close:focus {
	outline: none;
}
#Mymodal button.close {
	color: #fff;
	opacity: 1;
	border: 0px solid;
	border-radius: 0;
	height: 50px;
	width: 50px;
	background: #0a0a99;
	font-size: 35px;
}
button.close span {
	top: 0;
	position: relative;
	text-align: center;
	align-items: center;
	justify-content: center;
	display: grid;
}
div#Mymodal {
	background: rgba(235, 235, 235, 0.95);
	z-index: 999999;
	top: 0px;
}
.modal-content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	/* flex-direction: column; */
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	outline: 0;
	background-image: url(../images/popup-bg.png);
	background-repeat: no-repeat;
	padding: 50px 0 50px;
	background-size: cover;
}
/*modal*/

/*Side Form*/
.black-layout {
    position: fixed;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
}

.side-bar-sm-frm {
    position: fixed;
    z-index: 999;
    top: 13%;
    right: -432px;
    transition: all 0.4s ease;
    display: none;
}

.side-bar-sm-frm.rght-open.openfrm {
    display: inline-block;
}


.side-body {
    padding: 33px 20px 32px 80px;
    background: #f9f9f9;
    box-shadow: 0 0 10px 2px #00000052;
    width: 431px;
}

.side-body .row {
    margin: 0px;
}

.side-head {
    background: #222;
    color: #FFF;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    position: absolute;
    left: -285px;
    top: 117px;
    margin: auto;
    transform: rotate(-90deg);
    width: auto;
    cursor: pointer;
    height: 65px;
    bottom: 111px;
    z-index: 999;
    border-radius: 41px;
    padding: 2px 70px 10px 30px;
    text-align: center;
}
.side-head strong {
    color: #ffd200;
    font-weight: bold !important;
    font-size: 33px;
}
.side-head span {
    display: inline-block;
    padding: 15px;
    background: #ffd200;
    position: absolute;
    top: 5.5px;
    right: 7px;
    border-radius: 100%;
}

.side-head span i{display: table;margin: 0 0px 0 0;text-align: center;position: relative;left: 0px;/* top: 3px !important; */}

.side-body input[type="submit"] {
    background: #ffd200;
    border: 1px solid #ffd200;
    /* background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left, #56cbf1 0%, #3891ee 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#56cbf1), color-stop(100%,#3891ee));
    background: -webkit-linear-gradient(left, #56cbf1 0%,#3891ee 100%);
    background: -o-linear-gradient(left, #56cbf1 0%,#3891ee 100%);
    background: -ms-linear-gradient(left, #56cbf1 0%,#3891ee 100%);
    background: linear-gradient(to right, #56cbf1 0%,#3891ee 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#56cbf1', endColorstr='#3891ee',GradientType=1 );*/
    display: block;
    padding: 12px 50px;
    border-radius: 32px;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    width: auto;
    min-width: auto;
    margin: 20px 0 0px;
    transition-duration: .5s;
}

.side-body input[type="submit"]:hover {
	background: transparent;
	color: #ffd200;
}


.side-body .field select {
    padding: 0;
    margin-left: 29px;
    width: 91.1%;
    font-weight: normal;
}
.side-body .newcountrycode span {
    top: 18px;
}

.side-bar-sm-frm.rght-open.active {
    right: 0;
    z-index: 11111;
}

.side-bar-sm-frm.rght-open.active i.fa-chevron-up{transform: rotate(180deg);-webkit-transition: all 0.4s ease-In-out;-moz-transition: all 0.4s ease-In-out;-o-transition: all 0.4s ease-In-out;transition: all 0.4s ease-In-out;top: 4px !important;}


.side-bar-sm-frm.lft-open {
    right: initial;
    left: -376px;
}

.side-bar-sm-frm.lft-open .side-head {
    right: -535px;
    width: 296px;
    top: 120px;
    background: #ffae00;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 22px;
    text-transform: capitalize;
    text-align: left;
    padding: 16px 14px;
}

.side-bar-sm-frm.lft-open .side-head i {
    display: inline-block;
    padding: 16px;
    background: #373c33;
    position: absolute;
    top: 0;
    right: 0;
    color: #FFF;
    height: 100%;
    transform: rotate(-180deg);
}

.side-bar-sm-frm.lft-open .side-body {
    padding: 24px 80px 24px 20px;
}

.side-bar-sm-frm.lft-open.active {
    left: 0px;
    z-index: 11111;
}

.side-bar-sm-frm.lft-open.openfrm {
    display: block;
}

.ban-txt a {
    position: relative;
    z-index: 1;
}
.purple-ban-btn {
    position: relative;
    z-index: 1;
    background: #8235b2;
    padding: 14px 28px;
    display: inline-block;
    color: #fff;
    text-align: center;
    font-size: 19px;
    margin-top: 13px;
    border-radius: 5px;
    border: 2px solid #8235b2;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,.24), 0 0 2px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.24), 0 0 2px 0 rgba(0,0,0,.12);
    font-weight: 600;
    margin-top: 20px;
    
    animation-iteration-count: 1;
    animation-name: tada;
    animation-duration: .9s;
    animation-fill-mode: both;
    animation-delay: 1.6s;
}
.purple-ban-btn:hover {
    animation-iteration-count: infinite;
    animation-name: pulse;
    animation-duration: .9s;
    animation-fill-mode: both;
    animation-delay: 0.1s;
}

.side-bar-sm-frm.rght-open .side-body {
    padding: 16px 20px 16px;
    border-radius: 32px;
}

.side-body h5 {
    margin: 0 0 17px;
    font-size: 21px;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 1.2em;
    color: #000;
}
.side-body .field {
        margin-bottom: 6px;
    border: 1px solid #dedede;
}

.side-body .field:last-child{
	border: none;
}

.side-body .field textarea {
    line-height: normal;
    height: 100px;
    padding: 15px;
}

.side-body .field input::placeholder, .side-body .field textarea::placeholder{font-weight: normal;}


.side-body .field input:not([type="submit"]), .side-body .field select, .side-body .field textarea {
    font-size: 14px;
    line-height: 46px;
    height: 46px;
    border: none;
    border-radius: 10px;
    width: 100%;
    color: #6d6d6d;
    padding: 0 15px 0;
    box-shadow: none;
    font-weight: normal;
    /*border: 1px solid #ddd;
    background: #f2f3f5;*/
}
.side-body .field input:not([type="submit"])::placeholder, .side-body .field select::placeholder, .side-body .field textarea::placeholder{
	font-weight: normal;
}
.frmicon-box input#popupcountrycode {
    display: inline-block;
    width: 23%;
    text-align: center;
    vertical-align: top;
    border-right: none;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 0 5px 0 5px;
}
.frmicon-box input#phoneNum2 {
    width: 100%;
    border-left: none;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    /* padding-left: 0; */
}

.ace-rsme-02 h4.mn-h1.style1{padding: 0px 0 18px;}
.ace-rsme-02 h4:before{display: none;}
.ace-rsme-02 p{
	font-size: 16px;
    color: #67707e;
    text-align: center;
}

.side-head h2 {
    margin: auto;
    text-align: center;
    position: relative;
    font-size: 26px;
    left: -5px;
    top: 17px;
}

.side-body select {
    margin: 0 0 0px 0 !important;
}

.side-body  textarea {
    height: 105px !important;
}

.side-head span i.fa.fa-chevron-up {
    top: -4px !important;
}
/* */

/*Side Form*/




.pack-st-spc {
    padding: 0 15px;
}


.package_sec .slick-dots {
    position: absolute;
    bottom: -50px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.package_sec .slick-dots li.slick-active button {
    background-color: #f15034;
}

.package_sec .slick-dots li button:before {
    font-size: 0px;
    line-height: 0px;
}

.package_sec .slick-dots li button {
    background-color: #d9d9d9;
    border-radius: 50px;
    width: 10px;
    height: 10px;
}





@-webkit-keyframes swinging {
 0% {
-webkit-transform: rotate(10deg);
}
 50% {
-webkit-transform: rotate(-5deg)
}
 100% {
-webkit-transform: rotate(10deg);
}
}
 @keyframes swinging {
 0% {
transform: rotate(10deg);
}
 50% {
transform: rotate(-5deg)
}
 100% {
transform: rotate(10deg);
}
}
.summer_sale.chat.live_chatt {
    top: -30px;
    position: absolute;
    left: 6rem;
    width: 131px;
    animation: swinging 3.5s ease-in-out forwards infinite;
    transform-origin: 35% 0;
    cursor: pointer;
    z-index: 9;
}

.packg_head h4 span {
    font-size: 12px;
    position: relative;
    top: -3px;
}


.packg_head h4 del {
    font-size: 14px;
    font-weight: bold;
}

