/* GLOBAL RESET */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* HEADER & NAVIGATION */

body>header {
  height: 70px;
  background: #0abbb5;
  /*
  background: linear-gradient(45deg, #0abbb5 0%, #0baaa5 100%);
  /*background: linear-gradient(0deg, #48a7ac 0%, #0abbb5 100%);*/
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
   -webkit-transition: top 0.2s ease-in-out;
  -moz-transition: top 0.2s ease-in-out;
  -o-transition: top 0.2s ease-in-out;
   transition: top 0.2s ease-in-out;
}

#nav {
  display: block;
  height: 70px;
  width: 70px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #3bc9c4;
}

.nav-btn-inner {
  display: block;
  width: 26px;
  height: 21px;
  margin: 25px auto 0 auto;
}

nav .nav-wrap>ul>li {
  background: url(../img/dotted_border.png) repeat-x bottom left;
}

nav .nav-wrap>ul>li>a:hover {
    color:rgb(255, 255, 255);
    color:#FFFFFF;
}

nav .nav-wrap>ul>li>a {
  display: block;
  padding: 20px 0 20px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight:700;
  color:rgba(255, 255, 255, 0.6);
}

.menu-icon {
  background: #ffffff;
  height: 3px;
  margin-bottom: 5px;
  width: 100%;
  display: block;
  position: absolute;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
  -moz-transform: translate3d(0, 0, 0) rotate(0deg);
  -ms-transform: translate3d(0, 0, 0) rotate(0deg);
  -o-transform: translate3d(0, 0, 0) rotate(0deg);
  transform: translate3d(0, 0, 0) rotate(0deg);
  
  z-index: 1;
}

#nav:hover .menu-icon-first {
  -webkit-transform: translate3d(0, -2px, 0);
  -moz-transform: translate3d(0, -2px, 0);
  -ms-transform: translate3d(0, -2px, 0);
  -o-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px, 0);
    
}

#nav:hover .menu-icon-third {
  -webkit-transform: translate3d(0, 2px, 0);
  -moz-transform: translate3d(0, 2px, 0);
  -ms-transform: translate3d(0, 2px, 0);
  -o-transform: translate3d(0, 2px, 0);
  transform: translate3d(0, 2px, 0);
}

.open-nav nav {
  -webkit-transform: translate3d(280px, 0, 0);
  -moz-transform: translate3d(280px, 0, 0);
  -ms-transform: translate3d(280px, 0, 0);
  -o-transform: translate3d(280px, 0, 0);
  transform: translate3d(280px, 0, 0);
}

.menu-icon.menu-icon-first {
  top: 0;
}
.open-nav #nav .menu-icon-first {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
  -moz-transform: translate3d(0, 8px, 0) rotate(45deg);
  -ms-transform: translate3d(0, 8px, 0) rotate(45deg);
  -o-transform: translate3d(0, 8px, 0) rotate(45deg);
  transform: translate3d(0, 8px, 0) rotate(45deg);
}

.menu-icon.menu-icon-second {
  top: 8px;
}
.open-nav #nav .menu-icon-second {
  opacity: 0;
}

.menu-icon.menu-icon-third {
  top: 16px;
}
.open-nav #nav .menu-icon-third {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
  -moz-transform: translate3d(0, -8px, 0) rotate(-45deg);
  -ms-transform: translate3d(0, -8px, 0) rotate(-45deg);
  -o-transform: translate3d(0, -8px, 0) rotate(-45deg);
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

nav {
  position: fixed;
  width: 280px;
  height: 100%;
  top: 0;
  background: #2c9793;
  z-index: 9998;
  padding-top: 90px;
  left: -280px;
  -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-up {
    top: -70px;
}

.nav-down{
    top:0;
}

*, *:after, *:before {
  outline: none !important;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-osx-font-smoothing: antialiased;
}

#logo {
  background-image: url(../img/iontone-logo.png);
  background-position: center center;
  background-repeat: no-repeat;
  width: 150px;
  height: 70px;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  position: absolute;
  top: 0;
  left: 70px;
  z-index: 1;
}

