/**
 * Name: layout.css
 *
 *	=Wrap
 *	=Header
 *	=Logo
 *	=Menu
 *	=Mobile Menu
 * 	=Mobile menu trigger
 * 	=Buy Button
 * 	=Sticky Header
 * 	=Content
 * 	=Page Header
 * 	=Footer
 * 	=Footer Bottom
 *	=Back to top 
 *
 */
 @font-face {
  font-family: 'estre';
  src: url('/layout/css/fonts/estre.eot'); /* IE9 Compat Modes */
  src: url('/layout/css/fonts/estre.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/layout/css/fonts/estre.woff2') format('woff2'), /* Super Modern Browsers */
       url('/layout/css/fonts/estre.woff') format('woff'), /* Pretty Modern Browsers */
       url('/layout/css/fonts/estre.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('/layout/css/fonts/estre.svg#svgFontName') format('svg'); /* Legacy iOS */
}
@font-face {
  font-family: 'Raleway';
  src: url('/layout/css/fonts/Raleway-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Raleway';
  src: url('/layout/css/fonts/Raleway-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Raleway';
  src: url('/layout/css/fonts/Raleway-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Raleway';
  src: url('/layout/css/fonts/Raleway-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Lato';
  src: url('/layout/css/fonts/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

 
/* ==========================================================================
   =Wrap
   ========================================================================== */

	#wrap {
		position: relative;
		background-color: #fff;
	}
	
	@media (max-width: 767px) {

		#wrap {}

	}
   
/* ==========================================================================
   =Header 
   ========================================================================== */
   	
	#header {
		margin: 0 auto; 
	}
	
/* ==========================================================================
   =Logo
   ========================================================================== */
   
	#logo {  
		padding: 20px 0 23px 0;
	}
	
	/**
	 * 1. displaying the <a> inline-block makes it depends on the size of it's children
	 *    we add max-width:100% to tell it not that it shouldn't extend beyond the size of it's
	 *    parent if it's child is very large eg a 1000x1000 logo img
	 */
	
	#logo a {
		display: inline-block;
		max-width: 100%; /* 1 */
	}
	
	#logo img { display: block; }	
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		#logo { padding-top: 30px; }
		
	}
	
	@media (max-width: 767px) {

		/**
		 * 1. on mobile devices logo padding right needs to be the width of the
		 *	  mobile menu trigger + some spacing so as to not let the logo <a>
		 *    overlap the mobile menu trigger
		 */
	
		#logo {
			padding-top: 30px;  
			padding-right: 50px; /* 1 */
		}
		
	}
	
/* ==========================================================================
   =Menu 
   ========================================================================== */

/* =Menu Basics
   ========================================================================== */
   
	.sf-menu,
	.sf-menu ul {
		padding: 0;
		margin: 0;
		list-style: none;
	}
	
	.sf-menu > li { float: left; }

	.sf-menu > li > a {
		position: relative;
		display: block;
	}
	
	/**
 	 * 1. z-index is 1025 because the sticky menu is 1020
 	 */
	
	.sf-menu .sf-mega,
	.sf-menu li.dropdown ul {
		position: absolute;
		z-index: 1025; /* 1 */
		top: 100%;
		left: 0;
		display: none;
	}
	
	.sf-menu li.dropdown { position: relative; }
	
	.sf-menu li.dropdown ul ul {
		top: -16px;
		left: 100%;
	}
	
	.sf-menu li:hover > .sf-mega,
	.sf-menu li.sfHover > .sf-mega,
	.sf-menu li.dropdown:hover > ul,
	.sf-menu li.dropdown.sfHover > ul { display: block; }

/* =Menu Skin
   ========================================================================== */
	
	.sf-menu {
		position: relative;
		float: right;
		padding-right: 200px;
		margin-top: 22px;
	} 
	
	.sf-menu a {
		display: block;
		padding: 10px 0;
		color: #7b868c; 
		font: 14px 'Raleway', Arial, sans-serif;
		font-weight: 700;	
		text-decoration: none;
	}
	
	.sf-menu li.dropdown a { padding: 8px 20px; }
	
	.sf-menu > li > a,
	.sf-menu > li.dropdown > a {
		padding: 10px 15px 32px;
		border: none;
		color: #7b868c;
		font-size: 14px;
	}
	
	.sf-menu > li a i { margin-right: 5px; }
	
	.sf-menu > li.current > a { position: relative; }
	
	.sf-menu > li > a:before { 
		position: absolute;
		top: 50%;
		right: 0;
		left: 0;
		display: block;
		width: 25px;
		border-top: 1px solid transparent;
		margin: 3px auto 0 auto;
		content: "";
		-webkit-transition: border-top-color 0.3s;
				transition: border-top-color 0.3s;
	}
	
	.sf-menu > li > a:hover:before,
	.sf-menu > li.current > a:before,
	.sf-menu li.sfHover > a:before { border-top-color: #007FC5; }

/* =DropDown
   ========================================================================== */
	
	/**
 	 * 1. allow long menu items to determine submenu width
 	 */
	
	.sf-menu li.dropdown ul {
		min-width: 190px; /* 1 */
		padding: 15px 0;
		border: 1px solid rgba(0, 0, 0, 0.1);	
		background-color: #fff;			
	}
	
	.sf-menu li.dropdown ul:before {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 75px;
		border-top: 2px solid #007FC5;
		content: "";
	}
	
	.sf-menu li.dropdown ul a:hover,
	.sf-menu li.dropdown ul li.dropdown.sfHover > a { color: #007FC5; }
		
/* =Mega Menu Section
   ========================================================================== */
	
	.sf-mega {
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 20px 0;
		border: 1px solid rgba(0, 0, 0, 0.1);
		background-color: #fff;
	}

	.sf-mega-section {
		float: left;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 20px;
	}

	/**
 	 * 1. set mega menu section size, as a percentage of the mega menu width
 	 */
	
	.sf-mega.sf-mega-1-col .sf-mega-section{ width: 100%; } /* 1 */
	
	.sf-mega.sf-mega-2-col .sf-mega-section{ width: 50%; }
	
	.sf-mega.sf-mega-3-col .sf-mega-section{ width: 33.3333333333%; }
	
	.sf-mega.sf-mega-4-col .sf-mega-section{ width: 25%; }
	
	.sf-menu .sf-mega:before {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 75px;
		border-top: 2px solid #007FC5;
		content: "";
	}
	
	.sf-mega ul li a:hover { color: #007FC5; }
	
/* =Menu Arrows
   ========================================================================== */
	
	.sf-arrows .sf-with-ul:after {
		position: absolute;
		top: 16px;		
		right: 0;
		display: none;
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-top-color: #d7d7d7;
		content: "";
	}
		
	.sf-arrows > li > .sf-with-ul:focus:after,
	.sf-arrows > li:hover > .sf-with-ul:after,
	.sf-arrows > .sfHover > .sf-with-ul:after { border-top-color: rgba(0, 0, 0, 0.7); }
		
	.sf-arrows ul .sf-with-ul:after {
		top: 50%;
		display: block;
		border-color: transparent;
		border-left-color: #d7d7d7;
		margin-top: -5px;
		margin-right: 10px;
	}
	
	.sf-arrows ul li > .sf-with-ul:focus:after,
	.sf-arrows ul li:hover > .sf-with-ul:after,
	.sf-arrows ul .sfHover > .sf-with-ul:after { border-left-color: rgba(0, 0, 0, 0.7); }
	
	@media (min-width: 768px) and (max-width: 991px) {

		#menu { display: none; }

	}
	
	@media (max-width: 767px) {

		#menu { display: none; }
	
	}
	
/* ==========================================================================
   =Mobile Menu 
   ========================================================================== */
			
	#mobile-menu {
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: 0;
	}
	
	#mobile-menu li {	
		display: block;
		margin: 0;
	}
		
	#mobile-menu > li > ul, 
	#mobile-menu > li > ul > li > ul {
		display: none;
		margin-left: 0;
	}
	
	#mobile-menu .sf-mega {
		display: none;
		padding: 0;
		border: none;
		margin: 0;
		background: #fff;
	}
	
	#mobile-menu .sf-mega-section {
		float: none;
		width: 100%;
		padding: 0;
		border: none;
	}
	
	#mobile-menu .sf-mega-section ul { margin-left: 0; }

	#mobile-menu li a {
		position: relative;
		display: block;
		padding: 15px 25px;
		border-top: 1px solid #d7d7d7;
		color: #28353e;
		font-size: 13px;
		text-align: left;
		text-decoration: none;
	}
	
	#mobile-menu ul a { padding-left: 45px; }
	
	#mobile-menu ul li ul a  { padding-left: 65px; }
	
	#mobile-menu .mobile-menu-submenu-arrow {
		position: absolute;
		top: 0;
		right: 0;
		width: 70px;
		height: 100%;
		border-left: 1px solid #d7d7d7;
		color: #28353e;
		font-size: 20px;
		line-height: 50px;
		text-align: center;
		cursor: pointer;
	}
	
	#mobile-menu .mobile-menu-submenu-arrow:hover { background-color: #f3f3f3; }
	
	#mobile-menu li a:hover {}
	
	#mobile-menu { display: none; }

