@font-face {
    font-family: 'FilsonSoftW03';
    src: url('../../fonts/landingPage/FilsonSoftW03-Light.woff2') format('woff2'),
        url('../../fonts/landingPage/FilsonSoftW03-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'FilsonSoftW03';
    src: url('../../fonts/landingPage/FilsonSoftW03-Medium.woff2') format('woff2'),
        url('../../fonts/landingPage/FilsonSoftW03-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'FilsonSoftW03';
    src: url('../../fonts/landingPage/FilsonSoftW03-Bold.woff2') format('woff2'),
        url('../../fonts/landingPage/FilsonSoftW03-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'FilsonSoftW03';
    src: url('../../fonts/landingPage/FilsonSoftW03-Regular.woff2') format('woff2'),
        url('../../fonts/landingPage/FilsonSoftW03-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
*{
	box-sizing: border-box;
}

body{
	margin: 0;
	background: #fbfbfb;
	font-size: 16px;
	line-height: 1.650em;
    color: #444;
    font-family: 'FilsonSoftW03';
	/* font-family: 'Open Sans', sans-serif; */
	min-width: 320px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: none;
}

img{
	max-width: 100%;
	height: auto;
}

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

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

a:focus{
	outline: 0;
}

h1, h2, h3, h4, h5, h6{
	margin-top: 0;
}

p{
	margin-top: 0;
}

header,
footer,
nav,
menu,
article,
section,
aside,
hgroup,
figcaption {
    display: block;
}

input[type="email"],
input[type="tel"],
input[type="search"],
input[type="text"],
input[type="password"],
input[type="file"],
input[type="submit"],
textarea {
    outline: none;
}

.container{
	max-width: 1210px;
	width: 100%;
	margin: 0 auto;
}

.btn-holder .btn{
	font-weight: 700;
    font-size: 37px;
    background: #fac022;
    color: #fff;
    display: block;
    padding: 12px 30px 18px;
    text-align: center;
    line-height: 1.15em;
    -webkit-transition: ease 0.7s;
    -moz-transition: ease 0.7s;
    transition: ease 0.7s;
}

.btn-holder .btn:hover,
.btn-holder .btn:focus{
	text-decoration: none;
	outline: none;
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	transform: scale(1.3);
}


.btn-img-holder .btn img,
.btn-img-holder .btn span {
    text-align: center;
    -webkit-transition: ease 0.7s;
    -moz-transition: ease 0.7s;
    transition: ease 0.7s;
}

.btn-img-holder .btn img:hover,
.btn-img-holder .btn img:focus,
.btn-img-holder .btn span:hover,
.btn-img-holder .btn span:focus {
	text-decoration: none;
	outline: none;
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	transform: scale(1.3);
}


.section-title{
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
	font-size: 32px;
	line-height: 38px;
    position: relative;
    margin: 0 0 30px;
    padding: 0 0 30px;
    text-align: center;
}

.section-title:after{
	position: absolute;
	top: 100%;
	left: 50%;
	width: 50px;
	height: 2px;
	background: #657180;
	content: '';
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
}

.editable-btn {
    display: none;
}

.editIcon {
    display: none;
    position: absolute;
    z-index: 1;
}

/*===================================
 Header Style
===================================*/
#header{
	box-shadow: 0 0 2px 1px rgba(0,0,0,0.1);
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 11;
	-webkit-transform: translateY(-100px);
	-moz-transform: translateY(-100px);
	transform: translateY(-100px);
	-webkit-transition: ease-in-out 0.6s;
	-moz-transition: ease-in-out 0.6s;
	transition: ease-in-out 0.6s;
}

#header.open{
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
}

#header .container{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.logo{
	width: 160px;
  position: relative;
}

.logo img{
	vertical-align: top;
}

.logo:hover .editable-btn,
.logo-alternate:hover .editable-btn {
    display: block;
}

.nav-holder{
	display: flex;
	flex-wrap: wrap;
}

.main-navigation{
	padding-right: 25px;
	margin-right: 25px;
	border-right: 1px solid #e1e1e1;
	display: flex;
	height: 100%;
}

.main-navigation ul{
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.main-navigation ul li{
	margin-left: 30px;
}

.main-navigation ul li:first-child{
	margin-left: 0;
}

.main-navigation ul li a{
	color: #889095;
	display: block;
}

.main-navigation ul li a:hover,
.main-navigation ul li a:focus,
.main-navigation ul .current-menu > a{
	color: #55606e;
	text-decoration: none;
}

.main-navigation ul li .btn-signup{
	text-transform: uppercase;
	background: #55606e;
	padding: 7px 11px;
	color: #fff;
}

.main-navigation ul li .btn-signup:hover{
	background: #66707d;
	color: #fff;
}

#header .social-link{
	align-self: center;
}

#header .social-link li a{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	width: 30px;
	height: 30px;
	font-size: 14px;
}

#header .social-link li a:hover,
#header .social-link li a:focus{
	text-decoration: none;
}


