/*===============================================*/
/* 1. RESET		 						 */
/*===============================================*/
@import "css/reset.css";
/*===============================================*/
/* 2. GENERAL		 						 */
/*===============================================*/	
html, body{
	width: 100%; 
	height:100%;
}
body{
	font-family: 'Assistant', sans-serif;
	padding:0;
	font-size:16px;
	margin:0 auto;
	color:#000;
	background-color:#fff;
	font-weight:300;
}
.clear{
	clear:both;
}
p{
	padding:0;
	margin:0px;
	text-align:left;
	line-height:26px;
}
a{
	text-decoration:none;
	color:#313ee7; 
}

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:80px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	position: fixed;
	top: 0px;
	left:0px;
	z-index: 999;
}
/* MODIFIER - header */
.header--sticky{
	background-color:#fff;
    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:80px;
}
/* ELEMENT MODIFIER - header__content */
.header__content--fix-width{
	width:1240px;
	margin:auto;
	clear:both;
}
.header__content--fluid-width{
	width:90%;
	margin:auto;
	clear:both;
}
.header__logo-title{
	
	font-size:30px;
	letter-spacing:-1px;
	position:relative;
	float:left;
	top: 50%;
	left:0;
	transform: translateY(-50%);
	z-index:999;
	font-weight:700;
}
.header__logo-title a{
	color:#fff;
}
.header__logo-title a span{
	font-weight:700;
	color:#00edad;
}
.header--sticky .header__logo-title a, .header--page .header__logo-title a, .menu-open .header__logo-title a{
	color:#000;
}
/* 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:12px;
  right:6%;
  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:80px;
	line-height:80px; 
	color:#fff; 
	font-size:13px;
	display:inline-block;
	letter-spacing: 1px;
	padding:0 25px; 
	margin:0;
	font-weight:400;
	overflow: hidden;
}
.header--sticky .header__menu > ul > li > a, .header--page .header__menu > ul > li > a, .menu-open .header__menu > ul > li > a{
color:#000;
}

.header__menu > ul > li.dribbble > a {
    height:20px;
	line-height:20px;
	border-left:1px #4e4477 solid;
	color:#ea4c89;
	margin:30px 0 0 0;
	padding:0 15px 0 20px; 
}
.header--sticky .header__menu > ul > li.dribbble > a, .header--page .header__menu > ul > li.dribbble > a{
	border-left:1px #160e37 solid;
}
.menu-open .header__menu > ul > li.dribbble > a{
	border-left:none;
}
.header__menu > ul > li.twitter > a {
    height:20px;
	line-height:20px;
	color:#1da1f2;
	margin:30px 0 0 0;
	padding:0 10px 0 20px; 
}
.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  a:hover, .header__menu ul li a.selected , .header__menu ul li a.active{
	color: #00edad;
}
.header__menu ul li.header__btn--signup a.active { 
	color:#fff; 
}
.header__menu ul li.header__btn--login a.active {
	color:#313ee7; 
}
.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 #f7f7f7 solid;
  margin:0 10px;
  font-size:14px;
  line-height:45px; height:45px;
}
.header__menu ul ul li a:hover{ color: #313ee7; }
.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--full-width{
	width:90%;
	margin:auto;
	clear:both;
}
.section__content--padding{
	padding:140px 0;
}
/* ELEMENT - section__title */
.section__title{
	font-size:38px;
	padding:0 0 40px 0;
	font-weight:700;
	line-height:52px;
	letter-spacing:-1px;
}
.section__title span{
	color: #00edad;
}
/* 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;
	letter-spacing:1px;
	color: #a8a8a8;
}
/* ELEMENT MODIFIER section__description  */
.section__description--centered{
	width:60%;
	margin:auto;
	text-align:center;
	padding:0 0 60px 0;
}
/*===============================================*/
/* 5. GRID 	 						 */
/*===============================================*/

/* BLOCK - grid */
.grid{
	width:100%;
	clear:both;
	display:flex;
	flex-wrap:wrap;
}
.grid__item--padding{
	 background-color:#f7f7f7;
}
/* -----------------------------------------------------  */
 /* ELEMENT grid__item BASED ON BLOCK MODIFIER grid--2col  */