/* ==========================================================================
   =Mobile menu trigger
   ========================================================================== */
				
	#mobile-menu-trigger { 
		float: right;
		display: none;
		font-size: 32px;
	}

	@media (min-width: 768px) and (max-width: 991px) {

		#mobile-menu-trigger { 
			display: block;
			margin-top: 28px;
			margin-right: 0;
		}	

	}

	@media (max-width: 767px) {

		#mobile-menu-trigger { 
			position: absolute;
			top: 23px;
			right: 15px;
			display: block;
			padding: 10px;
			margin-top: 0;
		}

	}

	@media only screen and (min-width: 480px) and (max-width: 767px) {

		#mobile-menu-trigger {  }
	
	}		
		
/* ==========================================================================
   =Buy Button 
   ========================================================================== */
	
	#buy-button { 
		position: absolute;
		z-index: 1;
		top: 22px;
		right: 15px;
		margin-right: 0;
		font-size: 13px;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		#buy-button {
			top: 25px;
			right: 75px; 
		}
		
	}
	
	@media (max-width: 767px) {
		
		#buy-button { display: none; }
		
	}

/* ==========================================================================
   =Sticky Header
   ========================================================================== */

	@media (min-width: 1025px) {
		
		/**
		 * 1. The height of the #header-wrap can be increased or decreased to accommodate the logo
		 */
		 
		#header-wrap {
			position: relative;
			height: 80px; /* 1 */
		}
		
		#header {
			position: absolute;
			top: 0; 					
			right: 0;
			left: 0;
			margin: 0 auto; 
			
		}
		
		/**
		 * 1. The z-index has to be 1020 so it is bigger than the back to top buttons z-index that is 1010
		 */
		
		#header.stuck {
			position: fixed;
			z-index: 1020; /* 1 */
			top: 0;
			width: 100%;
			padding: 5px 0 0 0;
			box-shadow: 0 3px 10px #d7d7d7;
			margin: 0 auto;
			background-color: rgba(255, 255, 255, 1);
			-webkit-transition: padding 0.3s;
					transition: padding 0.3s;
		}
		
		#header.stuck #logo { padding: 3px 0 3px 0; }
		
		#header.stuck .sf-menu { margin-top: 17px; }
		
		#header.stuck .sf-menu > li > a,
		#header.stuck .sf-menu > li.dropdown > a { padding: 10px 15px 32px; }
		
		#header.stuck #buy-button { top: 17px; }		
	
	}
	