/*============================
 Banner Style
============================*/
.banner{
	padding: 50px 0;
	/*background: url(../images/img1.jpg) no-repeat;
	background-size: cover;*/
	height: 980px;
	position: relative;
}

.banner-new:before{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	content: '';
	z-index: -1;
}

.banner .container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 100%;
}

.banner .left{
	/* width: 60%; */
	width: 55%;
    margin-right: 5%;
}

.banner .right{
	width: 40%;
}

.banner .right .holder{
	background: rgba(73,79,81,0.8);
    padding: 20px;
    border-radius: 3px;
    color: #fff;
}

.banner .video-holder{
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
	margin: 0 0 20px;
}

.banner .right  .text strong {
	font-size: 19px;
}

.banner .video-holder iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
}

.banner .btn-holder{
	margin: 20px;
}

.btn-img-holder {
  z-index: 0;
  position: relative;
}

.banner .btn-holder .btn{
	font-weight: 700;
    font-size: 37px;
    padding: 12px 30px 18px;
    text-align: center;
    line-height: 1.15em;
}

.banner:hover .editable-btn {
    display: block;
    /*z-index: -1; */
    background: transparent;
}

 .editable-btn-banner.editable-btn .editable-btn-icon {
   position: absolute;
   top: 50%;
   left: 0;
 }

.banner .btn-scroll-down{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
    width: 80px;
    position: absolute;
    left: 50%;
    bottom: 0;
    color: #fff;
    text-align: center;
    font-size: 75px;
    text-decoration: none;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
    -webkit-animation: scroll-down 2s ease-in-out infinite;
    animation: scroll-down 2s ease-in-out infinite;
}

@-webkit-keyframes scroll-down {
  0%   { -webkit-transform:translate(0,-20px); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { -webkit-transform:translate(0,20px); opacity: 0; }
}
@keyframes scroll-down {
  0%   { transform:translate(0,-20px); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { transform:translate(0,20px); opacity: 0; }
}


.primary-title {
	font-size: 81px;
    line-height: 1;
    letter-spacing: 2px;
}

.secondary-title {
	font-size: 55px;
    letter-spacing: 2px;
	line-height: 1;
	color: #fff;
}

.videoEditButton {
	z-index: 10;
	position: relative;
	display: none;
}

.video-holder:hover .videoEditButton {
	display: block;
}

/*=========================
 Features Style
========================*/
.features{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.features .col:first-child,
.features .col:last-child{
	width: 40%;
	padding: 30px;
}

.features .col{
	padding: 40px 0 0;
	width: 20%;
}

.features .features-item {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 50px;
	position: relative;
}
/*
.features .features-item:hover:after {
	position: absolute;
	content: "\f00d";
	font: normal normal normal 14px/1 FontAwesome;
	color: red;
}
*/

.features .features-item:last-child{
	margin: 0;
}

.features .col:first-child .features-item{
	flex-direction: row-reverse;
}

.features .features-item .icon-holder{
	width: 74px;
	height: 74px;
	border: 1px solid #e1e1e1;
	color: #11202a;
	border-radius: 50%;
	margin-right: 22px;
	font-size: 27px;
	display: flex;
	justify-content: center;
	align-items: center;
  position: relative;
}

.features .col:first-child .features-item .icon-holder{
	margin-right: 0;
	margin-left: 22px;
}

.features .features-item .text-holder{
	flex-basis: 0;
	flex-grow: 1;
}

.features .col:first-child .features-item .text-holder{
	text-align: right;
}

.features .features-item .text-holder .features-title{
	font-size: 20px;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #11202a;
	font-weight: 600;
	margin: 0 0 10px;
}

.editable-btn-icon {
    text-transform: uppercase;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #fac022;
    color: #fff;
    border:0;

}

.features .img-col {
  position: relative;
}

.editable-btn {
    position: absolute;
    top: 0;
    background: #000;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    opacity: 0.8;
    margin: 0 auto;
    text-align: center;
    padding: 15px 0;
}

.editable-btn-icon i {
  font-size: 20px;
}

.features .img-col .editable-btn, {
  display: none;

}
.features .img-col:hover .editable-btn,
.features .icon-holder:hover .feature-icon-edit-btn {
  display: block;
}


/*=============================
 Testimonial Style
=============================*/
.testimonials {
	background: #494f51;
    padding: 130px 0;
}

.testimonials .section-title{
	color: #fff;
}

#testimonials-slider .item{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 100px;
}

#testimonials-slider .testimonial-holder{
	text-align: center;
	font-size: 1.3em;
	color: #a7abb1;
	margin: 0 0 20px;
	line-height: 1.850em;
}

#testimonials-slider .testimonial-cite{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

#testimonials-slider .testimonial-cite .img-holder{
	width: 80px;
	margin-right: 15px;
}

#testimonials-slider .testimonial-cite .img-holder img{
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
}

#testimonials-slider .testimonial-cite .testimonial-meta{
	flex-basis: 0;
	flex-grow: 1;
	color: #fff;
}

#testimonials-slider .name{
	display: block;
	font-size: 1.2em;
	font-weight: 600;
}

