/*----------------------------------------------------------------- 
[Table of Contents]

1. RESET
2. GENERAL
	2-1 HEADINGS
3. HEADER
4. SECTION
5. GRID
	5.1 GRID ELEMENTS
6. BUTTONS
7. CUSTOM SECTIONS 
	7.1 CUSTOM SECTION - INTRO
	7.2 CUSTOM SECTION - ABOUT	
	7.3 CUSTOM SECTION - FEATURES
	7.4 CUSTOM SECTION - TESTIMONIALS 
	7.5 CUSTOM SECTION - PRICING 
	7.6 CUSTOM SECTION - CTA 
	7.7 CUSTOM SECTION - HOW IT WORKS (HIW)
	7.8 CUSTOM SECTION - SUPPORT
	7.9 CUSTOM SECTION - CLIENTS
	7.10 CUSTOM SECTION - CONTACT
	7.11 CUSTOM SECTION - LOGIN/SIGNUP MODAL
	7.12 CUSTOM SECTION - FAQ
8. FOOTER
9. MEDIA QUERIES
*/
/*===============================================*/
/* 1. RESET		 						 */
/*===============================================*/
@import "css/reset.css";
/*===============================================*/
/* 2. GENERAL		 						 */
/*===============================================*/	
html, body{
	width: 100%; 
	height:100%;
}
body{
	font-family: 'Source Sans Pro', sans-serif;
	padding:0;
	font-size:16px;
	margin:0 auto;
	color:#000;
	background-color:#fff;
	font-weight:400;
}
.clear{
	clear:both;
}
p{
	padding:0;
	margin:0px;
	line-height:26px;
}
a{
	text-decoration:none;
	color:#38cbdd; 
}
blockquote{
	font-style:italic;
	font-size:24px;
	padding:0 5%;
	margin:40px 0 60px 0;
	line-height:34px;
	position:relative;
	text-align:center;
}
blockquote:after {
    content:' ';
    position: absolute;
    display:block;
    width: 10%;
    margin: 20px 40%;
    border:1px solid #e76b71;
} 
a img{
	border:none;
}
a:hover{
	text-decoration:none;
	color:#212121;
}
img.responsive_image{
	max-width:100%;
	display:block;
	margin:auto auto 20px auto;
}
/*---------------------------*/
/* 2-1. HEADINGS             */
/*---------------------------*/	
h1, h2, h3, h4, h5, h6{
	font-weight:700;
	letter-spacing:-0.5px;
	padding:0 0 40px 0;
	margin:0;
}
h1{
	font-size:40px;
}
h2{
	font-size:30px;
}
h3{
	font-size:22px;
}
h4{
	font-size:20px;
}
h5{
	font-size:18px;
}
h6{
	font-size:16px;
}
/*===============================================*/
/* 3. HEADER 	 						 */
/*===============================================*/
/* BLOCK - header */
.header{
	width:100%;
	height:70px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	position: fixed;
	top: 0px;
	left:0px;
	z-index: 999;
	padding-top: 30px;
    padding-bottom: 30px;
}
/* MODIFIER - header */
.header--sticky{
	background-color:#ffff;
    box-shadow: 0 4px 10px 0px rgba(0,0,0,0.03);
    -moz-box-shadow: 0 4px 10px 0px rgba(0,0,0,0.03);
    -webkit-box-shadow: 0 4px 10px 0px rgba(0,0,0,0.03);
}
/* ELEMENT - header__content */
.header__content{
	height:70px;
}
/* ELEMENT MODIFIER - header__content */
.header__content--fix-width{
	width:1240px;
	margin:auto;
	clear:both;
}
.header__content--fluid-width{
	width:80%;
	margin:auto;
	clear:both;
}
.header__logo-title{
	color:#fff;
	font-size:26px;
	letter-spacing:-1px;
	position:relative;
	float:left;
	top: 50%;
	left:0;
	transform: translateY(-50%);
	z-index:999;
}
.header--sticky .header__logo-title, .header--page .header__logo-title, .menu-open .header__logo-title{
	color:#000;
	filter: invert(1);
}
.header__logo-title span{
	font-weight:700;
}
/* ELEMENT - header__menu */
.header__menu {
  float:right;
}
.header__menu ul,
.header__menu ul li,
.header__menu ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  float:left;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
}
.header__menu:after,
.header__menu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.menu-button {
  width:28px;
  height:20px;
  position: absolute;
  padding: 0px;
  font-size:20px;
  top: 10px;
  right: 9%;
  z-index:99999;
  display: none;
  cursor:pointer;
  border-bottom:1px solid #fff;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
}
.menu-button:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 28px;
  height: 6px;
  z-index:999;
  border-top: 1px double #fff;
  border-bottom: 1px solid #fff;
}
.header__menu > ul > li {display:inline-block; padding:0; }
.header__menu > ul > li > a {
    height:70px;
	line-height:70px; 
	color:#fff; 
	font-size:20px;
	display:inline-block;
	letter-spacing: 0.5px;
	padding:0 10px; 
	margin:0;
	font-weight:400;
	overflow: hidden;
}
.header--sticky .header__menu > ul > li > a, .header--page .header__menu > ul > li > a {
	color:#000; 
}
.header--sticky .menu-button, .menu-open .menu-button{
	border-bottom:1px solid #000;
}
.header--sticky .menu-button:before, .menu-open .menu-button:before{
	border-bottom:1px solid #000;
	border-top: 1px double #000;
}
.header__menu > ul > li.header__btn > a {
    height:32px;
	line-height:30px; 
	-webkit-border-radius: 25px; 
	-moz-border-radius: 25px; 
	border-radius: 25px; 
	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}
