@import url('https://fonts.googleapis.com/css?family=Cairo:400');

@font-face {
  font-family: 'HelveticaNeue-Bold';
  src: url('../fonts/HelveticaNeue-Bold/HelveticaNeue-Bold.eot?#iefix') format('embedded-opentype'),  
       url('../fonts/HelveticaNeue-Bold/HelveticaNeue-Bold.woff') format('woff'), 
       url('../fonts/HelveticaNeue-Bold/HelveticaNeue-Bold.ttf')  format('truetype'), 
       url('../fonts/HelveticaNeue-Bold/HelveticaNeue-Bold.svg#HelveticaNeue-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HelveticaNeue';
  src: url('../fonts/HelveticaNeue/HelveticaNeue.eot?#iefix') format('embedded-opentype'),  
       url('../fonts/HelveticaNeue/HelveticaNeue.woff') format('woff'), 
       url('../fonts/HelveticaNeue/HelveticaNeue.ttf')  format('truetype'), 
       url('../fonts/HelveticaNeue/HelveticaNeue.svg#HelveticaNeue') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*font-family: 'Montserrat', sans-serif;*/
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}
body{
    font-family:  'Montserrat', sans-serif;
    background-color: #fff;
    font-size:12px;
    font-weight:400;
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family:  'Montserrat', sans-serif;
  font-weight: normal;
  font-style: normal;
  margin: 0;
}
p{
  margin:0;
}
html,
button,
input,
select,
textarea {
  color: #222;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
img {
  vertical-align: middle;

}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}


a,button {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

p{
  margin: 0;
}
a {
  cursor: pointer !important;
  text-decoration: none !important;
}
a:hover,a:active,a:focus,a:visited{
  text-decoration: none !important;
}

input, textarea, a, button {
  outline: none !important;
  text-decoration: none;
}

.margin-auto{
  margin: 0 auto;
  float: none !important;
}

/* img hover */
.img-hover {
  overflow: hidden;
  display: block;
}

.img-hover > img {
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

img{
  max-width: 100%;
}
/* end img hover */
.main-wrapper {
  position: relative;
  min-height: 100%;
}
/**==========================================================
HEADER
===========================================================**/
#header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  z-index: 100;
}
.logo-site{
  float: left;
  width: 65px;
}
.logo-site > a{
  display: inline-block;
}
.logo-site img{
  width: auto;
  height: 60px;
}

.mobile-overlay {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: hidden;
    z-index:22;
}
.mobile-overlay:before {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    content: '';
    background: #000;
    left: -55%;
    top: 0;
    width: 51%;
    height: 100%;
    position: absolute;
}
.mobile-overlay:after {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    content: '';
    background: #000;
    right: -55%;
    top: 0;
    width: 51%;
    height: 100%;
    position: absolute;
}
.mobile-overlay nav {
    position: relative;
    height: 100%;
    top: 0%;
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    z-index: 100;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.mobile-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    /* height: 100%; */
    display: table;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.mobile-overlay ul li {
    display: block;
    position: relative;
    opacity: 0;
    margin-bottom: 20px;
}
.mobile-overlay ul li:last-child{
  margin-bottom: 0;
}
.mobile-overlay ul li a {
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    font-size: 24px;
    text-transform: uppercase;
}
.mobile-overlay ul li a:after {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    content: '';
    position: absolute;
    bottom: 33%;
    left: 50%;
    width: 0%;
    height: 10px;
    background: #b2a287;
    z-index: -1;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.menu {
    float: right;
    margin: 20px 0px 0 0;
    display: none;
    z-index: 999;
    position: relative;
}
.nav-icon {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    width: 28px;
    height: 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    cursor: pointer;
}
.nav-icon span {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
.nav-icon span:nth-child(1) {
    top: 0px;
}
.nav-icon span:nth-child(2) {
    top: 8px;
}
.nav-icon span:nth-child(3) {
    top: 16px;
}
.nav-icon.active span:nth-child(1) {
    top: 8px;
    background-color: #fff;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.nav-icon.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.nav-icon.active span:nth-child(3) {
    top: 8px;
    background-color: #fff;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.mobile-overlay.open {
    opacity: .9;
    visibility: visible;
    height: 100%;
}
.mobile-overlay.open:before {
    left: 0;
}
.mobile-overlay.open:after {
    right: 0;
}
.mobile-overlay.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    -moz-animation: fadeInRight .5s ease forwards;
    -o-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
    -moz-animation-delay: .35s;
    -o-animation-delay: .35s;
    animation-delay: .35s;
}
.mobile-overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .45s;
    -moz-animation-delay: .45s;
    -o-animation-delay: .45s;
    animation-delay: .45s;
}
.mobile-overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .55s;
    -moz-animation-delay: .55s;
    -o-animation-delay: .55s;
    animation-delay: .55s;
}
.mobile-overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .65s;
    -moz-animation-delay: .65s;
    -o-animation-delay: .65s;
    animation-delay: .65s;
}
.mobile-overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .75s;
    -moz-animation-delay: .75s;
    -o-animation-delay: .75s;
    animation-delay: .75s;
}
.mobile-overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: .85s;
    -moz-animation-delay: .85s;
    -o-animation-delay: .85s;
    animation-delay: .85s;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