/* GLOBAL RESPONSIVE */


@media only screen and (max-width: 40em) {
    .show-xs{
        display:initial;
    }
    .show-xs-md{
        display:initial;
    }
    .show-md{
        display:none;
    }
    .show-lg{
        display:none;
    }
    
} 

@media only screen and (min-width: 40.063em)and (max-width: 64em){ 
    .show-xs{
        display:none;
    }
    .show-xs-md{
        display:initial;
    }
    .show-md{
        display:initial;
    }
    .show-lg{
        display:none;
    }
}

@media only screen and (min-width: 64.063em) { 
    .show-xs{
        display:none;
    }
    .show-xs-md{
        display:none;
    }
    .show-md{
        display:none;
    }
    .show-lg{
        display:initial;
    }
}

/* BUTTON & HYPERLINKS */

a {
  color: #e6edeb;
}
a {
  -webkit-transition: color .2s ease-in-out;
  -moz-transition: color .2s ease-in-out;
  -o-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
}

.header-btn {
  position: absolute;
    height: 70px;
    color: rgba(255,255,255,0.50);
    right: 0;
    background: rgb(11, 170, 165);
  text-transform: uppercase;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight:700;
}

.btn {
  display: inline-block;
  padding: 0.5em 1.33em;
  font-weight: 400;
  border: none;
  cursor: pointer;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: border, color;
    letter-spacing: 0.1em;
}

.btn{
    -webkit-transition: all 1s cubic-bezier(1, 0, 0, 1);
    -moz-transition: all 1s cubic-bezier(1, 0, 0, 1);
  -o-transition: all 1s cubic-bezier(1, 0, 0, 1);
  transition: all 1s cubic-bezier(1,0,0,1);
}

.btn-bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  padding-top: 100%;
  padding-top: calc(100% + 2.66em);
  -webkit-border-radius: 100px;
  border-radius: 100px;
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0);
  -ms-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  will-change: transform, opacity;
}

.btn-bg:first-of-type {
  z-index: -2;
  background: currentColor;
  -webkit-transition: opacity 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s 0.05s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s 0s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s 0.05s cubic-bezier(0.19,1,0.22,1);
}

.btn-bg:last-of-type {
  z-index: -1;
  background: #48a7ac;
  -webkit-transition: opacity 0.4s 0.1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s 0s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.4s 0.1s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s 0s cubic-bezier(0.19,1,0.22,1);
}

.btn:hover {
  color: rgba(255,255,255,1);
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover .btn-bg {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1.6);
  -ms-transform: translateY(-50%) scale(1.6);
  transform: translateY(-50%) scale(1.6);
}

.btn:hover .btn-bg:last-of-type {
  -webkit-transition: opacity 0.5s 0.1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s 0.1s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
}


/* SECTIONS */

.section-container{
  padding-top: 70px;
  text-align: center;
  background:#cccccc;
}

@media only screen and (max-width: 40em){
    section h1{
        font: 400 34.98px / 43.935px 'Montserrat';
        line-height: 40.935px;
    }
    section h3{
        font: 700 16px 'Open Sans';
        text-transform: uppercase;
    }

    section p{
          color:#065553;
          font: 300 16px 'Open Sans';
    }
}

@media only screen and (min-width: 40.063em) { 
    section h1{
        font: 400 40.98px / 49.935px 'Montserrat';
        line-height: 44.935px;
    }
    section h3{
        font: 700 18px 'Open Sans';
        text-transform: uppercase;
    }
    section p{
        color:#065553;
        font: 300 18px 'Open Sans';
    }
    
}

/* TAKE A TOUR NAVIGATION */

.hide{
    display: none;
}
.nav-takeatour{
    z-index: 200;
    top: 50%;
    left: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position:fixed;
}

.nav-takeatour ul li a{
    height: 28px;
    padding: 6px 20px 6px 6px;
    font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight:700;
    text-transform: uppercase;
  color:rgba(255, 255, 255, 1);
    color:#FFFFFF;
   transition: color 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
    cursor: pointer;
    display:block;
}