.header__menu > ul > li.header__btn--signup > a { 
	color:#fff; 
	background-color:#d3c484;
	padding:0 22px; 
	margin:19px 0 0 25px;
	border:1px #d3c484 solid;
}
.header__menu > ul > li.header__btn--login > a {
	color:#38cbdd; 
	padding:0 22px; 
	margin:19px 0 0 25px;
	border:1px #38cbdd solid;
}
.header__menu ul li.header__btn--signup > a:hover{
	background-color:transparent; 
	border:1px #d3c484 solid;
	color:#d3c484;
}
.header__menu ul li.header__btn--login > a:hover{
	background-color:#38cbdd; 
	color:#fff;
}
.header__menu ul li  a:hover, .header__menu ul li a.selected , .header__menu ul li a.active{
	color: #d3c484;
}
.header__menu ul li.header__btn--signup a.active { 
	color:#fff; 
}
.header__menu ul li.header__btn--login a.active {
	color:#fff; 
}
.header--sticky .header__menu ul li.header__btn--login a.active {
	color:#38cbdd; 
}
.header__menu ul li:hover{
	cursor:pointer;
}
.header__menu > ul > li.menu-item-has-children > a{
	background:url(images/drop-down.png) no-repeat 90% 50%;
}
.header__menu ul ul {
  position: absolute;
  left: 0px;
  top:55px;
  z-index:9999;
  visibility: hidden;
  text-align:left;
  padding:5px 0;
  background-color:#fff;
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.10);
  -moz-box-shadow:    0px 0px 10px 1px rgba(0,0,0,0.10); 
  box-shadow:         0px 0px 10px 1px rgba(0,0,0,0.10);
  -webkit-border-radius: 5px; 
  -moz-border-radius: 5px; 
  border-radius: 5px;  
  opacity:0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.header__menu ul ul.submenu-header-sticky{
    box-shadow: 0 4px 10px 0px rgba(0,0,0,0.03);
    -moz-box-shadow: 0 4px 10px 0px rgba(0,0,0,0.03);
    -webkit-box-shadow: 0 4px 10px 0px rgba(0,0,0,0.03);
   border-top-left-radius:0px;
   border-top-right-radius:0px;
   -webkit-border-top-left-radius:0px;
   -webkit-border-top-right-radius:0px;
}
.header__menu li:hover > ul {   
	visibility: visible;
	opacity: 1;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	top:70px;
}
.header__menu ul ul ul {
  margin-left: 100%;
  top: 0;
}
.header__menu ul ul li a {
  width:200px;
  padding:0 15px;
  color:#231f20;   
  border-bottom:1px #f7f8f9 solid;
  margin:0 10px;
  font-size:14px;
  line-height:45px; height:45px;
}
.header__menu ul ul li a:hover{ color: #d3c484; }
.header__menu ul ul li:last-child a {
 border-bottom:none; 
 }
/*===============================================*/
/* 4. SECTION 	 						 */
/*===============================================*/
/* BLOCK - section */
.section{
	width:100%;
	height:auto;
	float:left;
	clear:both;
}
/* BLOCK MODIFIER - section--page */
.section--page-top{
	padding-top:80px;
}
.section--page-bottom{
	padding-bottom:80px;
}
/* ELEMENT - section__content */
.section__content{
	clear:both;
}
/* ELEMENT MODIFIER section__content  */
.section__content--fix-width{
	width:1240px;
	margin:auto;
	clear:both;
}
.section__content--fluid-width{
	width:80%;
	margin:auto;
	clear:both;
}
.section__content--padding{
	padding:100px 0 200px;
}
/* ELEMENT - section__title */
.section__title{
	font-size:48px;
	padding:0 0 40px 0;
	font-weight:700;
	line-height:52px;
}
/* ELEMENT MODIFIER section__title  */
.section__title--centered{
	width:100%;
	text-align:center;
	position:relative;
}
.section__title--centered:after {
    content:'';
    position:absolute;
    left:0;right:0;
    top:80%;
    margin:auto;
    width:50px;
    height:1px;
    background:#454545;
}

/* ELEMENT - section__description */
.section__description{
	font-size:18px;
	line-height:32px;
}
/* ELEMENT MODIFIER section__description  */
.section__description--centered{
	width:60%;
	margin:auto;
	text-align:center;
	padding:0 0 80px 0;
}
/*===============================================*/
/* 5. GRID 	 						 */
/*===============================================*/

/* BLOCK - grid */
.grid{
	width:100%;
	float:left;
	clear:both;
}
.grid__item--padding{
	 background-color:#f7f8f9;
}
.grid__item--centering{
	text-align:center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

/* -----------------------------------------------------  */
 /* ELEMENT grid__item BASED ON BLOCK MODIFIER grid--2col  */
.grid--2col .grid__item{
	 float:left;
	 margin-right:80px;
	 margin-bottom:80px;
	           /* full width - space between cols / number of cols */
	 width: calc((100% - 80px) / 2); 
}
.grid--2col .grid__item--padding{
	          /* full width - space between cols - padding * nr of paddings / number of cols */
	 width: calc((100% - 80px - 20px * 4) / 2);
	 padding:20px;
}
.grid .grid__item:last-child, 
.grid--2col .grid__item:nth-child(2n+2){
	/** float:right;**/
	 margin-right:0px;
}
/* -----------------------------------------------------  */
/* ELEMENT grid__item BASED ON BLOCK MODIFIER grid--3col  */
.grid--3col .grid__item{
	 float:left;
	 margin-right:80px;
	 margin-bottom:80px;
	          /* full width - space between cols * nr of inner spaces / number of cols */
	 width: calc((100% - 80px * 2) / 3);
}
.grid--3col .grid__item.grid__item--padding{
	         /* full width - space between cols * nr of inner spaces - padding * nr of paddings / number of cols */
	 width: calc((100% - 80px * 2 - 20px * 6) / 3);
	 padding:20px;
 }
.grid--3col .grid__item--x2{
	          /*(      one grid item    ) * 2 + space between cols */
	 width: calc((((100% - 80px * 2) / 3) * 2) + 80px);
}
 .grid--3col .grid__item--x2.grid__item--padding{
	
	         /*   (    one grid item with padding  ) * 2 + space between cols + padding */
	 width: calc((((100% - 80px * 2 - 20px * 6) / 3) * 2) + 80px + 20px * 2);
	 padding:20px;
}
.grid--3col .grid__item:nth-child(3n+3){
	 float:right;
	 margin-right:0px;
}
/* -----------------------------------------------------  */
/* ELEMENT grid__item BASED ON BLOCK MODIFIER grid--4col  */
.grid--4col .grid__item{
	 float:left;
	 margin-right:80px;
	 margin-bottom:80px;
	          /* full width - space between cols * nr of inner spaces / number of cols */
	 width: calc((100% - 80px * 3) / 4);
}
.grid--4col .grid__item.grid__item--padding{
	         /* full width - space between cols * nr of inner spaces - padding * nr of paddings / number of cols */
	 width: calc((100% - 80px * 3 - 20px * 8) / 4);
	 padding:20px;
 }
.grid--4col .grid__item--x3{
	          /*(      one grid item    ) * 3 + space between cols */
	 width: calc((((100% - 80px * 3) / 4) * 3) + 80px * 2);
}
 .grid--4col .grid__item--x3.grid__item--padding{
	
	         /*   (    one grid item with padding  ) * 3 + space between cols + padding */
	 width: calc((((100% - 80px * 3 - 20px * 8) / 4) * 3) + 80px * 2 + 20px * 4);
	 padding:20px;
}
.grid--4col .grid__item:nth-child(4n+4){
	 float:right;
	 margin-right:0px;
}
/* -----------------------------------------------------  */
/* ELEMENT grid__item BASED ON BLOCK MODIFIER grid--5col  */
.grid--5col .grid__item{
	 float:left;
	 margin-right:80px;
	 margin-bottom:80px;
	          /* full width - space between cols * nr of inner spaces / number of cols */
	 width: calc((100% - 80px * 4) / 5);
}
.grid--5col .grid__item.grid__item--padding{
	         /* full width - space between cols * nr of inner spaces - padding * nr of paddings / number of cols */
	 width: calc((100% - 80px * 4 - 20px * 10) / 5);
	 padding:20px;
 }
 .grid--5col .grid__item--x2{
	          /*(      one grid item    ) * 2 + space between cols */
	 width: calc((((100% - 80px * 4) / 5) * 2) + 80px);
}
 .grid--5col .grid__item--x2.grid__item--padding{
	
	         /*   (    one grid item with padding  ) * 2 + space between cols + padding */
	 width: calc((((100% - 80px * 4 - 20px * 10) / 5) * 2) + 80px + 20px * 2);
	 padding:20px;
}
 .grid--5col .grid__item--x3{
	          /*(      one grid item    ) * 3 + space between cols */
	 width: calc((((100% - 80px * 4) / 5) * 3) + 80px * 2);
}
 .grid--5col .grid__item--x3.grid__item--padding{
	
	         /*   (    one grid item with padding  ) * 3 + space between cols + padding */
	 width: calc((((100% - 80px * 4 - 20px * 10) / 5) * 3) + 80px * 2 + 20px * 4);
	 padding:20px;
}
 .grid--5col .grid__item--x4{
	          /*(      one grid item    ) * 4 + space between cols */
	 width: calc((((100% - 80px * 4) / 5) * 4) + 80px * 3);
}
 .grid--5col .grid__item--x4.grid__item--padding{
	
	         /*   (    one grid item with padding  ) * 4 + space between cols + padding */
	 width: calc((((100% - 80px * 4 - 20px * 10) / 5) * 4) + 80px * 3 + 20px * 6);
	 padding:20px;
}
.grid--5col .grid__item:nth-child(5n+5){
	 float:right;
	 margin-right:0px;
}
/* -----------------------------------------------------  */
/* ELEMENT grid__item BASED ON BLOCK MODIFIER grid--6col  */
.grid--6col .grid__item{
	 float:left;
	 margin-right:30px;
	 margin-bottom:80px;
	          /* full width - space between cols * nr of inner spaces / number of cols */
	 width: calc((100% - 80px * 5) / 6);
}
.grid--6col .grid__item.grid__item--padding{
	         /* full width - space between cols * nr of inner spaces - padding * nr of paddings / number of cols */
	 width: calc((100% - 80px * 5 - 20px * 12) / 6);
	 padding:20px;
 }
 .grid--6col .grid__item--x2{
	          /*(      one grid item    ) * 2 + space between cols */
	 width: calc((((100% - 80px * 5) / 6) * 2) + 80px);
}
 .grid--6col .grid__item--x2.grid__item--padding{
	
	         /*   (    one grid item with padding  ) * 2 + space between cols + padding */
	 width: calc((((100% - 80px * 5 - 20px * 12) / 6) * 2) + 80px + 20px * 2);
	 padding:20px;
}
 .grid--6col .grid__item--x3{
	          /*(      one grid item    ) * 3 + space between cols */
	 width: calc((((100% - 80px * 5) / 6) * 3) + 80px * 2);
}
 .grid--6col .grid__item--x3.grid__item--padding{
	
	         /*   (    one grid item with padding  ) * 3 + space between cols + padding */
	 width: calc((((100% - 80px * 5 - 20px * 12) / 6) * 3) + 80px * 2 + 20px * 4);
	 padding:20px;
}
 .grid--6col .grid__item--x4{
	          /*(      one grid item    ) * 4 + space between cols */
	 width: calc((((100% - 80px * 5) / 6) * 4) + 80px * 3);
}
 .grid--6col .grid__item--x4.grid__item--padding{
	
	         /*   (    one grid item with padding  ) * 4 + space between cols + padding */
	 width: calc((((100% - 80px * 5 - 20px * 12) / 6) * 4) + 80px * 3 + 20px * 6);
	 padding:20px;
}
 .grid--6col .grid__item--x5{
	          /*(      one grid item    ) * 5 + space between cols */
	 width: calc((((100% - 80px * 5) / 6) * 5) + 80px * 4);
}
 .grid--6col .grid__item--x5.grid__item--padding{
	
	         /*   (    one grid item with padding  ) * 5 + space between cols + padding */
	 width: calc((((100% - 80px * 5 - 20px * 12) / 6) * 5) + 80px * 4 + 20px * 8);
	 padding:20px;
}
.grid--6col .grid__item:nth-child(6n+6){
	 float:right;
	 margin-right:0px;
}
.grid__item--floated-right{
	float:right !important;
	margin-right:0px !important;
}
/* 5.1 GRID ELEMENTS   */
/*===============================================*/
 
 /* ELEMENT  grid__title  */
/* --------------------  */
.grid__title{
	font-size:24px;
	font-weight:400;
	padding:0 0 20px 0;
	margin:0px;
}
.grid__title span{
	font-weight:700;
}

/* ELEMENT  grid__text  */
/* --------------------  */
.grid__text {
	padding-bottom:20px;
	line-height:26px;
}
.grid__text span{
	font-weight:700;
}

/* ELEMENT  grid__more  */
/* --------------------  */
.grid__more{
	font-weight:400;
	font-size:14px;
	padding:0 0 0 0;
	display:inline-block;
}
/* ELEMENT grid__list  */
/* --------------------  */
.grid__list{
	list-style:none;
	padding:0px;
	margin:0px;
}
.grid__list li{
	list-style:none;
	padding:5px 0;
	margin:0px;
	line-height:22px;
}

 /* ELEMENT grid__image  */
 /* --------------------  */
.grid__image{
	width:100%;
}
.grid__image img{
	display:block;
	max-width:100%;
}
.grid__image--right img{
	float:right;
}
.grid__image--left img{
	float:left;
}


/*===============================================*/
/*  6. BUTTONS	 			 */
/*===============================================*/
 .btn{
	padding:12px 40px; 
	margin:0 20px 0 0;
	font-size:14px;
	letter-spacing:0.5px;
	font-weight:400;
	-webkit-border-radius: 25px; 
	-moz-border-radius: 25px; 
	border-radius: 25px; 
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease; 
 }
  .btn:hover{
	  cursor:pointer;
	  }
.btn--blue-bg{
	color:#fff;
	background-color:#38cbdd;
	border:2px #38cbdd solid;
}
.btn--blue-bg:hover{
	background-color:transparent;
	color:#38cbdd;
}
.btn--play{
	background-image:url(images/btn-play.png);
	background-position:90% 50%;
	background-repeat:no-repeat;
	padding-right:60px;
}
.btn--play:hover{
	background-position:92% 50%;
}
.btn--blue-border{ 
	color:#38cbdd; 
	border:1px #38cbdd solid;
}
.btn--blue-border:hover{ 
	background-color:#38cbdd; 
	color:#fff;
}
.btn--green-bg{
	color:#fff;
	background-color:#d3c484;
	border:2px #d3c484 solid;
}
.btn--green-bg:hover{
	color:#d3c484;
	background-color:transparent;
}
.btn--green-border{ 
	color:#28e180; 
	border:1px #28e180 solid;
}
.btn--green-border:hover{ 
	background-color:#28e180; 
	color:#fff;
}
.btn--orange-bg{
	color:#fff;
	background-color:#fb993e;
	border:2px #fb993e solid;
}
.btn--orange-bg:hover{
	color:#fb993e;
	background-color:transparent;
}
.btn--orange-border{ 
	color:#fb993e; 
	border:1px #fb993e solid;
}
.btn--orange-border:hover{ 
	background-color:#fb993e; 
	color:#fff;
}
.btn--red-bg{
	color:#fff;
	background-color:#f25a90;
	border:2px #f25a90 solid;
}
.btn--red-bg:hover{
	color:#f25a90;
	background-color:transparent;
	border:2px #f25a90 solid;
}



/*================================================================================*/
/*  7. CUSTOM SECTIONS  */
/*===============================================================================*/

/*===============================================*/
/*  7.1 CUSTOM SECTION - INTRO	 			 */
/*===============================================*/
.section--intro{
	width:100%;
	height:100%;
	-webkit-background-size: 100%; 
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover; 
	background-size: cover;
	background-position:center top;
	background: #232c42c7;
	position:relative;
	overflow:hidden;
}
.section__content--intro{
	height:100%;
}
.intro{
	width:60%;
	float:left;
	padding:340px 0 0 0;
	position:relative;
	z-index:777;
}
.intro__content{
	width:100%;
	text-align:left;
}
.intro__title{
	padding:0 0 15px 0;
	color:#fff;
	font-size:58px;
	line-height:50px;
	letter-spacing:-1px;
}
.intro__title span{
	font-weight:700;
}
.intro__subtitle{
	font-size:24px;
	line-height:32px;
	color:#fff;
	letter-spacing:0.4px;
}
.intro__description{
	padding:0 0 40px 0;
	font-size:20px;
	color:#38cbdd;
}
.intro__description span{
	font-weight:700;
	color:#f25a90;
}
.intro__buttons{
	padding:20px 0 0 0;
}
 .intro__buttons--centered{
	 width:100%;
	 clear:both;
	 text-align:center;
}
.intro__buttons--left{
	 width:100%;
	 clear:both;
	 text-align:left;
}
svg.svg-intro-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index:111;
}
.intro-animation{
  width:50%;
  height:60%;
  float:right; 
  text-align:right;
	position:absolute;
	bottom:5%;
	right:-5%;
	z-index:222;
}
.intro-animation img{
	display:block;
	margin:auto;
	max-width:100%;
	opacity:0; 
	animation: .8s ease-out 0s 1 slideInFromRight;
	-webkit-animation: .8s ease-out 0s 1 slideInFromRight;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}
@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
	opacity:1;	
  }
}
@-webkit-keyframes slideInFromRight {
    0% {
    -webkit-transform: translateX(100%);
    }    
    100% {
    -webkit-transform: translateX(0);
    opacity: 1;
    }
}
@keyframes slideInFromRight2 {
  0% {
    transform: translateX(220%);
  }
  100% {
    transform: translateX(0);
	opacity:1;	
  }
}
@-webkit-keyframes slideInFromRight2 {
    0% {
    -webkit-transform: translateX(220%);
    }    
    100% {
    -webkit-transform: translateX(0);
    opacity: 1;
    }
}