.grid--2col .grid__item{

	 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{
	
	 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{
	 
	 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:80px;
	 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 5px 20px;
	margin:0px;
	line-height:22px;
	background:url(images/checked-pricing.png) no-repeat left;
}

 /* 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 10px;
	font-size:16px;
	letter-spacing:1px;
	font-weight:600;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease; 
 }
.btn--blue-bg{
	color:#00edad;
	border:1px #00edad solid;
}
.btn--blue-bg:hover{
	background-color:#00edad;
	color:#160e37;
}
.btn--blue-border{ 
	color:#313ee7; 
	border:1px #313ee7 solid;
}
.btn--blue-border:hover{ 
	background-color:#313ee7; 
	color:#fff;
}
.btn--green-bg{
	color:#fff;
	background-color:#28e180;
	border:2px #28e180 solid;
}
.btn--green-bg:hover{
	color:#28e180;
	background:none;
}
.btn--green-border{ 
	color:#28e180; 
	border:1px #28e180 solid;
}
.btn--green-border:hover{ 
	background-color:#28e180; 
	color:#fff;
}

/*================================================================================*/
/*  7. CUSTOM SECTIONS  */
/*===============================================================================*/

/*===============================================*/
/*  7.1 CUSTOM SECTION - INTRO	 			 */
/*===============================================*/
.section--intro{
	width:100%;
	height:100%;
	background-color:#160e37;
	position:relative;
	overflow:hidden;
}
.section__content--intro{
	height:100%;
}
.intro{
	width:100%;
	height:100%;
}

.intro__content{
	width:55%;
	float:left;
	position:relative;
	top: 45%;
	left:0;
	transform: translateY(-50%);
	z-index:333;
}
.intro__title{
	padding:0 0 10px 0;
	color:#fff;
	font-size:75px;
	letter-spacing:-2px;
	font-weight:200;
}
.intro__title span{
	font-weight:700;
}
.intro__subtitle{
	padding:0 0 40px 0;
	font-size:32px;
	color:#fff;
	letter-spacing:1px;
	font-weight:200;
}
.intro__description{
	padding:0 0 40px 0;
	font-size:20px;
}
.intro__description span{
	font-weight:700;
	color:#313ee7;
}
.intro__buttons{
	padding:20px 0 0 0;
}
 .intro__buttons--centered{
	 width:100%;
	 clear:both;
	 text-align:center;
 }
.intro__frames{
	width:60%;
	height:99%;
	top:20%;
	right:-10%;
	position:absolute;
}
.parallax-frame{
	position:absolute;
	bottom:0px;
	right:0px;
	z-index:222;
}
.parallax-frame img{
	display:block;
	max-width:100%;
}
 

/*===============================================*/
/*  7.2 CUSTOM SECTION - ABOUT	 			 */
/*===============================================*/
.about__text{
	width:70%;
	margin:auto;
	text-align:center;
	font-size:20px;
	line-height:32px;
	font-weight:300;
	padding:0 0 0 0;
}
/*===============================================*/
/*  7.3 CUSTOM SECTION - services	 			 */
/*===============================================*/
.section--services{
	background-color: #00edad;
	color:#130b33;
	position:relative;
	
}
.section__title--services{
	color:#130b33;
}
.section__title--services span{
	color:#fff;
}
.section__title--services:after {
    content:'';
    position:absolute;
    left:0;right:0;
    top:80%;
    margin:auto;
    width:50px;
    height:1px;
	background-color:#fff;
}
.section__description--services{
	color:#fff;	
}
.section--services h3{
	color:#130b33;
}
.grid--services .grid__item{
	 margin-right:80px;
	 margin-bottom:0px;
	          /* full width - space between cols * nr of inner spaces / number of cols */
	 width: calc((100% - 80px * 2) / 3);
}
.grid--services .grid__item:hover .grid__title:after{
	width:100%;
	left:0px;
	opacity:1;
}
.grid--services .grid__title{
	font-size:24px;
	font-weight:700;
	padding:10px 0 40px 0;
	margin:0px;
	position:relative;
	text-align:center;
}
.grid--services .grid__title:after {
    content:'';
    position:absolute;
    left:45%;
    top:75%;
    margin:0;
    width:10%;
    height:1px;
    background:#fff;
	opacity:.5;
	-webkit-transition: all .5s ease-out;
	-moz-transition: all .5s ease-out;
	-o-transition: all .5s ease-out;
	transition: all .5s ease-out;
}
.grid--services .grid__title span{
	font-weight:300;
}
.grid--services .grid__icon{
	margin:auto;
	text-align:center;
}
.grid--services .grid__item blockquote{
	font-style:italic;
	font-size:16px;
	padding:0 5%;
	height:100px;
	margin:0 0 0 0;
	line-height:24px;
	position:relative;
	text-align:center;
	color:#fff;
}
.grid--services .grid__item blockquote span{
	display:block;
	font-weight:700;
}
.grid--services .grid__list{
	list-style:none;
	padding:0px;
	margin:0px 0 0 15%;
}
/*===============================================*/
/*  7.4 CUSTOM SECTION - TESTIMONIALS 			 */
/*===============================================*/
 .section--testimonials{
	background-color:#f7f7f7; 
 }
 .testimonials{
  width: 100%;
  height: auto;
  overflow:hidden;
  position:relative;
  margin:0;
  padding:40px 0 40px 0;
   
}
.testimonials__slide {
	text-align: center;
}
.testimonials__slide:hover{
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}
.testimonials__thumb{
	padding:0 0 40px 0;
}
.testimonials__thumb img{
	width:100px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	padding:10px;
	background-color:#fff;
	margin:auto;
}
.testimonials__text{
	width:80%;
	margin:auto;
}
.testimonials__text p{
	padding:0 0 40px 0;
	font-size:20px;
	line-height:28px;
	text-align:center;
}
.testimonials__source{
	font-weight:700;
	font-size:16px;
}
.testimonials__source a{
	color:#313ee7;
	padding:0 20px;
	position:relative;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.testimonials__source a::after {
  border-bottom: 0.245em solid rgba(56, 69, 241, 0.2);
  content: "";
  left: 0;
  line-height: 1em;
  margin-top: calc(0.245em / 2 * -1);
  position: absolute;
  right: 0;
  top: 60%;
}
.testimonials__source a:hover{
	color:#000;
	padding:0 30px;
}
.testimonials__pagination{
	width:100%;
	text-align:center;
	bottom:0 !important;
	z-index:999 !important;
}
.testimonials__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 100%;
    background: #313ee7;
    opacity: 0.2;
}
.testimonials__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #313ee7;
}



/*===============================================*/
/* WORK		 */
/*===============================================*/
.section--work{
	background-color: #fff;
}
.grid--work .grid__item{
	 margin-right:60px;
	 margin-bottom:60px; 
	 width: calc((100% - 60px * 1 - 20px * 4) / 2);
	 padding:20px;
	 text-align:left;
	background-color:#fff;
	 box-shadow: 0 0 20px 0px rgba(0,0,0,0.05);
	-moz-box-shadow: 0 0 20px 0px rgba(0,0,0,0.05);
	-webkit-box-shadow: 0 0 20px 0px rgba(0,0,0,0.05);
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;

}
.grid--work .grid__item:hover{
	transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
	background-color: #00edad;
}
.grid--work .grid__item h3.grid__title{
	font-weight:700;
	font-size:18px;
	letter-spacing:-0.5px;
	padding:20px 0 10px 0;
	margin:0px;
}
.grid--work .grid__item h3.grid__title a{
	color:#000;
}
.grid--work .grid__item .grid__badge{
	background-color: #00edad;
	color:#000;
	font-weight:700;
	font-size:11px;
	padding:10px 20px;
	display:inline-block;
}
.grid--work .grid__item .grid__badge a{
	color:#000;
}
.grid--work .grid__item:hover .grid__badge{
	background-color:#fff;
}


.section--quote{
	background-color: #f7f8f9;
}

.section--projects{
	background-color: #f7f8f9;
	margin-top:80px;
	padding:100px 0 80px 0;
	position:relative;
}
.project__details{
	width:100%;
	margin:auto;
	display:flex;
}
.back-to-work{
	display:inline-block;
	position:absolute;
	top:20px;
	right:12.5%;
	background:url(images/back-arrow.png) no-repeat 10px center;
	padding:10px 20px 10px 110px;
	color:#000;
	font-weight:700;
	font-size:13px;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.back-to-work:hover{
	cursor:pointer;
	background:url(images/back-arrow.png) no-repeat 0px center;
	color:#00edad;
}
.project__details-left{
	width:50%;
}
.project__details-left h2{
	font-size:28px;
	letter-spacing:-0.5px;
	padding:0 0 10px 0;
	margin:0px;
	font-weight:700;
}
.project__details-left h3{
	font-size:18px;
	letter-spacing:-0.5px;
	padding:0 0 40px 0;
	margin:0px;
	font-weight:300;
	color: #a7a7a7;
}
.project__details-left p{
	width:80%;
	font-size:16px;
	padding:0 0 10px 0;
	margin:0px;
	font-weight:400;
	color: #000;
}
.project__details-right{
	width:50%;
}
.project__role{
	padding:0 0 20px 0;
	color: #a7a7a7;
}
.project__role span{
	font-weight:700;
	display:inline-block;
	width:120px;
	color:#000;
}
.project__screenshots{
	padding:20px 0;
}
.project__screenshots img{
	display:block;
	max-width:calc(100% - 20px);
	border:10px #f7f8f9 solid;
}
.project__screenshots h2{
	font-size:28px;
	letter-spacing:-0.5px;
	padding:120px 0 60px 0;
	margin:0px;
	font-weight:700;
}
/*===============================================*/
/*  7.10 CUSTOM SECTION - CONTACT	 			 */
/*===============================================*/
.section--contact{
	clear:both;
	float:left;
	width:100%;
	padding-bottom:100px;
}
.grid--contact{
	background-color:#00edad;
	color: #130b33;
	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:38px;
	font-weight:200;
	padding:10px 0 20px 0;
	margin:0px;
	position:relative;
}
.grid--contact .grid__text-arrow{
	padding:60px 0 0 0;	
}
.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 */
/*----------------------------------------------*/
.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;
}
.grid__form h2.success{
	font-size:18px;
	padding:40px 0 10px 0;
}
.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 #a8a8a8 solid;
	padding:10px 0;
}
.form__label {
	width: 100%;
	display:block;
	color: #a8a8a8;
	padding:20px 0 0 0;
}
.form__row-border{
	position:absolute;
	bottom:0px;
	left:0px;
	width:0px;
	height:2px;
	z-index:22;
	background-color: #160e37;
	-webkit-transition:all 0.3s 0.12s;
	transition: all 0.3s 0.12s;
}
.form__textarea {
	width:100%;
	height:50px;
	background:none;
	border:none;
	border-bottom:1px #a8a8a8 solid;
	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:40px 0 0 0;
	cursor:pointer;
	background-color: #160e37;
	border:none;
	-webkit-appearance:none;
	color: #00edad;
	font-weight:600;
	font-size:14px;
	letter-spacing:0.2px;
	font-family: 'Assistant', sans-serif;
}
.form__submit:hover{
	color: #160e37;
	background-color: #00edad;
}
#loader{
	position:absolute;
	bottom:100px;
	right:11%;
	z-index:333;
}
span.error__label{
	font-size:15px;
	color:#cd0e5b;
	position:absolute;
	bottom:25px;
	right:0px;
}




 /*===============================================*/