#testimonials-slider .designation{
	font-size: 0.8em;
	color: #a7abb1;
}

#testimonials-slider .designation a{
	color: #fff;
}

#testimonials-slider .owl-prev{
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}

#testimonials-slider .owl-next{
	right: 0;
	position: absolute;
	top: 50%;
	font-size: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}

#testimonials-slider .owl-prev:focus,
#testimonials-slider .owl-next:focus{
	outline: none;
}

#testimonials-slider .owl-prev:focus:before,
#testimonials-slider .owl-next:focus:before,
#testimonials-slider .owl-prev:hover:before,
#testimonials-slider .owl-next:hover:before{
	opacity: 0.7;
}

#testimonials-slider .owl-prev:before{
	position: absolute;
	top: 50%;
	left: 50%;
	content: '\e761';
	font-family: 'entypo';
	color: #fff;
	font-size: 70px;
	opacity: 0.1;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: ease 0.2s;
	-moz-transition: ease 0.2s;
	transition: ease 0.2s;
}

#testimonials-slider .owl-next:before{
	position: absolute;
	top: 50%;
	left: 50%;
	content: '\e762';
	font-family: 'entypo';
	color: #fff;
	font-size: 70px;
	opacity: 0.1;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: ease 0.2s;
	-moz-transition: ease 0.2s;
	transition: ease 0.2s;
}

#testimonials-slider:hover .owl-prev:before,
#testimonials-slider:hover .owl-next:before{
	opacity: 0.5;
}
.testimonialEditVideo {
	max-width: 695px;
	margin: 0 auto;
}
.testimonialEditVideo>button{
	position: absolute;
	display: none;
}

.video-testimonial-new:hover .testimonialEditVideo>button{
	display: block;
}

/*===============================
 Signup Process Style
================================*/
.signup-process{
	padding: 130px 0 250px;
	min-height: 860px;
    position: relative;
    /*background: url(../frontend/images/bg-img-2.jpg) no-repeat;
	background-size: cover; */
}

.signup-process:before{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(87, 89, 112, 0.5);
	content: '';
}

.signup-process:after {
    content: '';
    position: absolute;
    left: 50%;
    width: 50px;
    height: 50px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    top: -39px;
    background: #494f51;
}

.signup-process .section-title {
	color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 32px;
    line-height: 1.650em;
    position: relative;
    margin: 0 0 30px;
    padding: 0 0 30px;
    text-align: center;
}

.signup-process .section-title:after {
    height: 0;
}
.signup-process .btn-holder {
    position: absolute;
    z-index: 1;
    margin: 0 auto 100px;
    left: 0;
    right: 0;
    width: 320px;
}

.journey-list{
	margin: 0;
	padding: 0;
	list-style: none;
	color: #fff;
}

.journey-list li{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 0 60px;
	position: relative;
}

.journey-list li:after{
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	border-left: 1px dashed #fff;
	content: '';
}

.journey-list li:last-child:after{
	display: none;
}

.journey-list .icon-wrap{
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: #fac022;
	color: #fff;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	position: relative;
	z-index: 1;
}

.journey-list .title{
	text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 28px;
    padding-right: 60px;
    margin: 0;
    flex-basis: 0;
    flex-grow: 1;
    position: relative;
}

.journey-list li:nth-child(odd) .title{
	text-align: right;
}

.journey-list li:nth-child(even){
	flex-direction: row-reverse;
}

.journey-list li:nth-child(even) .title{
	padding-right: 0;
	padding-left: 60px;
}

.journey-list .title span{
	position: absolute;
    width: 30px;
    height: 1px;
    right: 0;
    top: 50%;
    background: #fac022;
}

.journey-list li:nth-child(even) .title span{
	right: inherit;
	left: 0;
}

.journey-list .title span:after{
	content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fac022;
    margin-top: -2px;
    left: 0;
}

.journey-list li:nth-child(even) .title span:after{
	left: auto;
	right: 0;
}

.journey-list .description{
	flex-basis: 0;
	flex-grow: 1;
    padding-left: 60px;
    color: #fff;
}

.journey-list li:nth-child(even) .description{
	text-align: right;
	padding-left: 0;
	padding-right: 60px;
}

/*===============================
	FAQ
================================*/

.faq-block {
    padding: 100px;
    background: #fff;
}

.faq-block .section-title {
	color: #11202a;
}