/*===============================================*/
/*  7.2 CUSTOM SECTION - ABOUT	 			 */
/*===============================================*/
.grid--about{
	
}
.grid--about .grid__title{
	font-size:36px;
	line-height:42px;
	font-weight:400;
	padding:0 0 40px 0;
	margin:0px;
	position:relative;
}
.grid--about .grid__text{
	font-size:18px;
	color:#848484;
	line-height:26px;
}
.grid--about .grid__list{
	padding:20px 0 0 0;
}
.grid--about .grid__list li{
	background:url(images/checked.png) no-repeat 0 50%;
	font-size:18px;
	padding:10px 0 10px 40px;
}
/*===============================================*/
/*  7.3 CUSTOM SECTION - FEATURES	 			 */
/*===============================================*/
.section--features{
	width:100%;
	position:relative;
	padding:0 0 80px 0;
}
svg.svg-features-bottom {
	position: absolute;
	bottom: -1px;
	left:0px;
	width: 100%;
	height: 100px;
	z-index:555;
}
.grid--features .grid__item{
	 margin-right:0px;
	 margin-bottom:0px; 
	 width: calc((100% - 100px * 6 - 1px * 3) / 3);
	 padding:100px;
	 text-align:center;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
	border-right:1px #f1f2f7 solid;
	border-bottom:1px #f1f2f7 solid;
}
.grid--features .grid__item:last-child{
	border-right:none;
	}
.grid--noborder .grid__item{
	border-bottom:none;
	}
.grid--features .grid__item:hover{
	background-color:#38cbdd;
	color:#fff;
	 box-shadow: 0 0 30px 0px rgba(0,0,0,0.18);
	-moz-box-shadow: 0 0 30px 0px rgba(0,0,0,0.18);
	-webkit-box-shadow: 0 0 30px 0px rgba(0,0,0,0.18);
	transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
}

.grid--features .grid__title{
	font-size:24px;
	font-weight:700;
	padding:10px 0 40px 0;
	margin:0px;
}
.grid--features .grid__title span{
	font-weight:400;
}

.grid--features .grid__text{
	text-align:center;
}