/*  8. FOOTER 	 						 */
/*===============================================*/
/* BLOCK - footer */
.footer{
	width:100%;
	height:auto;
	float:left;
	clear:both;
	position:relative;
	background-color: #160e37;
	color:#fff;
}
/* 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:90%;
	margin:auto;
	clear:both;
}
.footer__content--padding{
	padding:140px 0;
}
.grid--footer .grid__item{
    margin-bottom: 0px;
}
.grid__title--footer-logo{
	font-size: 30px;
	letter-spacing: -1px;
	font-weight:700;
}
.grid__title--footer-logo span{
    font-weight: 700;
    color: #00edad;

}
.grid__title--footer{
	font-size:20px;
	font-weight:700;
}
.grid__text--copyright{
	color:#8f8f9a;
	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;
	background-image:none;
}
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{
	background-image:none;
	padding-left:0px;
}
ul.grid__list--fmenu li a {
    display: inline-block;
    color:#838383;
    text-decoration: none;
	
}

ul.grid__list--fmenu li a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #00edad;
    transition: width .3s;
}

ul.grid__list--fmenu li a:hover::after {
    width: 100%;
}
ul.grid__list--fmenu li a:hover {
	color: #00edad;
}
/*===============================================*/
/* 9. MEDIA QUERIES   			 */
/*===============================================*/