/* ==========================================================================
   =Content
   ========================================================================== */
   	
	#content { padding-bottom: 40px; }

/* ==========================================================================
   =Page Header
   ========================================================================== */
   	
	#page-header {
		padding: 35px 0;
		border-top: 1px solid #d7d7d7;
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: 100px;
		background: no-repeat center center;
	}
	
	#page-header p {
		margin-bottom: 0;
		text-align: right;
	}
	
	@media (max-width: 767px) {
		
		#page-header p { text-align: left; }
		
	}
   
/* ==========================================================================
   =Footer
   ========================================================================== */		
	
	#footer { padding-top: 30px; }
	
	#footer-widget-area-1 {}
	#footer-widget-area-2 {}
	#footer-widget-area-3 {}
	#footer-widget-area-4 {}
	
/* ==========================================================================
   =Footer Bottom
   ========================================================================== */	
  
	#footer-bottom { padding-bottom: 60px; }
	
	#footer-bottom-widget-area-1 {}
	#footer-bottom-widget-area-2 {}
	
/* ==========================================================================
   =Back to top
   ========================================================================== */

	#back-to-top {
		position: fixed;
		z-index: 1010;
		right: -48px;
		bottom: 20px;
		width: 48px;
		height: 48px;
		border-radius: 50%;
		background-color: #28353e;
		color: #fafafa;
		font-size: 30px;
		text-align: center;
		text-decoration: none;					
		opacity: 0.5;
		cursor: pointer;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	#back-to-top i {
		font-size: 28px;
		line-height: 48px;
		font-weight: normal;
		vertical-align: top;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	#back-to-top:hover { background-color: rgba(0, 0, 0, 0.7); }
	#back-to-top:hover i { color: #fff; }
	#back-to-top.visible { right: 40px; }
	#back-to-top.gone { right: -48px; }	