.nav-takeatour ul li a i {
  z-index: 9;
}
.icon-puce {
  width: 16px;
  height: 16px;
}
.icon-puce {
  overflow: hidden;
}
.icon{
  display: inline-block;
  zoom: 1;
}

.nav-takeatour ul li a.isCurrent svg {
  fill-opacity: .4;
}
.nav-takeatour ul li a:hover svg {
  fill: #FFFFFF;
  fill-opacity: 1;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.nav-takeatour ul li a:hover span {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.nav-takeatour ul li a svg {
  fill: #065553 ;
  fill-opacity: .1;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform-origin: 8px 8px;
  -ms-transform-origin: 8px 8px;
  transform-origin: 8px 8px;
}
html|* > svg {
  -webkit-transform-origin: 50% 50% 0px;
}
.nav-takeatour ul li a span{
    top: 0;
  left: 0;
  height: 28px;
  padding: 0 20px 0 32px;
  line-height: 28px;
  white-space: nowrap;
  background: #0abbb5;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.465, 1.65, 0.475, 1);
  transition: all 0.3s cubic-bezier(0.465, 1.65, 0.475, 1);
  -webkit-transform-origin: 14px 14px;
  -ms-transform-origin: 14px 14px;
  transform-origin: 14px 14px;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
      position: absolute;
      max-width: none;
}

/* INTRO - SECTION */

#intro {
    background-image: url(../img/intro-bg-anim-2.gif);
    background-size: cover;
    background-position: center bottom;
    padding:50px 0 0 0;
    direction: ltr;
    height: auto;
}

#intro > div:nth-child(1){
    width:90%;
    margin:0 auto;
    display: block;
}

#intro >div:nth-child(2){
    margin: 0 0 -150px 0;
    z-index: 10;
    display: block;
}

#intro h1{
    color: #065553;
    margin-bottom:30px;
}

@media only screen and (max-width: 40em) { 
    #intro h1{
       font: 400 25px 'Montserrat';
    }
}

#intro p{
    width:90%;
    margin:0 auto 5px auto;
}

#intro .app-icon{
    margin-bottom:10px;
}

#intro > div:nth-child(2) > img.show-xs{
    width:90%;
    max-width:204px;
}

#intro > div:nth-child(2) > img.show-md{
    width:100%;
    max-width:670px;
}

@media only screen and (min-width: 64.063em) { 
   #intro{
     direction: rtl;
     padding:0 0 0 0;
     text-align: left;
      height: 650px;
       overflow: hidden;
   }
    #intro > div:nth-child(1){
      width: 900px;
      margin: 0 auto;
      padding: 150px 0px 0 400px;
      vertical-align: top;
      z-index:10;
    }
   #intro > div:nth-child(2){
       position:absolute;
       left: -6%;
       top: -65px;
       z-index:1;
       
    }
    #intro p{
        margin: 0;
        width: 100%;
    }
    #intro h1{
        direction: ltr;
        font: 400 50px / 52.935px 'Montserrat';
    }
    
}
@media only screen and (min-width: 40.063em) and (max-width: 64em) { 
    
    #intro > div:nth-child(2) {
        margin: -50px 0 -150px 0;
    }
}

@media only screen and (min-width: 85.063em) { 
    
    #intro > div:nth-child(1) {
        width: 1000px;
        padding: 150px 0 0 420px;
    }
    #intro > div:nth-child(2){
          margin: 0 auto;
          left: 4%;
          top: -65px;
    }
} 

/* COLLABORATE - SECTION */

#collaborate {/*
    background-image: url(../img/collaborate-bg-2.png);*/
    background-size: cover;
    background-color: #0abbb5;
    background-position: center bottom;
    padding:170px 0 70px 0;
}

#collaborate > div{
    width:96%;
    margin:0 auto;
}

#collaborate h1{
    color: #FFFFFF;
    margin-bottom:15px;
}

#collaborate h3{
    color: #FFFFFF;
    margin-right:5px;
    display:inline-block;
}