/*===============================================*/
/* Small desktop and laptops 1500 px		 */
/*===============================================*/
@media screen and (max-width: 1500px) {

.section__content--fluid-width{
	width:90%;
}
.intro__frames{
	top:40%;
}

}
/*===============================================*/
/* Small desktop and laptops 1400 px		 */
/*===============================================*/
@media screen and (max-width: 1400px) {
.intro{
  height: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%;
}
.intro__content{
	width:100%;
	float:none;
	position:relative;
	top:25%;
	left:0;
	transform: translateY(0);
	z-index:333;
	text-align:center;
}

}

/*===============================================*/
/* 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--sticky .menu-button:before, .menu-open .menu-button:before, .header--page .menu-button:before{
  border-top: 1px double #000;
  border-bottom: 1px solid #000;
}
.header--sticky .menu-button, .menu-open .menu-button, .header--page .menu-button{
  border-bottom:1px solid #000;
}
.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:13px;
  line-height:40px; 
  height:auto;
  margin:0px;
  padding: 0 35px;
}
 .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 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;
}
.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 0 0;
}
.grid__title--footer{
	padding-bottom:10px;
}
.footer__content--svg{
	padding:80px 0 40px 0;
}

/*              CUSTOM SECTIONS 	      */
/*========================================*/
/*  INTRO 	 */
/*---------------*/
.intro__title{
	padding:0 0 10px 0;
	font-size:60px;
}
.intro__subtitle{
	font-size:22px;
	padding:0 0 20px 0;
}
.intro__description{
	font-size:16px;
	padding:0 0 20px 0;
}
.intro__buttons{
	 padding:20px 0 0 0;
}
.intro__frames{
	width:90%;
	top:auto;
	bottom:-50%;
	left:5%;
	right:auto;
}
.btn{
	padding:10px 30px; 
	margin:0 5px;
}
.intro{
  height:100%;
}