.sf-menu > li > a, .sf-menu > li.dropdown > a {
    padding: 10px 15px 32px;
    border: medium none;
    color: #171717;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



#logo {
    padding: 10px 0px 23px;
}

#buy-button {
    position: absolute;
    z-index: 1;
    top: 22px;
    right: 15px;
    margin-right: 0px;
    font-size: 18px;
}

#try-button {
	font-size: 18px;
}


/* 09.08.2016 */
.header_new .buy-button{
    background: #0082cd;
    border: 0;
}
.header_new .sf-menu a{
    font-weight: 400;
}
.header_new .sf-menu {
    padding-right: 130px;
}    
.header_new .btn{
    border: 0;
    padding: 8px 20px;
}
.header_new #buy-button{
    font-size: 16px;
    top: 25px;
}
.header_new .btn:hover{
    background: #269ee4;
    border-radius: 30px;
}
.header_new #logo {
    padding: 14px 0 23px 0;
}
.content_new .slider-revolution.fullwidthbanner-container{
    border-top: 1px solid #ececec;
}
.caption.start h2{
    text-transform: none;
    font-size: 46px;
}
.content_new .info-box{
    background: #f8f9fb;
}
.content_new .t_11{
    font-size: 40px;
    color: #fff;
    margin-bottom: 60px;
    margin-top: 40px;
    font-family: 'Raleway';
    line-height: 1.0;
}
.content_new .advanced_b{
    background: #f8f9fb !important;
}
.content_new .advanced_1{
    font-size: 24px;
    color: #333;
    margin: 30px 0;
    background: url(/layout/images/gear_icon.jpg) no-repeat 0 0;
    padding: 4px 0 4px 55px;
    line-height: 1.0;
}
.content_new .advanced_2{
    float: right;
    font-size: 20px;
    color: #333;
}
.content_new .advanced_2 .btn{
    padding: 10px 25px;
    font-size: 20px;
    margin-top: 15px;
    margin-left: 20px;
    border: 0;
    border-radius: 40px;
}
.content_new .advanced_2 .btn:hover{
    border-radius: 40px;
    background: #269ee4;
}
.content_new .bg_gap{
    padding: 40px 0;
}
.content_new .step_b{
    text-align: left;
    font-size: 24px;
    color: #333; 
    padding-bottom: 40px; 
    border-left: 2px solid #aedcef;
    margin-left: 20px;
    padding-left: 50px;
}
.content_new .step_b:nth-child(5){
    padding-bottom: 0;
    border: 0;    
}
.content_new .step_b .step_circle{
    color: #a1d7ec;
    font-size: 22px;
    border-radius: 30px;
    border: 2px solid #a1d7ec;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 1.7;
    margin-left: -74px;
    margin-top: -10px;
    background: #fff;
    float: left;
}
.content_new .steps_b h2{
    text-align: left;
    margin-bottom: 35px;
}
.content_new .who_uses_b{
    padding: 80px 0 80px 0;
}
.content_new .who_uses_b h2{
    margin-bottom: 60px;
}
.content_new .who_uses_b .icon_b{
    width: 25%;
    float: left;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    padding: 100px 0 0 0;
}
.content_new .who_uses_b .icon_b:nth-child(2){
    background: url(/layout/images/who_icon_1.jpg) no-repeat center 0;  
}
.content_new .who_uses_b .icon_b:nth-child(3){
    background: url(/layout/images/who_icon_2.jpg) no-repeat center 0;  
}
.content_new .who_uses_b .icon_b:nth-child(4){
    background: url(/layout/images/who_icon_3.jpg) no-repeat center 0;  
}
.content_new .who_uses_b .icon_b:nth-child(5){
    background: url(/layout/images/who_icon_4.jpg) no-repeat center 0;  
}
.content_new .advanced_b .row{
    margin: 0 100px 40px 100px;
}
.content_new .steps_b .row{
    margin: 20px 100px 0 100px;
}
.content_new .about_b .row{
    margin: 0 100px;
}
strong{
	font-family: 'Raleway';
}
.about_b{
    padding: 50px 0 0 0;
    font-size: 20px;
    color: #333;
    line-height: 1.5;
    text-align: center;
}
.about_b h2{
    margin-bottom: 30px;
}
.footer{
    border-top: 4px solid #f7f9fb;
}
.footer ul{
    list-style: none;
    margin-top: 10px;
}
.footer .col_1{
    width: 20%;
    float: left;
    color: #333;
    font-size: 18px;
    margin: 20px 0 20px 0;
    text-align: left;
}
.footer .col_1 a{
    font-size: 16px;
}
.footer .col_2{
    width: 20%;
    float: left;
    color: #333;
    font-size: 18px;
    margin: 20px 0 20px 0;
    text-align: left;
}
.footer .col_2 a{
    font-size: 16px;
}
.footer .col_3{
    width: 20%;
    float: left;
    color: #333;
	font-size: 18px;
	margin: 20px 0 20px 0;
	text-align: left;
}
.footer .col_3 ul li{
	font-size: 14px;
}
.footer .col_4{
    width: 40%;
    float: left;
    color: #333;
    font-size: 15px;
    text-align: right;
    margin: 30px 0 20px 0;
}
.footer .col_4 a{
    font-size: 15px;
}
.policy_link{
    display: block;
    margin-top: 10px;
}
.footer_logo:hover{
    text-decoration: none;
}
.content_new .tp-bullets.simplebullets.round .bullet{
    background: #e1eef4;
    width: 10px;
    height: 10px;
}
.content_new .tp-bullets.simplebullets.round .bullet.selected {
    background: #0082cd;
}
.content_new .tp-bullets.simplebullets.round .bullet{
    margin: 0 5px;
}
#back-to-top div{
    background: url(/layout/images/top_arrow.png) no-repeat 0 0;
    width: 25px;
    height: 14px;
    display: inline-block;
    margin-top: 15px;
}
#mobile-menu-trigger{
    width: 28px;
    height: 23px;
    background: url(/layout/images/menu_switcher.png) no-repeat 0 0;
    top: 30px;
}
#mobile-menu li {
    background: #007fc5;
}
#mobile-menu li a {
    color: #fff;
    font-size: 20px;
    border-top: 1px solid #2ca0e0;
}