#collaborate p{
    display:inline-block;
    color:#FFFFFF;
    margin-bottom:20px;
}

#collaborate > div:nth-child(2) > img{
    width:100%;
    max-width:900px;
    margin-top:10px;
}


@media only screen and (min-width: 64.063em) { 
    #collaborate {
        padding:100px 0 100px 0;
    }
    #collaborate p{
        margin-bottom:0;
    }
}

/**/
#collaborative {
    background-color: #0abbb5;
    background-image: url(../img/collaborate-bg-2.png)!important;
    background-size: cover;
    background-position: center bottom;
    padding:170px 0 70px 0;
}

#collaborative > div{
    width:96%;
    margin:0 auto;
}

#collaborative h1{
    color: #FFFFFF;
    margin-bottom:15px;
}

#collaborative h3{
    color: #FFFFFF;
    margin-right:5px;
    display:inline-block;
}

#collaborative p{
    display:inline-block;
    color:#FFFFFF;
    margin-bottom:20px;
}

#collaborative > div:nth-child(2) > img{
    width:100%;
    max-width:900px;
    margin-top:10px;
}


@media only screen and (min-width: 64.063em) { 
    #collaborative {
        padding:100px 0 100px 0;
    }
    #collaborative p{
        margin-bottom:0;
    }
}


/*My section end*/
/*Scribe new my2 section start*/
/* SCRIBE - SECTION */

#my2 {
    background-image: url(../img/scribe-bg.png);
    background-size: cover;
    background-position: center bottom;
    padding:60px 0 0 0;
}


#my2 > div:nth-child(1),#my2 > div:nth-child(2){
    width:90%;
    
    margin:0 auto;
    display: block;
    padding: 0;
}

#my2 > div:nth-child(3){
    width:100%;
    
    margin:-20px auto -3px auto;
    display: block;
    padding: 0;
}

#my2 > div:nth-child(2) img{
    width: 90%;
    max-width: 550px;
}

#my2 > div:nth-child(3) img{
    width: 100%;
  max-width: 1100px;
    padding-top:50px;
}

#my2 h1{
    color: #FFFFFF;
    margin-bottom:15px;
}


#my2 h3{
    color: #FFFFFF;
    margin-right:5px;
    display:inline-block;
}

#my2 p{
    color:#FFFFFF;
    display:inline-block;
    margin-bottom:20px;
}

@media only screen and (min-width: 64.063em) { 
    #my2 {
        padding:130px 0 320px 0;
    }
    #my2 > div:nth-child(1){
        width: 30%;
      display: inline-block;
      text-align: left;
      vertical-align: top;
      padding: 111px 0 0 80px;
    }
    #my2 > div:nth-child(2){
        width: 50%;
        display: inline-block;
    }
    #my2 > div:nth-child(3){
        margin:0 auto -3px auto;
    }
    #my2 img{
        width: 100%;
        max-width:none;
    }
    #my2 h1{
        width:260px;
    }
    
}
/*Scribe new my2 section end*/

/* SCRIBE - SECTION */

#scribe {
    background-image: url(../img/scribe-bg.png);
    background-size: cover;
    background-position: center bottom;
    padding:60px 0 0 0;
}

#scribe > div:nth-child(1),#scribe > div:nth-child(2){
    width:90%;
    margin:0 auto;
    display: block;
    padding: 0;
}

#scribe > div:nth-child(3){
    width:100%;
    margin:-20px auto -3px auto;
    display: block;
    padding: 0;
}

#scribe > div:nth-child(2) img{
    width: 90%;
    max-width: 550px;
}

#scribe > div:nth-child(3) img{
    width: 100%;
  max-width: 1100px;
    padding-top:50px;
}

#scribe h1{
    color: #FFFFFF;
    margin-bottom:15px;
}


#scribe h3{
    color: #FFFFFF;
    margin-right:5px;
    display:inline-block;
}

#scribe p{
    color:#FFFFFF;
    display:inline-block;
    margin-bottom:20px;
}