.faq-block .two-col {
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.faq-block .two-col .faq-block-detail {
    width: 47%;
}

.faq-block-detail {
 margin-bottom: 40px;
}


/*===============================
	ACCORDION STYLE
================================*/

   .accordion {
	font-size: 18px;
	color: #55606e;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: all 0.4s ease;
	list-style-type: none;
  }

  .accordion .link {
	cursor: pointer;
	display: block;
	background-color: #fcfcfc;
	/* background: pink; */
	padding: 15px 15px 15px 42px;
	margin-bottom: 7px;
	color: #4D4D4D;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
  }

  .accordion .open .link {
	  margin-bottom: 0;
  }

  .accordion li:last-child .link { border-bottom: 0; }

  .accordion li i {
	position: absolute;
	top: 16px;
	left: 12px;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-size: 16px;
	font-weight: bold;
	color: #e1e1e1;
  }

  .accordion li i.fa-chevron-down {
	right: 12px;
	left: auto;
	font-size: 16px;
  }

  .accordion li.open .link { color: #79828c; }

  .accordion li.open i { ccolor: #79828c; }

  .accordion li.open i.fa-chevron-down {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
  }

  /*---------------Submenu--------------*/

  .submenu {
	display: none;
	font-size: 15px;
	letter-spacing: 1px;
	background-color: #fcfcfc;
	/* background: pink; */
	list-style: none;
	margin-bottom: 7px;
	position: relative;
	padding: 0;
  }

  .submenu:before {
	position: absolute;
	background: #e1e1e1;
	height: 1px;
	top: 0;
	width: 100%;
	content: '';
}

.submenu li {
	padding: 30px 37px 11px 37px;
}

  .submenu a {
	/* display: block;
	text-decoration: none;
	color: #d9d9d9;
	padding: 12px;
	padding-left: 42px;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease; */
	text-decoration: none;
  }

  .submenu .btn-img-holder {
    margin: 40px auto 15px;
    /*width: 300px;*/
    text-align: center;
}

/*===============================
 	SIGN UP NOW Style
================================*/

.sign-up-now {
    background: #fac022;
    padding: 50px 0;
    text-align: center;
    position: relative;
    -webkit-transition: ease 0.35s;
    -moz-transition: ease 0.35s;
    transition: ease 0.35s;
}

.sign-up-now:hover,
.sign-up-now:focus{
	background: #e29b1f;
}

.sign-up-now-new {
	text-align: center;
	position: relative;
	padding: 120px 0 90px;
}

.sign-up-now-new:after {
	content: '';
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;

}
.sign-up-now:before,
.sign-up-now-new:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 50px;
    height: 50px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    top: -39px;
	background: #fff;
	z-index: 1;
}

.sign-up-now a {
    color: #fff
}

.sign-up-now p {
    font-size: 16px;
}

.sign-up-now a:hover,
.sign-up-now a:focus  {
    text-decoration: none;
    outline: none;
}

span.sign-up {
    font-size: 25px;
}

span.sign-up .text-holder{
	display: inline-block;
	-webkit-transition: ease 0.35s;
	-moz-transition: ease 0.35s;
	transition: ease 0.35s;
}

span.sign-up .icon-mail{
	width: 0;
	opacity: 0;
	-webkit-transition: ease 0.35s;
	-moz-transition: ease 0.35s;
	transition: ease 0.35s;
}

.sign-up-now:hover .icon-mail,
.sign-up-now:focus .icon-mail{
	width: inherit;
	opacity: 1;
}

.sign-up-now:hover .text-holder,
.sign-up-now:focus .text-holder{
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	transform: translateX(10px);
}

.sign-up-now-new .logo-alternate {
    /* width: 300px; */
	margin: 0 auto;
	position: relative;
  padding-top: 35px;
	z-index: 1;
}

.sign-up-now-new .btn-img-holder {
	position: relative;
	z-index: 1;
}

.footerBannerEditButton {
	z-index: 10;
	position: absolute;
	left: 0;
	display: none;
}

.sign-up-now-new:hover .footerBannerEditButton {
	display: block;
}


/*===============================
 Footer Style
================================*/

.footer {
    padding: 20px 0;
    background: #36393d;
    color: #a7abb1;
}
.footer-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.copyright {
	align-content: flex-start ;
	font-size: 14px;
}
.social-link {
    list-style: none;
    margin: 0;
    padding: 0;
    align-content: flex-end;
}

.social-link li {
    display: inline-block;
}

.social-link li a {
    color: #a7abb1;
    font-size: 11px;
    padding: 10px;
}

.social-link li a:hover {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    color: #fff;
}

.social-link li a.twitter-icon:hover {
    background: #46d4fe;
}

.social-link li a.facebook-icon:hover {
    background: #37589b;
}

.social-link li a.instagram-icon:hover {
    background: #a67658
}
.social-link li a.youtube-icon:hover {
    background: #a72b1d;
}

.social-link li a.linkedin-icon:hover {
    background: #419cca;
}

.mobile-menu,
.btn-menu-opener{
	display: none;
}

.parallax-slider{
	width: 100% !important;
	vertical-align: top;
	left: 0 !important;
	object-fit: cover;
}

.overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 1;
	z-index: 2;
	background: rgba(0, 0, 0, 0.1);
	-webkit-transition: ease 0.35s;
	-moz-transition: ease 0.35s;
	transition: ease 0.35s;
}

body.menu-open .overlay{
	opacity: 1;
	visibility: visible;
}

.disable-scroll{
	overflow-y: hidden;
}

#to-top {
	background-color: #36393d;;
	border: 1px solid #45494d;
	opacity:0.7;
	height: 50px;
	width: 50px;
	border-radius: 2px;
    line-height: 50px;
    text-decoration: none;
	text-align: center;
	position: fixed;
    right: 50px;
    bottom: 50px;
	z-index: 1030;
	transition: all 0.3s ease-out;
	display: none;
}