@media only screen and (min-width: 240px) and (max-width: 767px) {
    .caption.start h2{
        font-size: 16px;
	line-height: 1.2;
    }
    .content_new .who_uses_b .icon_b {
        width: 100%;
	margin-bottom: 50px;
    }
    .footer .col_1{
        width: auto;
	float: none;
	margin-left: 30px;
	margin-bottom: 40px;
    }
    .footer .col_2{
        width: auto;
	float: none;
	margin-left: 30px;
	margin-bottom: 40px;
    } 
    .footer .col_3{
        width: auto;
	float: none;
	margin-left: 30px;
	text-align: left;
    } 
    .content_new .advanced_b .row{
        margin: 0 30px 40px 30px;
    }
    .content_new .steps_b .row{
        margin: 20px 30px 0 30px;
    }
    .content_new .about_b .row{
        margin: 0 30px;
    }
    .content_new .advanced_2 .btn{
        margin-left: 0;
    }
    #menu {
        display: none;
    } 
    #mobile-menu-trigger{
        display: block;
    }
    .sf-menu li.dropdown:nth-child(3){
        display: block;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .caption.start h2{
        font-size: 34px
    }
    .content_new .advanced_b .row{
        margin: 0 30px;
    }
    .content_new .steps_b .row{
        margin: 0 30px;
    }
    .content_new .about_b .row{
        margin: 0 30px;
    }
    #menu {
        display: block;
    } 
    #mobile-menu-trigger{
        display: none;
    }
    .sf-menu li.dropdown:nth-child(3){
        display: none;
    }
}
@media only screen and (min-width: 1024px) {
#header.header_new.stuck{
    position: fixed;
    z-index: 1020;
    top: 0;
    width: 100%;
    padding: 10px 0 0 0;
    box-shadow: none;
    border-bottom: 1px solid #ececec;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: padding 0.3s;
    transition: padding 0.3s;
    height: 60px;
}
#header.header_new.stuck .sf-menu {
    margin-top: 7px;
}
#header.header_new.stuck #buy-button {
    top: 7px;
}
    .sf-menu li.dropdown:nth-child(3){
        display: none;
    }
}

span.pm3{
	font-family: 'Rajdhani', sans-serif;
	color:#007fc5;
	font-weight:700;
	font-size:1.15em;
	font-style:italic;
	letter-spacing: -0.09em;
	display:inline-block;
	margin-right:4px;
}
span.pm3 span{
    color:#333;
}
span.pm3.white{
    color:#fff;
}
span.pm3.white span{
    color:#fff;
}