@media only screen and (min-width: 64.063em) { 
    #scribe {
        padding:130px 0 0 0;
    }
    #scribe > div:nth-child(1){
        width: 30%;
      display: inline-block;
      text-align: left;
      vertical-align: top;
      padding: 111px 0 0 80px;
    }
    #scribe > div:nth-child(2){
        width: 50%;
        display: inline-block;
    }
    #scribe > div:nth-child(3){
        margin:0 auto -3px auto;
    }
    #scribe img{
        width: 100%;
        max-width:none;
    }
    #scribe h1{
        width:260px;
    }
    
}



/* SCRIBE - SECTION */

#scribe1 {
    /*background-image: url(../img/scribe-bg.png);
    */
    
    background-color: #16a6a0;
    
    background-position: center bottom;
    padding:60px 0 0 0;
}

#scribe1 > div:nth-child(1),#scribe1 > div:nth-child(2){
    width:90%;
    margin:0 auto;
    display: block;
    padding: 0;
}

#scribe1 > div:nth-child(3){
    width:100%;
    margin:-20px auto -3px auto;
    display: block;
    padding: 0;
}

#scribe1 > div:nth-child(2) img{
    width: 90%;
    max-width: 550px;
}

#scribe1 > div:nth-child(3) img{
    width: 100%;
  max-width: 1100px;
    padding-top:50px;
}

#scribe1 h1{
    color: #FFFFFF;
    margin-bottom:15px;
}


#scribe1 h3{
    color: #FFFFFF;
    margin-right:5px;
    display:inline-block;
}

#scribe1 p{
    color:#FFFFFF;
    display:inline-block;
    margin-bottom:20px;
}

@media only screen and (min-width: 64.063em) { 
    #scribe1 {
        padding:130px 0 0 0;
    }
    #scribe1 > div:nth-child(1){
        width: 30%;
      display: inline-block;
      text-align: left;
      vertical-align: top;
      padding: 111px 0 0 80px;
    }
    #scribe1 > div:nth-child(2){
        width: 50%;
        display: inline-block;
    }
    #scribe1 > div:nth-child(3){
        margin:0 auto -3px auto;
    }
    #scribe1 img{
        width: 100%;
        max-width:none;
    }
    #scribe1 h1{
        width:260px;
    }
    
}
/*scribe 1*/
/* MOMENTS - SECTION */

#moments {
    background-image: url(../img/moments-bg.png);
    background-size: cover;
    background-position: center bottom;
    padding:60px 0 60px 0;
}

#moments > div{
    width:90%;
    margin:0 auto;
}

#moments > div:nth-child(2){
    padding-top:20px;
}

#moments img{
    width: 90%;
    max-width: 500px;
    padding:40px;
    background: #E6E6E6;
    border: 2px solid #E2E2E2;
    border-radius: 20px;
}

#moments h1{
    color: #ffffff;
    margin-bottom:15px;
}


#moments h3{
    color: #ffffff;
    margin-right:5px;
    display:inline-block;
}

#moments p{
    color:#ffffff;
    display:inline-block;
}

@media only screen and (min-width: 64.063em) { 
    #moments {
        padding:150px 0 150px 0;
    }
    #moments img {
      width: 100%;
    }
}
/*Video Section*/


/* Video - SECTION */

#videoSec {
    background-image: url(../img/collaborate-bg-2.png);
    background-size: cover;
    background-position: center bottom;
    padding:60px 0 60px 0;
}

#videoSec > div{
    width:90%;
    margin:0 auto;
}

#videoSec > div:nth-child(2){
    padding-top:20px;
}

#videoSec img{
    width: 90%;
    max-width: 500px;
    padding:40px;
    background: #E6E6E6;
    border: 2px solid #E2E2E2;
    border-radius: 20px;
}

#videoSec h1{
    color: #ffffff;
    margin-bottom:15px;
}


#videoSec h3{
    color: #ffffff;
    margin-right:5px;
    display:inline-block;
}

#videoSec p{
    color:#ffffff;
    display:inline-block;
}