/*===============================================*/
/*  7.4 CUSTOM SECTION - TESTIMONIALS 			 */
/*===============================================*/
 .section--testimonials{
	background-color:#f7f8f9;
	-webkit-background-size:  auto 90%;
	-moz-background-size:  auto 90%;
	-o-background-size:  auto 90%;
	background-size:  auto 90%;
	background-position:center center;
    background-image:url(images/world-bg.png);
	background-repeat:no-repeat;
}  
 .testimonials{
	width: 80%;
	height: 400px;
	position:relative;
	margin:0 auto;
	padding:40px 0 40px 0;
}
.testimonials__item{
	position:absolute;
	z-index:666;
}
.testimonials__item:nth-child(1){
	top:17%;
	left:20%;
}
.testimonials__item:nth-child(2){
	top:10%;
	left:30%;
}
.testimonials__item:nth-child(3){
	top:15%;
	left:48%;
}
.testimonials__item:nth-child(4){
	top:52%;
	left:58%;
}
.testimonials__item:nth-child(5){
	top:70%;
	left:28%;
}
.testimonials__item:nth-child(6){
	top:80%;
	left:85%;
}
.testimonials__item:nth-child(7){
	top:15%;
	left:68%;
}
.testimonials__thumb img{
	width:50px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	padding:5px;
	background-color:#fff;
	margin:auto;
	 box-shadow: 0 0 10px 0px rgba(0,0,0,0.18);
	-moz-box-shadow: 0 0 10px 0px rgba(0,0,0,0.18);
	-webkit-box-shadow: 0 0 10px 0px rgba(0,0,0,0.18);
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.testimonials__item--x2 .testimonials__thumb img{
	width:80px;
}
.testimonials__item--x3 .testimonials__thumb img{
	width:100px;
}
.testimonials__item--x4 .testimonials__thumb img{
	width:120px;
}
.testimonials__content{
	-webkit-transform: translateX(70px) translateY(-50px);
	transform: translateX(70px) translateY(-50px);
	background-color:#fff;
	-webkit-border-radius: 15px;
	-moz-border-radius:15px;
	border-radius: 15px;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
    opacity: 0; 
    height: 0;
	width: 0;
	padding:0px;
    overflow: hidden;
}
.testimonials__item--x2 .testimonials__content{
	-webkit-transform: translateX(100px) translateY(-80px);
	transform: translateX(100px) translateY(-80px);
}
.testimonials__item--x3 .testimonials__content{
	-webkit-transform: translateX(120px) translateY(-100px);
	transform: translateX(120px) translateY(-100px);
}
.testimonials__item--x4 .testimonials__content{
	-webkit-transform: translateX(140px) translateY(-100px);
	transform: translateX(140px) translateY(-100px);
}
.testimonials__item:hover .testimonials__content{
	opacity:1;
	height:auto;
	width:250px;
	padding:20px;
	 box-shadow: 0 0 20px 0px rgba(0,0,0,0.18);
	-moz-box-shadow: 0 0 20px 0px rgba(0,0,0,0.18);
	-webkit-box-shadow: 0 0 20px 0px rgba(0,0,0,0.18);
}
.testimonials__item:hover .testimonials__thumb img{
	 box-shadow: 0 0 15px 0px rgba(0,0,0,0.28);
	-moz-box-shadow: 0 0 15px 0px rgba(0,0,0,0.28);
	-webkit-box-shadow: 0 0 15px 0px rgba(0,0,0,0.28);
	transform: scale(1.1);
}
.testimonials__item:hover{
	z-index:777 !important;
}
.testimonials__text p{
	font-size:16px;
	line-height:22px;
}
.testimonials__source{
	font-size:20px;
	font-weight:700;
	padding:0 0 10px 0;
	line-height:22px;
}
.testimonials__source a{
	display:block;
	font-size:14px;
	font-weight:400;
}
.testimonials__source a:hover{
	color:#000;
}

/*===============================================*/
/*  7.5 CUSTOM SECTION - PRICING 			 */
/*===============================================*/
.pricing{
	width:100%;
	margin:0 auto;
	text-align: center;
}
.pricing__switcher{
	width:300px;
	height:40px;
	margin:0 auto 100px auto;
	clear:both;
	text-align:center;
	position:relative;
}
.switcher__buttons{
	width:100%;
}
.switcher__button{
	cursor:pointer;
	width:50%;
	float:left;
	position:relative;
	z-index:888;
	transition:.3s ease-in-out;
	opacity:.5;
}
.switcher__border{
	height: 4px;
	width: 50%;
	background-color:#0817b8;
	display:block;
	position:absolute;
	bottom:0px;
	left:0px;
	z-index:555;
	margin: 0;
	border: none;
	transition:.3s ease-in-out;
}
.switcher__button--enabled {
	opacity:1;
}
.switcher__button:nth-child(1).switcher__button--enabled ~ .switcher__border {
   left: 0;
}
.switcher__button:nth-child(2).switcher__button--enabled ~ .switcher__border {
   left: 50%;
}

.pricing__plan{       
	width: 25%;  
	padding:40px 0;	
	float: left;
	position: relative;

}
.pricing__plan:nth-child(3){  
	-webkit-box-shadow: inset  1px 0px 0px 0px  #f1f2f7;
	box-shadow: inset  1px 0px 0px 0px  #f1f2f7;
	-moz-box-shadow: inset  1px 0px 0px 0px  #f1f2f7;
}  
.pricing__plan--popular {
	z-index: 2;
	top: -30px;
	padding:50px 0 70px 0;
	background-color:#0817b8;
	color:#fff;
	-moz-box-shadow: 10px 0 15px -10px rgba(0, 0, 0, .45), -10px 0 15px -10px rgba(0, 0, 0, .45);
	-webkit-box-shadow: 10px 0 15px -10px rgba(0, 0, 0, .45), -10px 0 15px -10px rgba(0, 0, 0, .45);
	box-shadow: 10px 0 15px -10px rgba(0, 0, 0, .45), -10px 0 15px -10px rgba(0, 0, 0, .45);    
}
.pricing__badge-bg{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 100px 0 0;
	border-color: #38cbdd transparent transparent transparent;
	position:absolute;
	top:0px;
	left:0px;
	z-index:333;
}
.pricing__badge-text{
	position:absolute;
	top:28px;
	left:3px;
	z-index:444;
	color:#fff;
	font-size:16px;
	-webkit-transform: rotate(-45deg); 
	-moz-transform: rotate(-45deg);	
}
.pricing__title{
	width:100%;
	text-align:center;
	position:relative;
	font-size:24px;
	font-weight:700;
	padding:0px 0 40px 0;
	margin:0px;
}
.pricing__title:after {
    content:'';
    position:absolute;
    left:0;right:0;
    top:60%;
    margin:auto;
    width:50px;
    height:1px;
    background:#454545;
	-webkit-transition: all .5s ease-out;
	-moz-transition: all .5s ease-out;
	-o-transition: all .5s ease-out;
	transition: all .5s ease-out;
}
.pricing__plan--popular .pricing__title{
	font-size:44px;
	color:#fff;
	font-weight:900;
	letter-spacing:-1px;
	padding:0px 0 40px 0;
} 
.pricing__plan--popular .pricing__title:after {
    background:#fff;
	top:70%;
}
.pricing__plan:hover .pricing__title:after {
    width:80%;
}	
.pricing__values{
	font-size:58px;
	font-weight:700;
	height:70px;
	position:relative;
	text-align:center;
}
.pricing__value span{
	display:inline-block;
	font-size:20px;
	margin:0px 0 0 0;
}
.pricing__value b{
	display:inline-block;
	font-size:18px;
	font-weight:700;
	position:relative;
	bottom:-5px;
}
.pricing__value{
	position:absolute;
	left: 0; 
	right: 0; 
	margin-left: auto; 
	margin-right: auto; 
}
.pricing__value--hidden{
	display:none;
}
.pricing__value--show{
	-webkit-animation: showToY 0.6s forwards;
	animation: showToY 0.6s forwards;
}
.pricing__value--hide{
	-webkit-animation: fadeToY 0.6s forwards;
	animation: fadeToY 0.6s forwards;
}
@keyframes fadeToY {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(80%);
		transform: translateY(80%);
	}
}
@-webkit-keyframes fadeToY {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(80%);
		transform: translateY(80%);
	}
}
@keyframes showToY {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-80%);
		transform: translateY(-80%);
	}
	100% {
		opacity:1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@-webkit-keyframes showToY {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-80%);
		transform: translateY(-80%);
	}
	100% {
		opacity:1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
.pricing__list {
	width:80%;
	margin:20px 0 0 10%;
	padding: 0;
	list-style: none;
}
.pricing__list li {
	padding:3px 0 3px 12%;
	text-align:left;
	line-height:24px;
	background:url(images/checked-pricing.png) no-repeat 0 50%;
}
.pricing__plan--popular .pricing__list li {
	background:url(images/checked-pricing-white.png) no-repeat 0 50%;
}
.pricing__list li.disabled {
	padding:3px 0 3px 12%;
	text-align:left;
	line-height:24px;
	background:none;
	text-decoration: line-through;
	opacity:0.6;
}
.pricing__signup{
	display:inline-block;
	padding:12px 60px; 
	margin:20px 0 0 0;
	font-size:14px;
	letter-spacing:0.5px;
	font-weight:400;
	-webkit-border-radius: 25px; 
	-moz-border-radius: 25px; 
	border-radius: 25px; 
	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease; 
	background:#fff;
	color:#38cbdd;
	border:2px #38cbdd solid;
}
.pricing__signup:hover{
	color:#fff;
	background-color:#38cbdd;
	border:2px #38cbdd solid;
 }
.pricing__plan--popular .pricing__signup{
	color:#fff;
	background-color:#f25a90;
	border:2px #f25a90 solid;
 }
.pricing__plan--popular .pricing__signup:hover{
	color:#f25a90;
	background:none;
 }

 /*===============================================*/
/*  7.6 CUSTOM SECTION - CTA 			 */
/*===============================================*/
 .section--cta{
	position:relative;
	padding-bottom:40px;
}
.svg-cta-bottom{
	width:100%;
	height:100%;
	position:absolute;
	bottom:-1px;
	left:0px;
	z-index:111;
}
.grid--cta{
	width:100%;
	display: flex;
	position:relative;
	z-index:222;
}
.grid--cta .grid__item{
	width: calc(100% / 2);
	margin:0px;
}
.grid__title--cta{
	font-size:42px;
	color:#232c42;
	font-weight:400;
	padding:20px 0 20px 0;
	margin:0px 0 20px 0;
}
.grid__title--cta span{
	font-weight:700;
	color:#d3c484;
}
.grid--cta .grid__text{
	font-size:18px;
	line-height:30px;
}
.grid--cta .grid__more{
	color:#fff;
	font-size:18px;
	font-weight:400;
	letter-spacing:0.5px;
	background-color:#d3c484;
	padding: 20px 62px;
	margin:0 auto 0 auto;
	border: 2px #d3c484 solid;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease; 
}

.grid--cta .grid__more:hover{
	color: #fff;
	background-color:#232c42;
	border: 1px #d3c484 solid;
}


 /*===============================================*/
/*  7.7 CUSTOM SECTION - HOW IT WORKS (HIW) 			 */
/*===============================================*/
.section--hiw{
	background-color: #f7f8f9;
}
.hiw{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.hiw-titles{
	border-bottom:1px #ddd solid;
	margin:0 0 40px 0;
}
.hiw-titles__slide{
	 width: calc(100% / 5);
	 cursor:pointer;
	 padding:0 0 30px 0; 
	 margin:0 0 -2px 0;
	 text-align:center;
	 opacity:.4;
	 -webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
}
.hiw-titles__slide span{
	display:block;
}
.hiw-titles__slide.swiper-slide-active{
	position:relative;	
    opacity:1;		
}
.hiw-titles__slide.swiper-slide-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 60%;
    height: 4px;
    background: #0817b8;
}
.hiw-content__slide{
	background-color: #fff;
	text-align:left;
	padding:40px 0;
	height:300px;
}
.hiw-content__slide pre{
	text-align:left;
	font-size:14px;
	line-height:24px;
	color:#0716b7;
}
.hiw-content__slide pre strong{
	font-weight:700;
	color:#f25a90;
}
.hiw-buttons{
	width:100%;
	background-color:#0817b8;
	padding:20px 0;
	text-align:right;
}

/*===============================================*/
/*  7.8 CUSTOM SECTION - SUPPORT	 			 */
/*===============================================*/
.grid--support{
	width:100%;
	margin-top:40px;
	
}
.grid--support .grid__item.grid__item--padding{
	         /* full width - space between cols * nr of inner spaces - padding * nr of paddings / number of cols */
	 width: auto;
	 max-width: 800px;
	 padding:50px;
	 margin-bottom:0px;
	 margin-right:40px;
	 background-color: #232c42;
	 border: 10px solid #d3c484;
	 color: #fff;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.grid--support .grid__item--padding:hover{
	background-color: #232c42;
	color:#fff;
	 box-shadow: 0 0 30px 0px rgba(0,0,0,0.18);
	-moz-box-shadow: 0 0 30px 0px rgba(0,0,0,0.18);
	-webkit-box-shadow: 0 0 30px 0px rgba(0,0,0,0.18);
	transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
}
.grid--support .grid__item.grid__item--padding:last-child{
	margin-right:0px;
}
.grid--support .grid__title{
	font-size:24px;
	font-weight:700;
	padding:20px 0 20px 0;
	margin:0px 0 20px 0;
	position:relative;
}
.grid--support .grid__title:after {
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    margin:0;
    width:40px;
    height:1px;
    background:#d3c484;
	opacity:.5;
	-webkit-transition: all .5s ease-out;
	-moz-transition: all .5s ease-out;
	transition: all .5s ease-out;
}
.grid--support .grid__item:hover .grid__title:after{
	width:100%;
	background:#fff;
}
.grid--support .grid__more{
	height: 32px;
	line-height: 30px;
	color:#fff;
	background-color:#38cbdd;
	padding: 0 22px;
	margin:0px 0 0 0;
	border: 1px #38cbdd solid;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease; 
}
.grid--support .grid__more:hover{
	color: #fff;
	background-color:transparent;
	border: 1px #fff solid;
}
.grid--support .grid__item:hover .grid__more{
	color: #fff;
	background-color: transparent;
	border: 1px #fff solid;
}
 /*===============================================*/
/*  7.9 CUSTOM SECTION - CLIENTS 			 */
/*===============================================*/
.section--clients{
	position:relative;
	padding-bottom:40px;
}
.grid__client-logo img{
	display:block;
	max-width:100%;
	margin:auto;
	text-align:center;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.grid__client-logo a:hover img{
	opacity:.5;
}
/*===============================================*/
/*  7.10 CUSTOM SECTION - CONTACT	 			 */
/*===============================================*/
.grid--contact{
	background-color:#38cbdd;
	color:#fff;
	display: flex;
}
.grid--contact .grid__item--x2, .grid--contact .grid__item--x3{
	margin-bottom:0px;
}
 .grid--contact .grid__item--x2.grid__item--padding{
	
	         /*   (    one grid item with padding  ) * 2 + space between cols + padding */
	 width: calc((((100% - 80px * 4 - 50px * 10) / 5) * 2) + 80px + 50px * 2);
	 padding:40px 50px;
	 background:none;
}
.grid--contact .grid__title{
	font-size:30px;
	line-height:42px;
	font-weight:400;
	padding:10px 0 20px 0;
	margin:0px;
	position:relative;
}
.grid--contact .grid__text{
	padding:20px 0 20px 0;
}
.grid--contact .grid__more{
	font-size:32px;
	font-weight:700;
	color: #fff;
	letter-spacing:-0.5px;
}
/*  CONTACT	FORM */
/*----------------------------------------------*/
/*  CONTACT	FORM */
/*----------------------------------------------*/
.form__page{
	width:60%;
	margin:0 15%;
	clear:both;
	float:left;
	padding:40px 5%;
	background-color:#f7f7f7;
}
.grid__item--form{
	background-color:#f7f7f7;
}
.grid__form{
	width:70%;
	height:100%;
	margin:auto;
	padding:0 10% 0 20%;
	position:relative;
}
.svg-form-left{
	height:100%;
	width:15%;
	position:absolute;
	left:0px;
	top:0px;
	z-index:222;
}
.form__title{
	font-size:24px;
	padding:0;
	font-weight: 700;
	margin:0px;
}
.form__subtitle{
	font-size:18px;
	color:#000;
	padding:30px 0 10px 0;
	width:100%;
	clear:both;
	font-weight: 700;
	margin:0px;
}
.form__container{
	width:100%;
	padding:20px 0 40px 0;
	float:left;
	clear:both;
}
.form__row {
	width:100%;
	position:relative;
}
.form__input {
	width: 100%;
	height:25px;
	background:none;
	border:none;
	border-bottom:1px #fff solid;
	padding:4px 0;
	color: #fff;

}
.form__input[type="date"]::-webkit-calendar-picker-indicator{
	filter: invert(1);
	color: #fff;
}
.form__label {
	width: 100%;
	display:block;
	color: #fff;
}
.form__row-border{
	position:absolute;
	bottom:18px;
	left:0px;
	width:0px;
	height:2px;
	z-index:22;
	background-color:#d3c484;
	-webkit-transition:all 0.3s 0.12s;
	transition: all 0.3s 0.12s;
}
.form__textarea {
	width:100%;
	height:20px;
	background:none;
	border:none;
	border-bottom:1px #fff solid;
	color: #fff;
	padding:10px 0;
	font-size:14px;
	font-family: 'Source Sans Pro', sans-serif;
}
.form__select {
	width:100%;
	height:25px;
	padding:10px 0;
	display:block;
	border-bottom:1px #a8a8a8 solid;
	background:url(images/drop-down.png) no-repeat 98% 50%;
}
select.select__field{
	width:100%;
	height:30px;
	font-weight: 300;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	line-height:30px;
    border: none;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.form__input:focus + .form__row-border, .form__textarea:focus + .form__row-border, .select__field:focus + .form__row-border{
	width:100%;
}
 .form__checkbox{
	width:100%;
	padding:10px 0 0 0;
}
.form__checkbox{text-align:left;line-height:14px; clear:both;}
.form__checkbox label {	cursor: pointer; color:#000;}
.form__checkbox input[type="checkbox"] {display: none;}
.form__checkbox input[type="checkbox"] + label:before{
	border:none;
	content: "\00a0";
	display: inline-block;
	font-size: 18px;
	font-weight:900;
	width:18px;
	height:18px;
	border-radius:2px;
	-webkit-border-radius:2px;
	-khtml-border-radius:2px;
	margin:0 10px 0 0;
	line-height:18px;
	vertical-align: center;
	border:none;
	background-color:#a8a8a8;
}
.form__checkbox input[type="checkbox"]:checked + label:before {color: #fff;content: "\2713";border:none;	text-align: center;background-color:#313ee7; }
.form__checkbox input[type="checkbox"]:checked + label:after {font-weight: bold;}
.form__checkbox input[type="checkbox"] + label:before, input[type="checkbox"]:checked + label:before{background-color:#a8a8a8;}
 .form__radio{
	width:100%;
	padding:10px 0 0 0;
}
.form__radio{text-align:left;line-height:14px; clear:both;}
.form__radio label {	cursor: pointer; color:#000;}
.form__radio input[type="radio"] {display: none;}
.form__radio input[type="radio"] + label:before{
	border:none;
	content: "\00a0";
	display: inline-block;
	font-size: 18px;
	font-weight:900;
	width:18px;
	height:18px;
	border-radius:9px;
	-webkit-border-radius:9px;
	-khtml-border-radius:9px;
	margin:0 10px 0 0;
	line-height:18px;
	vertical-align: center;
	border:none;
	background-color:#a8a8a8;
}
.form__radio input[type="radio"]:checked + label:before {color: #fff;content: "\2713";border:none;	text-align: center;background-color:#313ee7; }
.form__radio input[type="radio"]:checked + label:after {font-weight: bold;}
.form__radio input[type="radio"] + label:before, input[type="radio"]:checked + label:before{background-color:#a8a8a8;}

.form__switcher{
	width:100%;
	clear:both;
	padding:10px 0 0 0;
}
.switch__label {
	position: relative;
	display: block;
	vertical-align: top;
	width: 80px;
	height: 30px;
	padding: 0;
	background-image: none;
	margin:0;
	border-radius: 18px;
	cursor: pointer;
}
.switch__input {
	width: 80px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.switch__data {
	position: relative;
	display: block;
	height: inherit;
	font-size: 14px;
	text-transform: uppercase;
	border-radius: inherit;
	border: solid 2px #a8a8a8;
	box-shadow: none;
	color:#a8a8a8;
}
.switch__data:before, .switch__data:after {
	position: absolute;
	top: 50%;
	margin-top: -.5em;
	line-height: 1;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}
.switch__data:before {
	content: attr(data-off);
	right: 11px;
}
.switch__data:after {
	content: attr(data-on);
	left: 11px;
	color: #313ee7;
	opacity: 0;
}
.switch__input:checked ~ .switch__data {	
	border-color: #313ee7;
}
.switch__input:checked ~ .switch__data:before {
	opacity: 0;
}
.switch__input:checked ~ .switch__data:after {
	opacity: 1;
}
.switch__handle {
	position: absolute;
	border-radius: 100%;	
	top: 6px;
	left: 8px;
	background: #a8a8a8;
	width: 22px;
	height: 22px;
	box-shadow: none;	
}
.switch__handle:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
	width: 12px;
	height: 12px;
	border-radius: 6px;
	background: #eceeef;
}
.switch__input:checked ~ .switch__handle {
	left: 52px;
	background: #313ee7;
	box-shadow: none;
}
.switch__data, .switch__handle {
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

.form__file {
  width:100%;
  clear:both;
  padding:10px 0 0 0;
}
.form__file input[type="file"] {
  display: none;
}
.form__file .file__label {
  display: inline-block;
  border: none;
  background-image: url(images/upload_file.png);
  background-color: #a8a8a8;
  background-repeat: no-repeat;
  background-position: 85% 50%;
  padding:12px 50px 12px 30px; 
  vertical-align: middle;
  line-height: normal;
  text-align: center;
  margin: 0px;
  font-size: 14px;
  width: auto;
  color:#fff;
  font-weight: 400;
  -webkit-appearance: none;
	-webkit-border-radius: 25px; 
	-moz-border-radius: 25px; 
	border-radius: 25px; 
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.form__file .file__label:hover {
  cursor: pointer;
  background-color: #313ee7;
}
.form__submit{
	clear:both;
	float:left;
	margin:30px 0 0 0;
	cursor:pointer;
}
/*===============================================*/
/*  7.11 CUSTOM SECTION - LOGIN/SIGNUP MODAL			 */
/*===============================================*/
.modal {
    position: absolute;
    z-index: 10000; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}
.modal.modal--visible {
    visibility: visible;
}
.modal__overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.2);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.modal--visible .modal__overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.modal__wrapper {
  position: fixed;
  z-index: 9999;
  top: 20%;
  left: 50%;
  width: 50%;
  margin-left: -25%;
  background-color: #fff;
}
.modal__wrapper--image {
  top: 10%;
  left: 30%;
  width: 70%;
  bottom:10%;
  margin-left: -15%;
}
.modal-transition {
-webkit-transition:all 0.3s 0.12s;
-moz-transition: all 0.3s 0.12s;
transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}

.modal.modal--visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}
.modal__body{
  width:100%;
  height:100%;
}
.modal__header{
  width:96%;
  background-color:#38cbdd;
  color:#fff;
  font-size:20px;
  font-weight:400;
  padding: 15px 2%;
}
.modal__content{
  width:100%;
  height:0;
  visibility: hidden;
  position:relative;
  transform: translate(-100%);
  overflow:hidden;
}
.modal__content.modal__content--visible{
  visibility: visible;
  transform: translate(0);
  width:100%;
  height:100%;
  float:left;
  clear:both;
  display: table;
}
.modal__image{
	width:96%;
	padding:0 2%;
	height:89%;
	margin:1% auto auto auto;
}
.modal__image img{
	display:block;
	height:100%;
	margin:auto;
}
.modal__content--login{
  background-color:#38cbdd;
}
.modal__content--forgot{
  background-color:#38cbdd;
}
.modal__content--signup{
  background-color: #f25a90;
}
.modal__info{
	width:34%;
	display: table-cell;
	height:100%;
	padding:40px 3%;
	color:#fff;
-webkit-transition:all 0.3s 0.12s;
-moz-transition: all 0.3s 0.12s;
transition: all 0.3s 0.12s;
    opacity: 0;
	transform: translateX(-10%);
}
.modal__content.modal__content--visible .modal__info{
	transform: translateX(0);
	opacity: 1;
}
.modal__title{
	font-size:24px;
	font-weight:700;
	padding:0 0 20px 0;
	margin:0px;
}
.modal__descr{
	font-size:38px;
	font-weight:400;
	padding:20px 0 20px 0;
	margin:0px;
	line-height:44px;
}
.modal__descr span{
	font-weight:700;
}
.modal__list{
	padding:0px;
	margin:0px;
	list-style:none;
}
.modal__list li{
	background:url(images/checked-pricing-white.png) no-repeat 0% 70%;
	padding:0 0 0 25px;
	margin:4px 0;
	line-height:22px;
}
.modal__switch--signup{
    padding: 10px 30px;
    margin:40px 0 0 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 400;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
	color: #fff;
	background-color:transparent;
	border: 2px #fff solid;
	cursor:pointer;
	font-weight:700;
}
.modal__switch--signup:hover{
	background-color:#fff;
	color:#38cbdd;
    border: 2px #fff solid;
}
.modal__switch--login{
    padding: 10px 30px;
    margin:40px 0 0 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 400;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
	color: #fff;
	background-color:transparent;
	border: 2px #fff solid;
	cursor:pointer;
	font-weight:700;
}
.modal__switch--login:hover{
	background-color:#fff;
	color:#f25a90;
    border: 2px #fff solid;
}
.modal__form{
	width:50%;
	height:100%;
	display: table-cell;
	padding:40px 5%;
	background-color:#fff;
    opacity: 0;
	transition: all 0.3s 0.12s;
}
.modal__content.modal__content--visible .modal__form{
	opacity: 1;
}
.modal__checkbox{
	float:left;
	width:50%;
	padding:10px 0 0 0;
}
.modal__checkbox{text-align:left;line-height:14px; clear:both;}
.modal__checkbox label {	cursor: pointer;}
.modal__checkbox input[type="checkbox"] {display: none;}
.modal__checkbox input[type="checkbox"] + label:before{
	border:none;
	content: "\00a0";
	display: inline-block;
	font-size: 18px;
	font-weight:900;
	width:18px;
	height:18px;
	border-radius:2px;
	-webkit-border-radius:2px;
	-khtml-border-radius:2px;
	margin:0 10px 0 0;
	line-height:18px;
	vertical-align: center;
	border:none;
	background-color:#f7f8f9;
}
.modal__checkbox input[type="checkbox"]:checked + label:before {color: #fff;content: "\2713";border:none;	text-align: center;background-color:#38cbdd; }
.modal__checkbox input[type="checkbox"]:checked + label:after {font-weight: bold;}
.modal__checkbox input[type="checkbox"] + label:before, input[type="checkbox"]:checked + label:before{background-color:#f7f8f9;}

.modal__switch--forgot{
	float:right;
	padding:10px 0 0 0;
	color:#38cbdd;
	font-weight:700;
	cursor:pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.modal__switch--forgot:hover{
	color:#f25a90;
}

.modal__close {
  background: #000;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  color: #FFFFFF;
  cursor: pointer;
  outline: none;
  width: 44px;
  height: 44px;
  position: absolute;
  right: -22px;
  top: -22px;
  -webkit-transition: -webkit-transform 600ms;
  -moz-transition: -moz-transform 600ms;
  -ms-transition: -ms-transform 600ms;
  -o-transition: -o-transform 600ms;
  transition: transform 600ms;
}

.modal__close:hover {
  background: #000;
  -webkit-transform: rotate(360deg) scale(1.10);
  -moz-transform: rotate(360deg) scale(1.10);
  -ms-transform: rotate(360deg) scale(1.10);
  -o-transform: rotate(360deg) scale(1.10);
  transform: rotate(360deg) scale(1.10);
  -webkit-transition: -webkit-transform 600ms;
  -moz-transition: -moz-transform 600ms;
  -ms-transition: -ms-transform 600ms;
  -o-transition: -o-transform 600ms;
  transition: transform 600ms;
}

.modal__close span, .modal__close span:before, .modal__close span:after {
  background: #FFFFFF;
  content: '';
  cursor: pointer;
  display: block;
  height: 2px;
  position: absolute;
  width: 20px;
}

.modal__close span:first-child {
  background: none;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.modal__close span:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal__close span:after {
  -webkit-transform: translateY(-2px) rotate(-45deg);
  -moz-transform: translateY(-2px) rotate(-45deg);
  -ms-transform: translateY(-2px) rotate(-45deg);
  -o-transform: translateY(-2px) rotate(-45deg);
  transform: translateY(-2px) rotate(-45deg);
  top: 2px;
}

/*===============================================*/
/*  7.12 CUSTOM SECTION - FAQ			 */
/*===============================================*/
.grid--faq .grid__title{
	font-size:36px;
	line-height:46px;
	font-weight:700;
	padding:10px 0 20px 0;
	margin:0px;
	position:relative;
}
.grid--faq .grid__text{
	font-size:18px;
	color:#848484;
	line-height:26px;
}
.grid--faq .grid__list{
	padding:20px 0 0 0;
}
.grid--faq .grid__list li{
	background:url(images/checked.png) no-repeat 0 50%;
	font-size:18px;
	padding:10px 0 10px 40px;
}
.faq{
	width:100%;
	margin:auto;
}
.faq__item {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom:1px #232c42 solid;
}
.faq__input{
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.faq__label {
  position: relative;
  display: block;
  cursor: pointer;
  padding:20px;
  font-size:18px;
  font-weight:700;
      -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.faq__content {
  max-height: 0;
  overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.faq__content p {
  padding:20px;
  font-size:16px;
}
.faq__input:checked ~ .faq__content {
  max-height: 300px;
}
.faq__input:checked ~ .faq__label,  .faq__label:hover{
  background-color: #232c42;
  color:#fff;
}
.faq__label:hover span{
  transform: rotateX(180deg);
  background:url(images/drop-down-faq-selected.png) no-repeat center;
}
.faq__label span {
  position: absolute;
  right: 2%;
  top: 45%;
  display: block;
  width: 11px;
  height: 6px;
  text-align: center;
  background:url(images/drop-down-faq.png) no-repeat center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
.faq__input[type=radio]:checked + .faq__label span {
  transform: rotateX(180deg);
  background:url(images/drop-down-faq-selected.png) no-repeat center;
}

 /*===============================================*/
/*  8. FOOTER 	 						 */
/*===============================================*/
/* BLOCK - footer */
.footer{
	width:100%;
	height:auto;
	float:left;
	clear:both;
	background-color: #232c42;
	color:#fff;
	position:relative;
}
/* ELEMENT - footer__content */
.footer__content{
	clear:both;
}
/* ELEMENT MODIFIER footer__content  */
.footer__content--fix-width{
	width:1240px;
	margin:auto;
	clear:both;
}
.footer__content--fluid-width{
	width:80%;
	margin:auto;
	clear:both;
}
.footer__content--padding{
	padding:100px 0;
}
.footer__content--svg{
	padding-top:100px;
}
.grid__title--footer-logo{
	font-size:18px;
 letter-spacing:1px;	font-weight:700;
}
.grid__title--footer-logo span{
	font-weight:700;
}
.grid__title--footer{
	font-size:20px;
	font-weight:700;
}
.grid__text--copyright{
	color:#fff;
	line-height:22px;
}
ul.grid__list--sicons{
	margin:20px 0 0 0;
}
ul.grid__list--sicons li{
	display:inline-block;
	margin:0 20px 0 0;
}
ul.grid__list--sicons li a{
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
ul.grid__list--sicons li a img{
	display:block;
	width:25px;
}
ul.grid__list--sicons li a:hover{
	opacity:.5;
}

ul.grid__list--fmenu li a {
    display: inline-block;
    color:#fff;
    text-decoration: none;
}

ul.grid__list--fmenu li a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #38cbdd;
    transition: width .3s;
}

ul.grid__list--fmenu li a:hover::after {
    width: 100%;
}
ul.grid__list--fmenu li a:hover {
	color: #38cbdd;
}
.form__row .grid__item{
	margin-right: 20px;
	margin-bottom: 18px;
}
.form-box{
	height: 500px;
}
/*===============================================*/
/* 9. MEDIA QUERIES   			 */
/*===============================================*/
/*===============================================*/
/* Small desktop and laptops 1400 px		 */
/*===============================================*/
@media screen and (max-width: 1400px) {
.header__content--fluid-width, .section__content--fluid-width, .footer__content--fluid-width{
	width:92%;
	padding-left:4%;
	padding-right:4%;
}
.intro{
  width:70%;
}
.modal__wrapper {
  top: 18%;
  width: 70%;
  margin-left: -35%;
}
.modal__wrapper--image {
  top: 5%;
  left: 20%;
  width: 80%;
  bottom:5%;
  margin-left: -10%;
}
.pricing{
	width:100%;
}

}

/*===============================================*/
/* Smaller than fixed width 1240 px		 */
/*===============================================*/
@media screen and (max-width: 1240px) {
.header__content--fix-width, .section__content--fix-width, .footer__content--fix-width{
	width:92%;
	padding-left:4%;
	padding-right:4%;
}


}

/*===============================================*/
/* Mobile and portrait Tablets max 800 px */
/*===============================================*/
@media screen and (max-width: 800px) {
body{
font-size:14px;
}
p{
line-height:22px;
}
.header__content--fix-width, .section__content--fix-width, .footer__content--fix-width{
	width:90%;
	padding-left:5%;
	padding-right:5%;
}
/*  HEADER 	 */
/*---------------*/
.header{
height:50px;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-ms-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}
.header__content{
height:50px;
}
/*  MENU 	 */
/*---------------*/
.menu-open{
height:100% !important;
overflow-y:scroll;
background-color:#fff;
}
.header__logo-title{
	font-size:20px;
}
.header__menu {
width: 100%;
height:100%;
float:left;
clear:both;
margin:40px 0 0 0;
}
 .header__menu ul {
 width: 100%;
 display: none;
 text-align:left;
 background-color:#fff;

}
 .header__menu ul li {
width: 100%;
}
 .header__menu ul li,  .header__menu ul ul li a,  .header__menu ul ul ul li a,  .header__menu ul ul ul li:last-child a {
border-bottom:1px #ebeced solid;
}
 .header__menu ul li a {
 width: 100%;
 font-size:18px;
  line-height:40px; 
  height:auto;
  margin:0px;
  padding: 0 35px;
  color:#000;
}
 .header__menu > ul > li {
 float: none;

}
 .header__menu ul ul li a {
margin:0 0 0 0;
padding:0px 0px 0 15%;
width:100%;
 height:auto;
}
.header__menu > ul > li.header__btn--signup > a {
	width:80%;
    height:35px;
	line-height:35px;
	padding:0 5%; 
	margin:5px 0 5px 10%;
	text-align:center;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}
.header__menu > ul > li.header__btn--login > a {
	width:80%;
    height:35px;
	line-height:35px;
	padding:0 5%; 
	margin:5px 0 5px 10%;
	text-align:center;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}
 .header__menu ul ul li:first-child a {
	 border-top:1px #ebeced solid;
 }
 .header__menu ul ul li:last-child a {
border-bottom:none;
}
 .header__menu ul ul ul li a {
margin:0 0 0 0;
padding:0 0px 10px 0;

}
 .header__menu ul ul,  .header__menu ul ul ul {
 position: relative;
 left: 0;
 width: 100%;
 padding:0;
 top:0;
 border-top:none;
  -webkit-box-shadow: none; 
  -moz-box-shadow:    none; 
  box-shadow:         none;
  -webkit-border-radius: 0px; 
  -moz-border-radius: 0px; 
  border-radius: 0px;  
 background:none;
 transition: none;
 visibility:visible;
 opacity: 1;
}
.header__menu ul ul.submenu-header-sticky{
  background-color:#fff; 
  -webkit-box-shadow: none; 
  -moz-box-shadow:    none; 
  box-shadow:         none;
}
 .header__menu ul ul li,  .header__menu ul ul ul li{
  border-bottom:none; 
}
.header__menu li:hover > ul {  
transition: none;visibility:visible;top:auto;}

.menu-button {
 display: block;
}

 .header__menu .submenu-button {
 position: absolute;
 z-index: 99;
 right: 0;
 top: 0;
 display: block;
 height: 38px;
 width: 50px;
 cursor: pointer;
border-left: 1px solid #ebeced;
background-color:#fff;
}
 .header__menu ul ul .submenu-button {
 height: 35px;
 width: 35px;
}
 .header__menu .submenu-button:after {
 content: '';
 position: absolute;
 top: 17px;
 left: 17px;
 display: block;
 width: 0;
 padding: 0;
 border: 5px solid transparent;
 border-top-color: #000;
}
 .header__menu ul ul .submenu-button:after {
 border-width: 4px;
 left: 14px;
 top: 12px;
}
 .header__menu .submenu-button.submenu-opened:after {
 top: 12px;
 border-top-color: transparent;
 border-bottom-color: #000;
}
 .header__menu ul ul .submenu-button.submenu-opened:after {
 top: 10px;
}


/*       SECTION 	   */
/*=====================*/
.section--page-top{
	padding-top:40px;
}
.section--page-bottom{
	padding-bottom:40px;
}
.section__content--padding{
	padding:50px 0 350px;
}
#faq .section__content--padding {
    padding: 100px 0 350px;
}
.section__title{
	font-size:28px;
}
.section__description{
	font-size:14px;
	line-height:26px;
}
.section__description--centered{
	width:80%;
	padding:0 0 40px 0;
}

/*       GRID 	   */
/*=====================*/

.grid--2col .grid__item, .grid--3col .grid__item, .grid--4col .grid__item, .grid--5col .grid__item, .grid--6col .grid__item
{
	 margin-right:0px;
	 margin-bottom:40px;
	 width:100%; 
}
.grid--3col .grid__item--x2, .grid--4col .grid__item--x3, .grid--5col .grid__item--x2,  .grid--5col .grid__item--x3,  .grid--5col .grid__item--x4,  .grid--6col .grid__item--x2,  .grid--6col .grid__item--x3, .grid--6col .grid__item--x4, .grid--6col .grid__item--x5 {
	 width: 100%;
}
.grid--2col .grid__item--padding, .grid--3col .grid__item.grid__item--padding,  .grid--3col .grid__item--x2.grid__item--padding, .grid--4col .grid__item.grid__item--padding, .grid--4col .grid__item--x3.grid__item--padding, .grid--5col .grid__item.grid__item--padding,  .grid--5col .grid__item--x2.grid__item--padding,  .grid--5col .grid__item--x3.grid__item--padding,  .grid--5col .grid__item--x4.grid__item--padding, .grid--6col .grid__item.grid__item--padding,  .grid--6col .grid__item--x2.grid__item--padding,  .grid--6col .grid__item--x3.grid__item--padding,  .grid--6col .grid__item--x4.grid__item--padding,  .grid--6col .grid__item--x5.grid__item--padding{
	 width: calc(100% - 20px * 2);
	 padding:20px;
}
.grid__title{
	font-size:18px;
}
.grid__text {
	padding-bottom:20px;
	line-height:22px;
}
/*       FOOTER 	   */
/*=====================*/
.footer__content{
	padding-top:50px;
}
ul.grid__list--fmenu li {
	display:block;
    float:left;
	margin:0 20px 10px 0;
}


/*              CUSTOM SECTIONS 	      */
/*========================================*/
/*  INTRO 	 */
/*---------------*/
.intro{
	width:100%;
	padding:250px 0 0 0;
}
.intro__title{
	padding:0 0 25px 0;
	font-size:50px;
	line-height:55px;
}
.intro__subtitle{
	font-size:22px;
	line-height:24px;
}
.intro__description{
	font-size:16px;
	padding:0 0 20px 0;
}
.intro__buttons{
	 padding:20px 0 0 0;
}
.btn{
	padding:10px 30px; 
	margin:0 5px;
}
.btn--play{
	padding-right:60px;
}
.intro-animation{
  width:90%;
  height:35%;
  float:left; 
  text-align:right;
	position:absolute;
	bottom:200px;
	left:5%;
	z-index:222;
}
.intro-animation img{
  max-width:100%;
}
svg.svg-intro-bottom {
  height: 20%;
  bottom: -1px;
}
svg.svg-intro-bottom-2 {
  height: 35%;
}
/*  ABOUT 	 */
/*---------------*/
.grid--about .grid__title{
	font-size:28px;
	line-height:36px;
}
.grid--about .grid__text{
	font-size:16px;
	line-height:24px;
}
.acordeon .grid.grid--6col.grid--faq{
	display: inline-grid;
}
.acordeon .grid.grid--6col.grid--faq .grid__item p>img{
	max-width: 280px;
	width: 100%;
}
.acordeon .grid.grid--6col.grid--faq .grid__item.grid__item--x3:nth-child(1){
	order: 2;
}
.acordeon .grid.grid--6col.grid--faq .grid__item.grid__item--x3:nth-child(2){
	order: 1;
	margin-bottom: 80px !important;
}
.grid--support .grid__item.grid__item--padding{
	padding: 30px;
}
/*  FEATURES 	 */
/*---------------*/
.section--features{
	padding:0 0 40px 0;
}
svg.svg-features-bottom {
  height: 40px;
}

/*  HOW IT WORKS 	 */
/*---------------*/
.hiw-titles__slide{
	 width: calc(100% / 3);
	 padding:10px 0; 
	 margin:0 0 10px 0;
}
.hiw-buttons button{
	margin-bottom:10px;
}
/*  PRICING 	 */
/*---------------*/
.pricing__switcher{
	width:260px;
	margin:0 auto 40px auto;
}
.pricing__plan{       
	width: 100%;  
	padding:20px 0;	
	margin:0 0 10px 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-moz-box-shadow: none;
}
.pricing__plan--popular {
	z-index: 2;
	top: 0px;
	padding:20px 0;
	-moz-box-shadow: 10px 0 15px -10px rgba(0, 0, 0, .45), -10px 0 15px -10px rgba(0, 0, 0, .45);
	-webkit-box-shadow: 10px 0 15px -10px rgba(0, 0, 0, .45), -10px 0 15px -10px rgba(0, 0, 0, .45);
	box-shadow: 10px 0 15px -10px rgba(0, 0, 0, .45), -10px 0 15px -10px rgba(0, 0, 0, .45);    
}
/*  TESTIMONIALS 	 */
/*---------------*/
 .section--testimonials{
	-webkit-background-size: 90% auto;
	-moz-background-size:  90% auto;
	-o-background-size:  90% auto;
	background-size:  90% auto;
	background-position:center 40px;
}  
 .testimonials{
	width: 100%;
	height: auto;
}
.testimonials__item{
	position:relative;
}
.testimonials__item:nth-child(1){
	top:auto;
	left:auto;
}
.testimonials__item:nth-child(2){
	top:auto;
	left:auto;
}
.testimonials__item:nth-child(3){
	top:auto;
	left:auto;
}
.testimonials__item:nth-child(4){
	top:auto;
	left:auto;
}
.testimonials__item:nth-child(5){
	top:auto;
	left:auto;
}
.testimonials__item:nth-child(6){
	top:auto;
	left:auto;
}
.testimonials__item:nth-child(7){
	top:auto;
	left:auto;
}
.testimonials__item--x2 .testimonials__thumb img{
	width:40px;
}
.testimonials__item--x3 .testimonials__thumb img{
	width:40px;
}
.testimonials__item--x4 .testimonials__thumb img{
	width:40px;
}
.testimonials__content{
    opacity: 1; 
	height:auto;
	width:180px;
	padding:20px;
    overflow: hidden;
}
.testimonials__item--x2 .testimonials__content{
	-webkit-transform: translateX(70px) translateY(-50px);
	transform: translateX(70px) translateY(-50px);
}
.testimonials__item--x3 .testimonials__content{
	-webkit-transform: translateX(70px) translateY(-50px);
	transform: translateX(70px) translateY(-50px);
}
.testimonials__item--x4 .testimonials__content{
	-webkit-transform: translateX(70px) translateY(-50px);
	transform: translateX(70px) translateY(-50px);
}
.testimonials__item:hover .testimonials__content{
	 box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow:none;
	width:180px;
}
.testimonials__item:hover .testimonials__thumb img{
	 box-shadow: 0 0 10px 0px rgba(0,0,0,0.18);
	-moz-box-shadow: 0 0 10px 0px rgba(0,0,0,0.18);
	-webkit-box-shadow: 0 0 10px 0px rgba(0,0,0,0.18);
	transform: scale(1);
}
.testimonials__text p{
	font-size:14px;
	line-height:20px;
}
.testimonials__source{
	font-size:18px;
	padding:0 0 5px 0;
	line-height:20px;
}
.testimonials__source a{
	font-size:12px;
	font-weight:400;
}
/*  CONTACT 	 */
/*---------------*/
.grid--contact{
	display:block;
}
.grid--contact .grid__item, .grid--6col .grid__item{
	margin-bottom:0px !important;
}
.grid__form{
	width:90%;
	padding:0 5%;
	position:relative;
}
.form__submit{
	margin:30px 0 0 0;
}
.svg-form-left{
	display:none;
}

/*  Modal	 */
/*---------------*/
.modal__wrapper {
  top: 5%;
  width: 90%;
  margin-left: -45%;
}
.modal__wrapper--image {
  top: 10%;
  left: 14%;
  width: 86%;
  bottom:auto;
  margin-left: -7%;
}
.modal__content.modal__content--visible{
  display: block;
}
.modal__info{
	display:none;
}
.modal__form{
	width:90%;
	height:100%;
	display:block;
	padding:20px 5%;
}
.modal__content--login, .modal__content--forgot, .modal__content--signup{
  background-color:#fff;
}
.modal__image{
	height:auto;
}
.modal__image img{
	max-width:100%;
	max-height:auto;
}
.grid--features .grid__item{
	 margin-right:0px;
	 margin-bottom:0px; 
	 width: 90%;
	 padding:5%;
}
.grid--support .grid__item{
	 margin-right:0px;
	 margin-bottom:0px; 
	 width: 90%;
}
.grid--support .grid__item.grid__item--padding{
	 margin-right:0px;
	 margin-bottom:0px;
}
.form-box .grid__item{
	margin-top: 10px;
	margin-bottom: 10px;
}
.hiw-content__slide{
	height:auto;
}
.hiw-content__slide pre{
 white-space: pre-wrap;       
 white-space: -moz-pre-wrap;  
 white-space: -pre-wrap;     
 white-space: -o-pre-wrap;   
 word-wrap: break-word;
}

 .section--cta{
	padding-bottom:0px;
}
.svg-cta-bottom{
	display:none;
}
.grid--cta{
	display: block;
}
.grid__title--cta {
    font-size: 36px;
}
.grid--cta .grid__item{
	width: 90%;
	padding:0 5%;
}
.grid--cta .grid__more{
	padding: 20px 32px;
}
.form-box{
	height: 655px;
}
}
/*===============================================*/
/* Small Mobile under 600	  					 */
/*===============================================*/
@media screen and (max-width: 600px) {
	.intro-animation{
		bottom: 140px;
	}
.intro__title{
	padding:5% 0 10px 0;
	font-size:30px;
	line-height:50px;
}
.intro__subtitle{
	font-size:14px;
	line-height:20px;
}
.intro__description{
	font-size:12px;
}
.btn{
	padding:8px 15px; 
}
.btn--play{
	padding-right:40px; 
}
.intro {
    padding: 238px 0 0 0;
}
}

.slider {
    width: 100%;
    position: relative;
}
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(0,0,0,0.5);
    color: white;
    font-size: 2rem;
    padding: 10px;
    transition: .3s;
    z-index: 5;
	display: none;
}
.slider-prev:hover, .slider-next:hover {
    background-color: rgb(0,0,0,0.8);
    cursor: pointer;
    transition: .3s;
}
.slider-prev {
    left: 10px;
}
.slider-next {
    right: 10px;
}
.slide-item {
    display: none;
}
.first {
    display: block;
}
.slide-texto {
	text-shadow: 2px 3px 1px #000;
    position: absolute;
    padding: 10px;
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
}

/* Whats app */
#nta-wa-gdpr{
    vertical-align: text-top !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nta-wa-gdpr{
    font-size: 11px;
    padding: 5px;
    margin-left: -5px;
    margin-right: -5px;
    border-radius: 4px;
}

.nta-wa-gdpr a{
    text-decoration: underline;
    color: inherit;
}

.pointer-disable{
    pointer-events: none;
}

.nta-woo-products-button:before, .nta-woo-products-button:after{
    content: '';
    display: block;
    clear: both;
}

.wa__button{
    border-bottom: none !important;
}

.wa__btn_w_img:hover{
	text-decoration: none;
}

.wa__button,
.wa__btn_popup,
.wa__button *,
.wa__btn_popup *,
.wa__btn_popup :before,
.wa__button :before,
.wa__button :after,
.wa__btn_popup :after,
.wa__popup_chat_box,
.wa__popup_chat_box *,
.wa__popup_chat_box :before,
.wa__popup_chat_box :after{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* VVV--button--VVV */
.wa__button{
    position: relative;
    width: 300px;
    min-height: 64px;
    display: block;
    font-family: Arial,Helvetica,sans-serif;
    text-decoration: none;
    color: #fff;
    box-shadow: 0px 4px 8px 1px rgba(32,32,37,0.09);
    -webkit-box-shadow: 0px 4px 8px 1px rgba(32,32,37,0.09);
    -moz-box-shadow: 0px 4px 8px 1px rgba(32,32,37,0.09);
}
.wa__btn_txt{
    display: inline-block;
    font-size: 12px;
    line-height: 1.33em;
}

.wa__btn_w_icon .wa__btn_txt{
    padding: 16px 20px 15px 71px;
}

.wa__button_text_only .wa__btn_txt,
.wa__r_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt,
.wa__sq_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt{
    padding-top: 25px;
    padding-bottom: 24px;
}



.wa__btn_w_icon .wa__btn_txt .wa__btn_title{
    font-weight: 600;
    padding-left: 2px;
    font-size: 14px;
}

.wa__cs_info{
    margin-bottom: 2px
}

.wa__btn_status{
    color: #F5A623;
    font-size: 9px;
    padding: 2px 0 0;
    font-weight: 700;
}

.wa__cs_info .wa__cs_name,
.wa__cs_info .wa__cs_status{
    display: inline-block;
}

.wa__cs_info .wa__cs_name{
    font-weight: 400;
    font-size: 12px;
    line-height: 1.36em;
}

.wa__stt_online .wa__cs_info .wa__cs_name{
    color: #d5f0d9
}

.wa__stt_offline .wa__cs_info .wa__cs_name{
    color: #76787d;
}

.wa__cs_info .wa__cs_status{
    width: 36px;
    height: 14px;
    margin-left: 3px;
    padding: 1px;
    font-size: 9px;
    line-height: 1.34em;
    border-radius: 5px;
    color: rgba(255,255,255,0.98);
    position: relative;
    top: -1px;
    left: 0px;
    text-align: center;
}

.wa__stt_online .wa__cs_info .wa__cs_status{
    background: #62c971;
}

.wa__stt_offline .wa__cs_info .wa__cs_status{
    background: #b9bbbe;
}


.wa__stt_online{
    background: #2DB742;
    cursor: pointer;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    backface-visibility: hidden;
    will-change: transform;
}
.wa__stt_online .wa__btn_txt{
    position: relative;
    z-index: 4;
}
.wa__r_button.wa__stt_online:before{
    border-radius: 50vh;
}
.wa__sq_button.wa__stt_online:before{
    border-radius: 5px;
}
.wa__stt_online:before{
    content: '';
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    background: rgba(0,0,0,0.2);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    will-change: opacity;
}
.wa__button.wa__stt_online:focus,
.wa__button.wa__stt_online:active,
.wa__button.wa__stt_online:hover{
    box-shadow: 0px 4px 8px 1px rgba(32,32,37,0.19);
    transform: translate(0,-3px);
    -webkit-transform: translate(0,-3px);
    -moz-transform: translate(0,-3px);
    -ms-transform: translate(0,-3px);
}
.wa__button.wa__stt_online:focus:before,
.wa__button.wa__stt_online:active:before,
.wa__button.wa__stt_online:hover:before{
    opacity: 1;
}
.wa__stt_online.wa__btn_w_icon .wa__btn_icon img{
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
}

.wa__stt_offline{
    background: #EBEDF0;
    color: #595B60;
    box-shadow: none;
    cursor: initial;
}

.wa__stt_offline.wa__btn_w_icon .wa__btn_txt {
    padding: 8px 20px 6px 71px;
}

.wa__stt_offline.wa__r_button.wa__btn_w_img .wa__btn_txt{
    padding: 8px 20px 8px 100px
}

.wa__stt_offline.wa__sq_button.wa__btn_w_img .wa__btn_txt {
    padding: 8px 20px 8px 70px;
}

.wa__btn_w_icon .wa__btn_icon{
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}

.wa__btn_w_icon .wa__btn_icon img{
    width: 41px;
    height: 69px;
}

.wa__btn_w_img{
    position: relative;
    width: 300px;
    margin: 20px 0 20px;
}

.wa__btn_w_img .wa__cs_img{
    position: absolute;
    top: 50%;
    left: 0px;
    text-align: center;
    transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
}
.wa__btn_w_img .wa__cs_img_wrap{
    width: 79px;
    height: 79px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 3px solid #ffffff;
    position: relative;
    overflow: hidden;
}
.wa__btn_w_img .wa__cs_img img{
    max-width: 100%;
    height: auto;
    transition: 0.2s ease transform;
    -webkit-transition: 0.2s ease transform;
    -moz-transition: 0.2s ease transform;
}
.wa__btn_w_img .wa__cs_img:after{
    content: '';
    background: #ffffff url('../img/whatsapp_logo_green.svg') center center no-repeat;
    background-size: 21px;
    display: block;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 20px;
    right: -14px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
    -webkit-box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
    -moz-box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
}

.wa__stt_offline.wa__btn_w_img .wa__cs_img:after{
    content: '';
    background: #ffffff url('../img/whatsapp_logo_gray.svg') center center no-repeat;
    background-size: 21px;
    display: block;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 20px;
    right: -14px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
    -webkit-box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
    -moz-box-shadow: 0px 4px 6px 0px rgba(39,38,38,0.3);
}


.wa__btn_w_img .wa__btn_txt{
    padding:14px 20px 12px 103px;
}

.wa__r_button{
    border-radius: 50vh;
}

.wa__sq_button{
    border-radius: 5px;
}

.wa__sq_button.wa__btn_w_img{
    width: 270px;
    margin-left: 30px;
}

.wa__r_button.wa__btn_w_img .wa__cs_img{
    left: -5px;
}

.wa__sq_button.wa__btn_w_img .wa__cs_img{
    left: -35px;
}

.wa__sq_button.wa__btn_w_img .wa__btn_txt{
    padding: 10px 20px 10px 70px;
    display: table-cell;
	vertical-align: middle;
	height: 66px;
}

.wa__btn_txt .wa__btn_title{
    font-weight: 600;
}

.wa__r_button.wa__btn_w_img .wa__btn_txt{
    padding: 8px 20px 8px 100px;
	display: table-cell;
	vertical-align: middle;
	height: 66px;
}

.wa__r_button.wa__btn_w_img .wa__cs_info .wa__cs_status{
    margin-left: 3px;
}
/* ^^^--button--^^^ */

/* VVV--popup--VVV */

.wa__popup_chat_box{
    font-family: Arial,Helvetica,sans-serif;
    width: 351px;
    border-radius: 5px 5px 8px 8px;
    -webkit-border-radius: 5px 5px 8px 8px;
    -moz-border-radius: 5px 5px 8px 8px;
    position: fixed;
    overflow: hidden;
    box-shadow: 0px 10px 10px 4px rgba(0,0,0,0.04);
    -webkit-box-shadow: 0px 10px 10px 4px rgba(0,0,0,0.04);
    -moz-box-shadow: 0px 10px 10px 4px rgba(0,0,0,0.04);
    bottom: 102px;
    right: 25px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    -ms-transform: translate(0,50px);
    transform: translate(0,50px);
    -webkit-transform: translate(0,50px);
    -moz-transform: translate(0,50px);
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    will-change: transform,visibility,opacity;
    max-width: calc(100% - 50px);
}
.wa__popup_chat_box:hover,
.wa__popup_chat_box:focus,
.wa__popup_chat_box:active{
    box-shadow: 0px 10px 10px 4px rgba(32,32,37,0.23);
    -webkit-box-shadow: 0px 10px 10px 4px rgba(32,32,37,0.23);
    -moz-box-shadow: 0px 10px 10px 4px rgba(32,32,37,0.23);
}
.wa__popup_chat_box.wa__active{
    -ms-transform: translate(0,0);
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    visibility: visible;
    opacity: 1;
}
.wa__popup_chat_box .wa__popup_heading{
    position: relative;
    padding: 15px 43px 17px 74px;
    color: #d9ebc6;
    background: #00d040;
}
.wa__popup_chat_box .wa__popup_heading_sm{
    padding: 12px 15px 17px 74px;
}
.wa__popup_chat_box .wa__popup_heading:before{
    content: '';
    background: url('./images/whatsapp.svg') center top no-repeat;
    background-size: 55px;
    display: block;
    width: 55px;
    height: 55px;
    position: absolute;
    top: 20px;
    left: 12px;
}
.wa__popup_chat_box .wa__popup_heading_sm:before{
    top: 19px;
    left: 11px;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_title{
    padding-top: 2px;
    padding-bottom: 3;
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_intro{
    padding-top: 4px;
    font-size: 12px;
    line-height: 20px;
}
.wa__popup_chat_box .wa__popup_heading_sm .wa__popup_intro{
    padding-top: 0px;
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a{
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
}
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:hover,
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:focus,
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:active{
    text-decoration: underline;
}

.wa__popup_chat_box  .wa__popup_notice{
    font-size: 11px;
    color: #a5abb7;
    font-weight: 500;
    padding: 0 3px;
}
.wa__popup_chat_box .wa__popup_content{
    background: #ffffff;
    padding: 13px 20px 21px 19px;
    text-align: center;
}
.wa__popup_chat_box .wa__popup_content_left{
    text-align: left;
}
.wa__popup_chat_box .wa__popup_avatar{
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    left: 12px;
    top: 12px;
}

.wa__popup_chat_box .wa__popup_avatar.nta-default-avt{
    border-radius: unset;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
}

.wa__popup_chat_box .wa__stt{
    padding: 13px 40px 12px 74px;
    position: relative;
    text-decoration: none;
    display: table;
    width: 100%;
    border-left: 2px solid #2db742;
    background: #f5f7f9;
    border-radius: 2px 4px 2px 4px;
    -webkit-border-radius: 2px 4px 2px 4px;
    -moz-border-radius: 2px 4px 2px 4px;
}
.wa__popup_chat_box .wa__stt:after{
    content: '';
    background: url('../img/whatsapp_logo_green.svg') 0 0 no-repeat;
    position: absolute;
    right: 14px;
    top: 26px;
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
}
.wa__popup_chat_box .wa__stt.wa__stt_offline:after{
    background-image: url('../img/whatsapp_logo_gray_sm.svg');
}
.wa__popup_chat_box .wa__stt.wa__stt_online{
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
}
.wa__popup_chat_box .wa__stt.wa__stt_online:hover,
.wa__popup_chat_box .wa__stt.wa__stt_online:active,
.wa__popup_chat_box .wa__stt.wa__stt_online:focus{
    background: #ffffff;
    box-shadow: 0px 7px 15px 1px rgba(55,62,70,0.07);
    -webkit-box-shadow: 0px 7px 15px 1px rgba(55,62,70,0.07);
    -moz-box-shadow: 0px 7px 15px 1px rgba(55,62,70,0.07);
}
.wa__popup_content_list .wa__popup_content_item{
    margin: 14px 0 0;
    transform: translate(0,20px);
    -webkit-transform: translate(0,20px);
    -moz-transform: translate(0,20px);
    will-change: opacity,transform;
    opacity: 0;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item{
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition-delay: 2.1s;
    -webkit-transition-delay: 2.1s;
    -moz-transition-delay: 2.1s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(1){
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(2){
    transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(3){
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
    -moz-transition-delay: 0.7s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(4){
    transition-delay: 0.9s;
    -webkit-transition-delay: 0.9s;
    -moz-transition-delay: 0.9s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(5){
    transition-delay: 1.1s;
    -webkit-transition-delay: 1.1s;
    -moz-transition-delay: 1.1s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(6){
    transition-delay: 1.3s;
    -webkit-transition-delay: 1.3s;
    -moz-transition-delay: 1.3s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(7){
    transition-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
    -moz-transition-delay: 1.5s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(8){
    transition-delay: 1.7s;
    -webkit-transition-delay: 1.7s;
    -moz-transition-delay: 1.7s;
}
.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(9){
    transition-delay: 1.9s;
    -webkit-transition-delay: 1.9s;
    -moz-transition-delay: 1.9s;
}
.wa__popup_chat_box.wa__lauch .wa__popup_content_list .wa__popup_content_item{
    opacity: 1;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
}
.wa__popup_content_list .wa__popup_content_item .wa__member_name{
    font-size: 14px;
    color: #363c47;
    line-height: 1.188em !important;
}
.wa__popup_content_list .wa__popup_content_item .wa__member_duty{
    font-size: 11px;
    color: #989b9f;
    padding: 2px 0 0;
    line-height: 1.125em !important;
}
.wa__popup_content_list .wa__popup_content_item .wa__member_status{
    color: #F5A623;
    font-size: 10px;
    padding: 5px 0 0;
    line-height: 1.125em !important;
}
.wa__popup_content_list .wa__popup_content_item .wa__popup_txt{
    display: table-cell;
    vertical-align: middle;
    min-height: 48px;
    height: 48px;
}
.wa__popup_content_list .wa__popup_content_item .wa__stt_offline{
    border-left-color: #c0c5ca;
}
.wa__popup_avt_list{
    font-size: 0;
    margin: 7px 0 24px;
}
.wa__popup_avt_list .wa__popup_avt_item{
    display: inline-block;
    position: relative;
    width: 46px;
}
.wa__popup_avt_list .wa__popup_avt_img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffffff;
    left: -7px;
}
.wa__popup_call_btn{
    background: #2db742;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    width: 275px;
    max-width: 100%;
    font-size: 16px;
    padding: 14px 10px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    margin: 25px 0 15px;
    box-shadow: 0px 8px 17px 2px rgba(13,15,18,0.2);
    -webkit-box-shadow: 0px 8px 17px 2px rgba(13,15,18,0.2);
    -moz-box-shadow: 0px 8px 17px 2px rgba(13,15,18,0.2);
}
.wa__popup_call_btn.wa__popup_call_btn_lg:before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    background: url('../img/whatsapp_logo_green_sm.svg') 0 0 no-repeat;
    background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    vertical-align: top;
    top: 0px;
    margin-right: -19px;
    left: -31px;
    transition: 0.2s ease background-image;
    -webkit-transition: 0.2s ease background-image;
    -moz-transition: 0.2s ease background-image;
}
.wa__popup_call_btn.wa__popup_call_btn_lg:hover:before,
.wa__popup_call_btn.wa__popup_call_btn_lg:focus:before,
.wa__popup_call_btn.wa__popup_call_btn_lg:active:before{
    background-image: url('../img/whatsapp_logo.svg')
}

.wa__popup_chat_box_gray{
    border-radius: 2px 2px 8px 8px;
}

.wa__popup_chat_box_gray .wa__popup_heading_gray{
    background: #f8f8f8;
    border-top: 3px solid #2db742;
    color: #868c9a;
    font-weight: 500;
}
.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_title{
    color: #595b60;
}
.wa__popup_chat_box_gray .wa__popup_heading_gray:before{
    content: ''; 
    background: url(../img/whatsapp_logo_green.svg) center top no-repeat;
    background-size: 33px;
    display: block;
    width: 55px;
    height: 33px;
    position: absolute;
    top: 20px;
    left: 12px;
}
.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_intro a{
    color: #595b60;
}

.wa__popup_chat_box_ct{
    width: 384px;
    text-align: center;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct{
    text-align: center;
    padding: 18px 0 18px;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct:before {
    content: '';
    background: url(../img/whatsapp_logo.svg) center top no-repeat;
    background-size: 30px;
    display: block;
    width: 30px;
    height: 31px;
    position: absolute;
    top: 15px;
    left: 72px;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_title{
    padding-left: 22px;
    padding-bottom: 14px;
}

.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_intro{
    margin-top: -5px;
    line-height: 12px;
}

.wa__popup_chat_box_ct .wa__popup_ct_avt_list:after{
    content: '';
    clear: both;
    display: block;
}

.wa__popup_chat_box_ct .wa__popup_ct_content{
    background: #ffffff;
    padding: 0 0 14px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content .wa__popup_notice{
    padding-top: 18px;
    padding-bottom: 15px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item{
    width: 33%;
    float: left;
    font-size: 10px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item a{
    text-decoration: none;
    color: #989b9f;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__popup_ct_txt{
    padding-top: 8px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_name{
    color: #363c47;
    font-size: 13px;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_duty{
    color: #989b9f;
    padding: 3px 0 0;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_online{
    color: #2db742;
    font-size: 9px;
    line-height: 12px;
    display: inline-block;
    padding: 3px 0 0 16px;
    background: url('../images/whats.png') 0 3px no-repeat;
    background-size: 12px auto;
    -webkit-background-size: 12px auto;
    -moz-background-size: 12px auto;
}

.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_offline{
    color: #f5a623;
    font-size: 9px;
    line-height: 12px;
    padding: 2px 0 0;
}


.wa__popup_chat_box_ct .wa__popup_ct_avatar img{
    border-radius: 50%
}

.wa__popup_chat_box_ct .wa__popup_ct_call_btn{
    width: 97px;
    font-size: 11px;
    padding: 9px 10px 11px;
    margin: 15px 0 15px;
}

/* ^^^--popup--^^^ */

/* VVV--popup button--VVV */
.wa__btn_popup{
    position: fixed;
    right: 30px;
    bottom: 60px;
    cursor: pointer;
    font-family: Arial,Helvetica,sans-serif;
    z-index: 999;
}
.wa__btn_popup .wa__btn_popup_icon{
    width: 56px;
    height: 56px;
    background: #00d040;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
    -webkit-box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 6px 8px 2px rgba(0,0,0,0.14);
}
.wa__btn_popup .wa__btn_popup_icon:before{
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url('./images/whatsapp.svg') center center no-repeat;
    background-size: 35px auto;
    -webkit-background-size: 35px auto;
    -moz-background-size: 35px auto;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
}
.wa__btn_popup .wa__btn_popup_icon:after{
    content: '';
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url('./images/whatsapp.svg') center center no-repeat;
    background-size: 30px auto;
    -webkit-background-size: 30px auto;
    -moz-background-size: 30px auto;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -ms-transform: scale(0) rotate(-360deg);
    transform: scale(0) rotate(-360deg);
    -webkit-transform: scale(0) rotate(-360deg);
    -moz-transform: scale(0) rotate(-360deg);
}
.wa__btn_popup.wa__active .wa__btn_popup_icon:before{
    opacity: 0;
    -ms-transform: scale(0) rotate(360deg);
    transform: scale(0) rotate(360deg);
    -webkit-transform: scale(0) rotate(360deg);
    -moz-transform: scale(0) rotate(360deg);
}
.wa__btn_popup.wa__active .wa__btn_popup_icon:after{
    opacity: 1;
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
}
.wa__btn_popup .wa__btn_popup_txt{
    position: absolute;
    width: 156px;
    right: 100%;
    background-color: #f5f7f9;
    font-size: 12px;
    color: #43474e;
    /*top: 15px;*/
    top: 7px;
    /* top: 50%;
    transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%); */
    padding: 7px 0 7px 12px;
    margin-right: 7px;
    letter-spacing: -0.03em;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
}
.wa__btn_popup.wa__active .wa__btn_popup_txt{
    -ms-transform: translate(0,15px);
    transform: translate(0,15px);
    -webkit-transform: translate(0,15px);
    -moz-transform: translate(0,15px);
    opacity: 0;
    visibility: hidden;
}