#to-top a {
	display: block;
}

#to-top a i {
	font-size: 18px;
	color: #a7abb1
}

#to-top:hover {
	background-color: #fcfcfc;
    border: 1px solid #e1e1e1;
}

#to-top:hover a i {
	color: #fac022;
}

/*===============================
 MODAL BOX Style
================================*/

.modal-header {
    padding: 25px 15px;
    border-bottom: 1px solid #e5e5e5;
    background: #ffd215;
    color: #232729;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    margin-top: -8px;

}
.modal {
   position: fixed;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   z-index: 1050;
   box-shadow: 0 1px 0 (0,0,0,0.8);
   display: none;
   background-color: rgb(0,0,0);
   background-color: rgba(0,0,0,0.5);
   overflow: hidden;
   -webkit-overflow-scrolling: touch;
   outline: 0;
   border: 1px solid #000;
}
.modal-body {
    position: relative;
    padding: 15px;
    text-align: center;
    background: #fff;
}

.error-img img {
    margin: 0 auto 20px;
}

.modal-content {
   position: relative;
   background-color: #fff;
   -webkit-background-clip: padding-box;
   background-clip: padding-box;
   border: 1px solid #999;
   border: 1px solid rgba(0,0,0,.2);
   border-radius: 6px;
   outline: 0;
   box-shadow: 0 5px 15px rgba(0,0,0,.5);
}

.modal-dialog {
   position: relative;
   width: auto;
   margin: 10px;
}

/*===============================
Feature PartnerStyle
================================*/

.feature-partner {
	margin-bottom: 55px;
}

.feature-partner-new {
	margin-bottom: 0;
}

.feature-partner-new .col.img-col {
    margin-bottom: -8px;
}
/*===============================
VIDEO TESTIMONIAL Style
================================*/

.video-testimonial {
	text-align: center;
	color: #a7abb1;
}

.video-testimonial  h2.section-title {
	padding: 0;
	margin-bottom: 10px;
}
.video-testimonial  h2.section-title:after {
	height: 0;
}

.video-testimonial p {
	margin-bottom: 15px;
}

.video-testimonial iframe {
	width: 695px;
	height: 410px;
	border: 0;
}

.video-testimonial-new {
	position: relative;
}
.video-testimonial-new:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 50px;
    height: 50px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    bottom: -10px;
    background: #494f51;
}

.video-upload-text {
	font-size: 20px;
	line-height: 1;
    display: block;
}

/*===============================
 Price Style
================================*/

.price {
    background: #fac022;
    padding: 50px 0;
    text-align: center;
    position: relative;
    -webkit-transition: ease 0.35s;
    -moz-transition: ease 0.35s;
    transition: ease 0.35s;
}
.price:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 50px;
    height: 50px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    top: -39px;
    background: #494f51;
}

.price-title {
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #11202a;
}


/*===============================
 Exclusive Offer Style
================================*/

.exclusive-offer  {
    /* background: #fac022; */
    padding: 50px 0;
    text-align: center;
    position: relative;
    -webkit-transition: ease 0.35s;
    -moz-transition: ease 0.35s;
	transition: ease 0.35s;
	font-size: 15px;
	color: #707061;
}

.exclusive-offer-title {
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #11202a;
}

/*===============================
	Training Pricing Style
================================*/
.training-pricing {
	padding: 130px 0;
	min-height: 860px;
    position: relative;
}

.training-pricing:before{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	content: '';
}

.training-pricing .section-title {
	color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 27px;
    line-height: 1.650em;
    position: relative;
    margin: 0 0 30px;
    padding: 0 0 30px;
    text-align: center;
}

.training-pricing .section-title:after {
	height: 0;
}

.training-pricing .btn-holder {
    position: relative;
    z-index: 1;
    margin: 50px auto;
    left: 0;
    right: 0;
    width: 320px;
}

.training-pricing .btn-img-holder {
    position: relative;
    z-index: 1;
    margin: 50px auto;
    left: 0;
	right: 0;
	text-align: center;
}

.training-pricing .btn-holder a {
	font-size: 30px;
}

.training-pricing .logo-alternate {
    text-align: center;
    position: relative;
    z-index: 0;
}

.table-wrap {
	text-align: center;
	position: relative;
	z-index: 0;
	margin-bottom: 30px;
}

.table-head {
	/* background-color: #fbd133; */
    color: #fff;
	border-color: #fce244;
	padding: 15px 12px;
	border-top-left-radius: 3px;
    border-top-right-radius: 3px;
	margin: 0 10px 15px -7px;
}