@media only screen and (min-width: 64.063em) { 
    #videoSec {
        padding:150px 0 150px 0;
    }
    #moments img {
      width: 100%;
    }
}

/* DISCOVER - SECTION */

#discover {
    background-image: url(../img/discover-bg-anim.gif);
    background-size: cover;
    background-position: center bottom;
    padding:60px 0 0 0;
}

#discover > div{
    width:90%;
    margin:0 auto -3px auto;
}

#discover > div:nth-child(2) > img.show-xs-md{
    width:90%;
    max-width:250px;
}

#discover > div:nth-child(2) > img.show-lg{
    width:90%;
    max-width:890px;
}

#discover h1{
    color: #ffffff;
    margin-bottom:15px;
}

#discover h3{
    color: #ffffff;
    margin-right:5px;
    display:inline-block;
}

#discover p{
    color:#ffffff;
    display:inline-block;
    margin-bottom:20px;
}

@media only screen and (min-width: 64.063em) { 
    #discover {
        padding:100px 0 0 0;
    }
    #discover div:nth-child(1){
        margin-bottom:30px;
    }
    #discover p{
        margin-bottom:0;
    }
}
/* FEATURES - SECTION */

#features {
    padding:60px 0 60px 0;
    background: #FFFFFF;
     margin-right: auto;
  margin-left: auto;
    display:block;
}

#features > div{
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  display:inline-block;
}

#features ul li img{
    height:70px;
    margin-bottom:30px;
}

#features ul{
    margin-left:-15px;
    margin-right:-15px;
}
#features ul:before, #features ul li:before, #features > div:before {
  content: "";
  display: table;
    
    }

#features ul li{
    width:100%;
    position: relative;
      min-height: 1px;
    padding: 10px 15px 10px 15px;
    float: left;
}

#features h3{
    color: #065553;
    font: 700 16px 'Open Sans';
}

#features p{
    display:block;
    font-size:14px;
    width:80%;
    margin: 8px auto 24px auto;
}


@media only screen and (max-width: 40em) { 
    #features ul li:before{
        background:none;
        display:none;
    }
} 

@media only screen and (min-width: 40.063em) and (max-width: 64em) { 
    #features ul li {
         width: 44%;
      margin-left: 3%;
      margin-right: 3%;
    }
     #features ul li img{
       height: 80px;
         
    }
    #features p{
        font-size:14px;
        width:100%;
    }
}

@media only screen and (min-width: 64.063em) { 
    #features {
        padding:100px 0 100px 0;
    }
    #features ul li {
       width: 25%;
        margin:4.166666667%;
    }
    #features ul li img{
       height: 100px;
    }
    #features p{
        font-size:14px;
        width:100%;
    }
    #features ul li:nth-child(2):before,
    #features ul li:nth-child(3):before,
    #features ul li:nth-child(5):before,
    #features ul li:nth-child(6):before{
      content: '';
      opacity: .65;
      background-image: url(../img/light-plus-icon.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: 50%;
      position: absolute;
      top: 0;
      left: 0;
      width: 16.67%;
      padding-bottom: 16.67%;
      -webkit-transform: translate3d(-155.5%,-155.5%,0);
      -moz-transform: translate3d(-155.5%,-155.5%,0);
      -ms-transform: translate3d(-155.5%,-155.5%,0);
      -o-transform: translate3d(-155.5%,-155.5%,0);
      transform: translate3d(-155.5%,-155.5%,0);
    }
    
    #features ul li:nth-child(5):after,
    #features ul li:nth-child(6):after{
      content: '';
      opacity: .65;
      background-image: url(../img/light-plus-icon.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: 50%;
      position: absolute;
      top: 0;
      left: 0;
      width: 16.67%;
      padding-bottom: 16.67%;
      -webkit-transform: translate3d(-155.5%,455.5%,0);
      -moz-transform: translate3d(-155.5%,455.5%,0);
      -ms-transform: translate3d(-155.5%,455.5%,0);
      -o-transform: translate3d(-155.5%,455.5%,0);
      transform: translate3d(-155.5%,455.5%,0);
    }


}