/*  ABOUT 	 */
/*---------------*/
.grid--about .grid__title{
	font-size:28px;
	line-height:36px;
}
.grid--about .grid__text{
	font-size:16px;
	line-height:24px;
}

/*  FEATURES 	 */
/*---------------*/
.section--features{
	padding:0;
}
svg.svg-features-bottom {
  height: 40px;
}
.section__title--features{
	text-align:left;
}
.section__title--features:after {
	right:auto;
}
.section__description--features{
	text-align:left;
	width:100%;
}

/*  CONTACT 	 */
/*---------------*/
.form__page{
	width:90%;
	margin:0;
	clear:both;
	float:left;
	padding:40px 5%;
	background-color:#f7f7f7;
}
.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:40px 0 0 0;
}
.svg-form-left{
	display:none;
}
.section--projects{
	margin-top:60px;
}
.project__details{
	display:flex;
	flex-wrap:wrap;
}
.project__details-left{
	width:100%;
}
.project__details-right{
	width:100%;
	margin-top:40px;
}
.back-to-work{
	top:20px;
	left:2%;
	right:auto;
	padding:10px 20px 10px 110px;
	z-index:999;
}
}
/*===============================================*/
/* Small Mobile under 600	  					 */
/*===============================================*/
@media screen and (max-width: 600px) {
.intro__title{
	padding:0 0 5px 0;
	font-size:40px;
}
.intro__subtitle{
	font-size:14px;
	padding:0 0 30px 0;
}
.intro__description{
	font-size:12px;
}
.intro__frames{
	bottom:-20%;
}
.btn{
	padding:8px 15px; 
}
}
/*===============================================*/
/* Small Mobile under 800 landscape	  					 */
/*===============================================*/
@media screen and (orientation:landscape)
and (max-device-width: 800px) {
.intro__frames{
	display:none;
}
.intro__title{
	font-size:30px;
}
.intro__subtitle{
	font-size:12px;
}
}