.table-head h3.table-title {
	padding: 0;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.table-head h3.new-title {
	color: #11202a;
	margin-bottom: 10px;
}

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

.table-content ul li {
	border: 1px solid #e1e1e1;
	padding: 9px 12px;

}
.table-content ul li:nth-child(odd) {
	color: #889095;
	background: #fff;
}

.table-content ul li:nth-child(even) {
	background:#fcfcfc;
}

.logo-alternate {
	text-align: center;
	position: relative;

	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.logo-alternate-img {
    width: 135px;
	height: 135px;
	margin: 0 auto;
}

.logo-alternate-img img {
	width: 135px;
    height: 135px;
    object-fit: contain;
}

.alternate-width {
	max-width: 600px;
	margin: 0 auto 15px;
}

.changing-logo-img {
    flex-basis: 0;
    flex-grow: 1
}


.detail-block-holder {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
	justify-content: center;

}

.detail-block {
	/* border: 1px solid #EDECED;
	border-radius: 2px;
	background-color: #fff;
	box-shadow: inset 0 -1px 0 0 #F6F6F6, 0 2px 4px 0 rgba(0, 0, 0, 0.2); */
	/* display: flex; */
	flex-wrap: wrap;
	margin-bottom: 10px;
	width: 48%;
	box-sizing: border-box;
	margin-right: 15px;
}

.detail-block .img-holder {
	width: 110px;
	height: 90px;
	margin-right: 10px;
	display: flex;
	flex-wrap: wrap;
}

.detail-block .img-holder img {
	height: 100%;
	width: 100%;
	object-fit: cover;

}

.detail-info {
	padding: 5px 5px;
	flex-basis: 0;
	flex-grow: 1;
}

h3.block-title {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: normal;
	color: #000;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.grey-small {
	font-size: 12px;
	letter-spacing: 0.5px;
	color: #9b9b9b;
	display: block;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.grey-big {
	font-size: 14px;
	letter-spacing: 0.2px;
	color: #9b9b9b;
	display: block;
	text-transform: capitalize;
	margin-bottom: 5px;
}
.detail-block-holder {
	 display: flex;
	 flex-wrap: wrap;
	 margin: 0 -15px;
	 justify-content: center;

 }

 .detail-block-wrap {
	 display: flex;
	 margin-bottom: 10px;
	 background: #fff;
 }

.detail-block .img-holder {
	width: 110px;
	height: 90px;
	margin-right: 10px;
	display: flex;
	flex-wrap: wrap;
}

.detail-block .img-holder img {
	height: 100%;
	width: 100%;
	object-fit: cover;

}

.detail-info {
	padding: 5px 5px;
	flex-basis: 0;
	flex-grow: 1;
}

h3.block-title {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: normal;
	color: #000;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.grey-small {
	font-size: 12px;
	letter-spacing: 0.5px;
	color: #9b9b9b;
	display: block;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.grey-big {
	font-size: 14px;
	letter-spacing: 0.2px;
	color: #9b9b9b;
	display: block;
	text-transform: capitalize;
	margin-bottom: 5px;
}
.trainingBannerEditButton {
	position: absolute;
	z-index: 10;
	left: 0;
	display:none;
}
.training-pricing:hover .trainingBannerEditButton {
	display: block;
}

.detail-block-description {
    padding: 10px 18px;
    background: #f1f1f1;
	margin-bottom: 8px;
	text-align: justify;
	display: none;
}

.detail-block-description p {
	margin:0;
}

.detail-block-wrap [class^="icon-"] {
	font-size: 20px;
    font-weight: 800;
    margin-top: 4px;
}
/*===============================
	Training Pricing NEW Style
================================*/

.detail-block-holder {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
	justify-content: center;

}

.detail-block .img-holder {
	width: 100px;
	height: 100px;
	margin-right: 10px;
	display: flex;
	flex-wrap: wrap;
}

.detail-block .img-holder img {
	height: 100%;
	width: 100%;
	object-fit: cover;

}

.detail-info {
	padding: 5px 5px;
	flex-basis: 0;
	flex-grow: 1;
	text-align: left;
}

h3.block-title {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: normal;
	color: #000;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.grey-small {
	font-size: 12px;
	letter-spacing: 0.5px;
	color: #9b9b9b;
	display: block;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.grey-big {
	font-size: 14px;
	letter-spacing: 0.2px;
	color: #9b9b9b;
	display: block;
	text-transform: capitalize;
	margin-bottom: 5px;
}

/*===================================
 Sign Up Form Style
===================================*/

.signup-form .modal-header {
	padding: 15px;
	text-transform: uppercase;
}

.signup-form .modal-header  .modal-close {
	margin-top: 0;
}

.signup-form .modal-header  .modal-close:focus {
	outline: none;
}

.signup-form .form-group-holder {
	margin-bottom: 15px;
	display: flex;
    flex-wrap: wrap;
    vertical-align: top;
}

.signup-form .form-group-holder input {
	padding: 6px 12px;
	width: 97%;
}
.signup-form .form-holder {
	display: inline-block;
	width: calc(100% - 185px);
}

.signup-form .form-group-holder label {
	text-align: right;
    width: 145px;
    display: inline-block;
    margin-right: 30px;
}
.signup-form .btn-holder {
	/* text-align: center; */

	display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-right: 16px;
}

.signup-form .signup-btn {
	background: #fac022;
    color: #fff;
	display: block;
    font-size: 20px;
    padding: 6px 12px;
    /* text-align: center; */
	line-height: 1.15em;
	border: 0;
	/* margin: 0 auto; */
	-webkit-transition: ease 0.7s;
    -moz-transition: ease 0.7s;
    transition: ease 0.7s;
}

.signup-form .signup-btn:hover,
.signup-form .signup-btn:focus,
.signup-form .signup-btn:visited {
    text-decoration: none;
    outline: none;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
	transform: scale(1.3);
	cursor: pointer;
}

.signup-form .error-msg {
	font-size: 12px;
	color: red;
	margin-left: 5px;
}

.contenteditable-placeholder {
    color: #979797;
    opacity: 1;
}

.contenteditable-required {
  background-color: yellow;
}

.demo-wrap.upload-demo .actions {
  margin-bottom: 15px;
}

.upload-result {
    text-transform: uppercase;
    background: #55606e;
    padding: 7px 11px;
    border-radius: 0;
    letter-spacing: 2;
    color: #fff;
}

p.heading.lead {
    display: inline-block;
    text-transform: uppercase;
    font-size: 20px;
    margin: 0;
}


/*===============================
Query form style
================================*/

.query-form {
	max-width: 800px;
	margin: 0 auto;
	z-index: 1;
	margin-top: 50px;
	position: relative;
}
.query-form .query-form-header {
	padding: 15px;
	text-align: center;
	text-transform: uppercase;
	background: #f7c035;
	font-size: 20px;
	line-height: 1;
}

.query-form form {
	padding: 15px;
	background: #fff;
}

.query-form form textarea {
	resize: none;
	width: 97%;
	min-height: 100px;

}

/*===============================
Toggle Style
================================*/
.toggle-btn {
  text-align: right;
  margin-bottom: 15px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 22px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch:focus {
    border: 0;
    outline: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: #fbc036;
}
input:focus + .slider {
  box-shadow: 0 0 1px #fbc036;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

/*===============================
 Modal box Style
================================*/
.term-details {
    overflow-y: scroll;
    height: 500px;
}

.term-details label {
    text-transform: capitalize;
    margin-top: 15px;
}

.terms-n-conditions-holder .modal-header {
    text-align: center;
    padding-top: 30px;
}

.terms-n-conditions-holder .modal-header h2 {
    font-size: 26px;
    font-weight: normal;
}
.terms-n-conditions-holder .modal-header .close {
    position: absolute;
    top: 0;
    right: 10px;
    margin: 0;
}

.terms-n-conditions-holder .modal-header .white-text {
    font-size: 30px;
}

.terms-n-conditions-holder .term-details ol h4 {
    margin-bottom: 15px;
}

.terms-n-conditions-holder .term-details ol li {
    margin-bottom: 10px;
}

.terms-n-conditions-holder .modal-body {
	text-align: inherit;
}
/*=================START BTN=====================*/
.start-btn {
	background: #f9c122;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    padding: 15px;
    webkit-transition: ease 0.7s;
    -moz-transition: ease 0.7s;
    transition: ease 0.7s;
}
.start-btn h5,
.start-btn h5:focus,
.start-btn h5.cke_focus {
  display: inline;
}
.start-btn:hover {
	text-decoration: none;
	webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	transform: scale(1.3);
}

.submenu .start-btn {
	padding: 10px;
}
.submenu .start-btn:hover {
	padding: 15px;

}

.custom-button {
  max-width: 405px;
  margin: 0 auto 15px;

}

.custom-button a {
  color: #fff;
}

/*===============================
 MEDIA Style
================================*/

@media only screen and (max-width: 1240px){
	.container{
		padding: 0 15px;
	}

	.banner .btn-holder .btn {
		font-size: 20px;
	}
}

@media only screen and (max-width: 991px){
	#header{
		position: unset;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		transform: translateY(0);
	}

	.main-navigation{
		border-right: 0;
		padding-right: 0;
		margin-right: 35px;
	}

	.main-navigation ul{
		display: none;
	}

	.nav-holder{
		position: relative;
	}

	.main-navigation{
		min-width: 35px;
	}

	.btn-menu-opener{
		display: flex;
		flex-direction: column;
		justify-content: center;
		position: absolute;
		top: 50%;
		left: 0;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.btn-menu-opener span{
		display: block;
		width: 35px;
		background: #889095;
		height: 3px;
		margin-bottom: 5px;
	}

	.btn-menu-opener span:last-child{
		margin-bottom: 0;
	}

	.mobile-menu{
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		max-width: 550px;
		width: 100%;
		height: 100%;
		overflow-y: auto;
		background: #fff;
		z-index: 10;
		padding: 10px 0;
		-webkit-transform: translateX(600px);
		-moz-transform: translateX(600px);
		transform: translateX(600px);
		opacity: 0;
		-webkit-transition: ease 0.35s;
		-moz-transition: ease 0.35s;
		transition: ease 0.35s;
	}

	body.menu-open .mobile-menu{
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}

	.mobile-menu .btn-close{
		position: absolute;
		top: 30px;
    	right: 40px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.mobile-menu .btn-close span{
		display: block;
		width: 35px;
		background: #889095;
		height: 3px;
	}

	.mobile-menu .btn-close span:first-child{
		-webkit-transform: rotate(90deg) translateX(3px);
		-moz-transform: rotate(90deg) translateX(3px);
		transform: rotate(90deg) translateX(3px);
	}

	.mobile-menu ul{
		margin: 0;
		padding: 0;
		list-style: none;
		font-size: 16px;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		align-items: flex-start;
		height: 100%;
		/*justify-content: center;*/
		margin-top: 60px;
	}

	.mobile-menu ul li{
		/*margin-bottom: 30px;*/
		padding: 15px 50px;
	}

	.mobile-menu ul li:first-child{
		margin-left: 0;
	}

	.mobile-menu ul li a{
		color: #889095;
		display: block;
	}

	.mobile-menu ul li a:hover,
	.mobile-menu ul li a:focus,
	.mobile-menu ul .current-menu > a{
		color: #55606e;
		text-decoration: none;
	}

	.mobile-menu ul li .btn-signup{
		text-transform: uppercase;
		background: #55606e;
		padding: 7px 11px;
		color: #fff;
	}

	.mobile-menu ul li .btn-signup:hover{
		background: #66707d;
		color: #fff;
	}

	.training-pricing,
	.video-testimonial-new,
	.sign-up-now-new,
	.faq-block {
		padding: 50px 15px;
	}
}

@media only screen and (max-width: 768px) {
    .banner {
        height: auto;
    }

    .banner .left,
    .banner .right {
        width: 100%;
    }

    .features .col:first-child,
    .features .col:last-child {
        width: 100%;
    }

    .features .col.img-col {
        width: 100%;
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
        text-align: center;
	}

	.journey-list .title {
		font-size: 18px;
	}

    .journey-list .title span,
    .journey-list li:nth-child(even) .title span:after,
    .journey-list li:nth-child(odd) .title span:after {
        display: none;
    }

    .journey-list .icon-wrap {
        height: 64px;
        width: 64px;
        top: -45px;
        left: 0;
    }

    .journey-list li {
        display: inherit;
    }

    .journey-list li:after {
        left: 32px;
    }

	.journey-list li:nth-child(odd) .title,
	.journey-list li:nth-child(odd) .description,
	.journey-list li:nth-child(even) .title,
	.journey-list li:nth-child(even) .description {
        padding-right: 0;
        padding-left: 85px;
        text-align: inherit;
	}

	.signup-process .btn-holder {
		width: auto;
		padding: 0 50px;
	}

	.signup-process .btn-holder .btn {
		font-size: 37px;
	}

    .faq-block {
        padding: 30px 15px 15px;
    }
    .faq-block .two-col .faq-block-detail {
        width: 100%;
    }
    .features .features-item{
    	margin: 0 0 20px;
	}

	.banner .btn-holder .btn {
		font-size: 37px;
	}

	.signup-form .form-group-holder label {
		width: inherit;
	}

	.video-testimonial iframe {
		width: 100%;
		height: auto;
	}

}

@media (min-width: 768px){
	.modal-dialog {
	   width: 600px;
	   margin: 30px auto;
	}
}

.modal-banner-dialog{
  width: 1000px;

}

@media only screen and (max-width: 500px) {
	#header .social-link {
		display: none;
	}

	.banner .btn-holder .btn,
	.signup-process .btn-holder .btn {
		font-size: 21px;
	}

	.banner {
        padding: 30px 0;
    }

    .primary-title {
        font-size: 55px;
    }

    .secondary-title {
        font-size: 45px;
    }

	.features .features-item .text-holder {
		flex-basis: inherit;
		flex-grow: inherit;
	}

	.signup-process {
		padding-bottom: 130px;
	}

	#testimonials-slider .item {
		padding: inherit;
	}

	.video-testimonial iframe {
		width: 100%;
	}
	.features .features-item .icon-holder{
		margin: 0 auto 15px;
	}
	.features .col:first-child .features-item .icon-holder {
		margin: 0 auto 15px;
	}

	.features .col:first-child .features-item .text-holder,
	.features .features-item .text-holder {
		text-align: center;
	}

	.detail-block {
		margin-right: 0;
		width: 100%;
	}

	.table-head {
		margin: 0 0 15px;
	}

 	.start-btn,
	.start-btn:hover,
	.start-btn:focus {
		font-size: 25px;
		padding: 15px;
	}

	.accordion .start-btn,
	.accordion .start-btn:hover,
	.accordion .start-btn:focus  {
		font-size: 15px;
		padding: 4px;
	}

	.footer {
		text-align: center;
	}
	.footer-holder {
		display: inherit;
		flex-wrap: inherit;
		justify-content: inherit;
	}
}