/* BRANDING - SECTION */

#branding {
    background-image: url(../img/branding-bg.png);
    background-size: cover;
    background-position: center bottom;
    padding:60px 0 100px 0;
}

#branding > div{
    width:90%;
    margin:0 auto;
}

#branding img{
    width: 90%;
    max-width: 500px;
}

#branding h1{
    color: #FFFFFF;
    margin-bottom:15px;
}


#branding h3{
    color: #FFFFFF;
    margin-right:5px;
    display:inline-block;
}

#branding p{
    display:inline-block;
    margin-bottom:20px;
    color:#FFFFFF;
}

@media only screen and (min-width: 64.063em) { 
    #branding {
        padding:150px 0 150px 0;
    }
    #branding > div:nth-child(1){
        width: 28%;
      display: inline-block;
      text-align: left;
      vertical-align: top;
      padding: 155px 0 0 80px;
    }
    #branding > div:nth-child(2){
        width: 50%;
        display: inline-block;
    }
    #branding h1{
        width:260px;
    }
    
}

/* DOWNLOAD - SECTION */

#download {
    padding:0 0 60px 0;
    background:#065553;
}

#download div:nth-child(1) img{
    width:80%;
    max-width:500px;
    margin: 0 auto;
}

#download div:nth-child(2) div:nth-child(2) img{
    width:60%;
    max-width:300px;
    display:block;
    margin: 0 auto;
}

#download h1{
    color: #FFFFFF;
    margin-bottom:15px;
    margin-top:30px;
}

#download p{
    color: #FFFFFF;
    display:inline-block;
    margin-bottom:20px;
}

#download ul{
    margin-top:15px;
}

#download ul li{
    display:block;
}

@media only screen and (min-width: 40.063em) and (max-width: 64em) { 
    #download ul li{
        display:inline-block;
        width:48%;
    }
    #download ul li:nth-child(1){
        text-align:center;
    }
    #download ul li:nth-child(2){
        text-align:center;
    }
    #download ul li:nth-child(3){
        text-align:center;
    }
    #download ul li:nth-child(4){
        text-align:center;
    }
}

@media only screen and (min-width: 64.063em) { 
    #download {
        padding:150px 0 150px 0;
    }
    #download > div:nth-child(1){
        width: 40%;
        display: inline-block;
        vertical-align: inherit;
        padding: 0 0 0 0;
    }
    #download > div:nth-child(2){
        width: 40%;
        display: inline-block;
        text-align: center;
    }
    #download div:nth-child(1) img{
        width:100%;
        max-width:500px;
    }
    #download div:nth-child(2) div:nth-child(2) img{
        width:250px;
        display:block;
        margin:0 auto;
    }
    #download h1{
        margin-bottom:15px;
        margin-top:0;
    }
    #download ul li{
        display:inline-block;
        width:48%;
    }
    #download ul li:nth-child(1){
        text-align:center;
    }
    #download ul li:nth-child(2){
        text-align:center;
    }
    #download ul li:nth-child(3){
        text-align:center;
    }
    #download ul li:nth-child(4){
        text-align:center;
    }
    
}

/* FOOTER - SECTION */

footer {
    text-align: center;
    background:#3fbbb3;
}

footer > div{
    padding:30px 0 30px 0;
    margin:0 auto;
}

footer p{
    margin-top:8px;
    margin-bottom:5px;
    color:#ffffff;
    font: 700 10px 'Open Sans';
    text-transform:uppercase;
}
footer .ftr-iontone-logo{
       width: 20%;
  max-width: 80px;
  min-width: 50px;
  margin: 0 auto
}

footer .ftr-azaas-logo{
    width:10%;
    max-width:52px;
    min-width:35px;
    margin:0 auto;
}


/* Home Type Effect */
/* code for animated blinking cursor */

.typed-cursor {
    opacity: 1;
    font-weight: 100;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    -ms-animation: blink 0.7s infinite;
    -o-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}