#header{
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.header_right{
  float: right;
}
.get_app_button{
  float: right;
  display: block;
  height: 40px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
  background: rgba(6,147,248,1);
  border-radius: 30px;
  padding: 10px 40px;
  background: -moz-linear-gradient(left, rgba(6,147,248,1) 0%, rgba(52,203,208,1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(6,147,248,1)), color-stop(100%, rgba(52,203,208,1)));
  background: -webkit-linear-gradient(left, rgba(6,147,248,1) 0%, rgba(52,203,208,1) 100%);
  background: -o-linear-gradient(left, rgba(6,147,248,1) 0%, rgba(52,203,208,1) 100%);
  background: -ms-linear-gradient(left, rgba(6,147,248,1) 0%, rgba(52,203,208,1) 100%);
  background: linear-gradient(to right, rgba(6,147,248,1) 0%, rgba(52,203,208,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0693f8', endColorstr='#34cbd0', GradientType=1 );
}
.get_app_button:hover,.get_app_button:focus{
  color: #fff;
}
#navigation-menu{
  float: left;
}
.main-menu{
  margin-top: 20px;
  margin-right: 50px;
}
.main-menu > li{
  float: left;
  margin-right: 30px;
}
.main-menu > li:last-child{
  margin-right: 0;
}
.main-menu > li > a{
  display: block;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.main-menu > li > a:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 2px;
  background-color: #30c6d2;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.main-menu > li > a.mPS2id-highlight:before{
  width: 15px;
}
.main-menu > li.active > a:before,.main-menu > li:hover > a:before{
  width: 15px;
}
#header{
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
#header.fixed-header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  background-color: #222f4a;
  z-index: 9999;
  padding: 10px 0;
}
/**==========================================================
section_main_top
===========================================================**/
.section_main_top{
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-image: url(../images/bg-top.png);
  min-height: 700px;
  padding: 150px 0;
}
.top_thumb{
  position: absolute;
  bottom: -90px;
  right: 5%;
  width: 70%;
}
.main_top_txt{
  margin-top: 200px;
  padding-left: 50px;
  position: relative;
  z-index: 111;
}
.main_top_txt > h2{
  color: #fff;
  font-size: 35px;
  font-family: 'HelveticaNeue-Bold';
  margin-bottom: 15px;
}
.main_top_txt > p{
  color: #fff;
  font-size: 25px;
  line-height: 29px;
  font-family: 'HelveticaNeue';
}
/**==========================================================
ABOUT
===========================================================**/
.section_about{
  padding: 250px 0;
}
.about_txt{
  margin-top: 70px;
}
.about_txt p{
  text-align: center;
  color: #323c54;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
}
/**==========================================================
FEATURES
===========================================================**/
.section_features{
  background-image: url(../images/fe-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0 50px;
  position: relative;
}
.section_features .sec_head > p{
  color: #fff;
}
.section_features .sec_head > h2{
  color: #fff;
}

.feature_item{
  margin-bottom: 25px;
}
.feat_thumb{
  float: left;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #54d1eb;
  padding: 15px;
}
.feat_thumb > img{
  width: 100%;
}
.feat_txt{
  margin-left: 80px;
  margin-top: 10px;
}
.feat_txt > h2{
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}
.feat_txt > p{
  color: #ffffff;
  font-size: 16px;
  margin-top: 10px;
  line-height: 25px;
  height: 50px;
  overflow:hidden;
}
.feature_thumb_abs{
  width: 58%;
  position: absolute;
  bottom: -130px;
  right: 0;
}
.feature_thumb_abs > img{
  float: right;
}
/**==========================================================
section_screen_shot
===========================================================**/
.section_screen_shot{
  padding: 150px 0;
  background-repeat: repeat;
  background-image: url(../images/sc-bg.png);
}
.sec_head{
  text-align: center;
}
.sec_head > h2{
  display: table;
  margin: auto;
  position: relative;
  padding: 0 30px;
  color: #323c54;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.sec_head > h2:before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  width: 25px;
  height: 4px;
  background-color: #2abadf;
}
.sec_head > h2:after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 25px;
  height: 4px;
  background-color: #2abadf;
}
.sec_head > p{
  color: #939393;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.sec_head{
  margin-bottom: 30px;
}

#screenshot_slider{
  direction: ltr;
}

#screenshot_slider .owl-item .screen-item > img{
  -webkit-transform:scale(1, .9);
  transform: scale(1, .9);
}

#screenshot_slider .owl-item p{
  display: none;
}

#screenshot_slider .owl-item.center p{
  display: block;
  margin-top: 65px;
  color:#323c54;
  font-size: 16px;
  text-transform: uppercase; 
  font-weight: 500;
  text-align: center;
}

.screen-item{
  position: relative;
  display: block;
}

.screen-item > img{
  -webkit-transition: 0.3s;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

#screenshot_slider .owl-item.medium{
  z-index: 5;
}

#screenshot_slider .owl-item.medium .screen-item > img{
  -webkit-transform:scale(1,1);
  transform: scale(1,1);
}

#screenshot_slider .owl-item.center{
  z-index: 9;
}

#screenshot_slider .owl-item.center .screen-item > img{
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.owl-carousel .owl-item img{
  width: auto !important;
}

#screenshot_slider .owl-nav > div{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  line-height: 60px;
  text-align: center;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4ccbd3+0,0c95f1+100 */
  background: rgb(76,203,211); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(76,203,211,1) 0%, rgba(12,149,241,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(76,203,211,1) 0%,rgba(12,149,241,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(76,203,211,1) 0%,rgba(12,149,241,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4ccbd3', endColorstr='#0c95f1',GradientType=0 ); /* IE6-9 */
  -webkit-box-shadow: 0px 2px 37px -4px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 2px 37px -4px rgba(0,0,0,0.3);
  box-shadow: 0px 2px 37px -4px rgba(0,0,0,0.3);
}

#screenshot_slider .owl-nav > div.owl-prev{
  right: -30px;
}

#screenshot_slider .owl-nav > div.owl-next{
  left: -30px;
}

#screenshot_slider .owl-nav > div img{
  width: 35px;
}

#screenshot_slider .owl-nav > div.owl-next img{
  -ms-transform: rotate(180deg); 
  -webkit-transform: rotate(180deg); 
  transform: rotate(180deg);
}

#screenshot_slider .owl-stage-outer{
  padding: 50px 0;
}

.owl-controls{
  margin: 0 !important;
}

/**==========================================================
FOOTER
===========================================================**/
#footer{
  background-image: url(../images/app-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.footer_content{
  text-align: center;
}
.footer_content > h2{
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 50px;
}
.app_links{
  display: table;
  margin: auto;
}
.app_links > a{
  float: left;
  margin-right: 10px;
  margin-bottom: 20px;
}
.app_links > a:last-child{
  margin-right: 0;
}
.footer_content > p{
  width: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  margin: auto;
  line-height: 25px;
}
.copy_right{
  text-align: center;
  padding-top:80px;
}
.copy_right h2{
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.copy_right h2 > a{
  display: inline-block;
  vertical-align: bottom;
}
.copy_right h2 > a > img{
  width: 70px;
}

.lang{
  font-family: 'Cairo';
}