/* ===========================
Noor - App Landing Page 
Author - Upplanet
===============================*/
/* --------------------------------------
1. GLOBAL STYLES
-----------------------------------------*/

body {
    overflow-x: hidden;
    font-weight: normal;
    padding: 0;
}
a,
a:hover,
a:focus,
a:active,
a.active {
    outline: 0;
    text-decoration: none;
}
a {
    color: #766dcc
}
a:hover,
a:focus,
a:active,
a.active {
    color: #766dcc
}
.btn:focus,
.btn:active,
.btn.active,
.btn:active:focus {
    outline: 0;
}
p {
    color: #666;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 0;
}
::-moz-selection {
    text-shadow: none;
    background: #766dcc;
    color: #fff;
}
::selection {
    text-shadow: none;
    background: #766dcc;
    color: #fff;
}
img::selection {
    background: 0 0;
}
img::-moz-selection {
    background: 0 0;
}

/* HEADINGS */

h1,
h2,
h3 {
    font-family: "Lato", Helvetica, Arial, sans-serif;
}
body {
    font-family: "Lato", Helvetica, Arial, sans-serif;
}
section h2.section-heading {
    margin-bottom: 15px;
    margin-top: 25px;
    font-size: 50px;
    letter-spacing: -1px;
    line-height: 40px;
}
section .section-subheading {
    margin-bottom: 95px;
    text-transform: none;
    font-size: 18px;
    font-style: normal;
    line-height: 1;
    margin-top: 25px;
    color: #666666;
    font-weight: 400;
}
.separator {
    width: 30px;
    height: 2px;
    display: block;
    margin: auto;
    background-color: #766dcc;
    transition: 0.6s;
}
.section-heading:hover + .separator{
    width:220px;
}

/* --------------------------------------
 LAYOUT
-----------------------------------------*/
/*  GENERAL*/

section {
    padding: 100px 0;
}
.row {
    margin: 0;
}

.outer-margin {
    margin: 0 -15px;
}
.bg-light-gray {
    background-color: #f7f7f7;
}
.btn-primary {
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: #fff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    border-color: #f6bf01;
    color: #fff;
    background-color: #fec503;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    background-image: none;
}
.btn-xl {
    height: 50px;
    background-color: #766dcc;
    border-radius: 45px;
    border: 1px solid #766dcc;
    color: white;
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    transition: 0.3s;
}
.btn-xl:hover,
.btn-xl:focus,
.btn-xl:active,
.btn-xl.active {
    background-color: #fff;
    color: #000;
}
.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
    background-image: none;
}
body.modal-open {
    overflow: hidden;
}
.parallax {
    background: #766dcc;
}
.parallax h2.section-heading,
.parallax .section-subheading {
    color: #fff;
}
.parallax .separator {
    background: #fff;
}
.gray-bg {
    background: #f8f8f8;
}
.header-buttons {
    margin: 60px auto 100px auto;
}
.primary-button {
    min-width: 150px;
    padding: 0 20px;
    background-color: white;
    border-radius: 2px;
    color: #766dcc;
    font-family: Lato;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 36px;
    margin: 0 10px;
    border: 1px solid white;
    border-radius: 45px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.primary-button.button-inverse {
    color: #fff;
    background: #766dcc;
    border: 1px solid #766dcc;
    margin: 0;
}
.primary-button.button-inverse:hover {
    color: #766dcc;
    background: transparent;
    border: 1px solid #766dcc;
}
.secondary-button {
    min-width: 150px;
    text-align: center;
    line-height: 36px;
    background: #766dcc;
    display: inline-block;
    line-height: 36px;
    color: white;
    font-family: Lato;
    font-size: 14px;
    margin: 0 10px;
    font-weight: 700;
    border: 1px solid white;
    border-radius: 45px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.secondary-button-inverse {
    color: #766dcc;
    border-color: #766dcc;
    background: #fff
}
.secondary-button.secondary-button-inverse:hover {
    color: #fff;
    background: #766dcc;
}
.primary-button:hover {
    background: none;
    color: #fff;
    text-decoration: none;
}
.secondary-button:hover {
    background: #fff;
    color: #273140;
    text-decoration: none;
}
/* LOGO*/

.logo img {
    height: 44px;
    width: auto;
}
/*  PRELOADER*/

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #766dcc
}
.loader {
  width: 100px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -20px -50px;
}
.loader div {
    width: 20px;
  height: 20px;
    background: #FFF;
  border-radius: 50%;
  position: absolute; 

}
#d1 { animation: animate 2s linear infinite;}
#d2 { animation: animate 2s linear infinite -.4s; }
#d3 {animation: animate 2s linear infinite -.8s; }
#d4 { animation: animate 2s linear infinite -1.2s; } 
#d5 { animation: animate 2s linear infinite -1.6s; }
@-webkit-keyframes animate {
  0% { left: 100px; top:0}
  80% { left: 0; top:0;}
  85% { left: 0; top: -20px; width: 20px; height: 20px;}
  90% { width: 40px; height: 15px; }
  95% { left: 100px; top: -20px; width: 20px; height: 20px;}
  100% { left: 100px; top:0; }
}

/*  CAROUSELS*/

.owl-theme .owl-controls .owl-buttons {
    display: none;
}
.owl-theme .owl-controls .owl-buttons div {
    background: url(../img/arrow.png);
    display: inline-block;
    zoom: 1;
    margin: 0;
    width: 10px;
    text-indent: -9999px;
    height: 18px;
    font-size: 0;
    position: absolute;
    right: 0;
    margin-top: 8px;
    margin-right: -72px;
    top: 50%;
    padding: 0;
    filter: Alpha(Opacity=30);
    opacity: 0.3;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.owl-theme .owl-controls .owl-buttons div.owl-prev {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    right: auto;
    left: 0;
    margin-left: -72px;
}
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
    filter: Alpha(Opacity=100);
    opacity: 1;
    text-decoration: none;
}
.owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
    *display: inline;
}
.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 10px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    opacity: 0.22;
    background-color: #248df8;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    filter: Alpha(Opacity=100);
    /*IE7 fix*/
    
    opacity: 1;
}
.owl-theme .owl-controls .owl-page span.owl-numbers {
    height: auto;
    width: auto;
    color: #FFF;
    padding: 2px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.owl-item.loading {
    min-height: 150px;
}
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
/* display none until init */

.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    z-index: 2;
    width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
    float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer;
}
.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.grabbing {
    cursor: url(../img/grabbing.png) 8 8, move;
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}
/* --------------------------------------
  MENU
-----------------------------------------*/

.navbar-default {
    border-color: transparent;
    background-color: #273140;
    width: inherit;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:active,
.navbar-default .navbar-brand.active {
    color: #fec503;
}
.navbar-default .navbar-collapse {
    border: none;
    box-shadow: none;
}
.navbar-default .navbar-toggle {
    border: none;
    margin-right: -10px;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background: none;
}
.navbar-default .nav li a {
    color: white;
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.7;
    padding: 15px 25px;
    line-height: 1;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}
.navbar-default .nav li a:hover,
.navbar-default .nav li a:focus {
    outline: 0;
    color: #fff;
    opacity: 1;
}
.navbar-default.navbar-shrink .nav .active a {
    opacity: 1
}
.navbar-default.navbar-shrink .nav li a:hover,
.navbar-default.navbar-shrink .nav li a:focus {
    outline: 0;
    color: #fff;
    opacity: 1;
    background: none;
}
.navbar-default.navbar-shrink .navbar-nav>.active>a:focus,
.navbar-default.navbar-shrink .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a {
    border-radius: 0;
    background: none;
    opacity: 1;
    color: #766dcc;
    -webkit-filter: brightness(1.2);
}
@media(min-width:960px) {
    .navbar-default {
        padding: 25px 0;
        border: 0;
        background-color: transparent;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }
    .navbar-default.navbar-shrink {
        padding: 10px 0;
        background-color: #363b3f;
    }
}
/* --------------------------------------
 HEADER
-----------------------------------------*/

header {
    position: relative;
    text-align: center;
    color: #fff;
    background-color: #766dcc;
    background-image: -webkit-linear-gradient(270deg, rgba(51, 51, 51, 0.04) 0%, rgba(255, 255, 255, 0.04) 100%);
    background-image: linear-gradient(180deg, rgba(51, 51, 51, 0.04) 0%, rgba(255, 255, 255, 0.04) 100%);
}
header .intro-text {
    padding-top: 100px;
    padding-bottom: 50px;
}
header .intro-text .no-particles{
    position: relative;
    z-index: 10;
}
header .intro-text .intro-heading {
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    max-width: 75%;
    display: block;
    text-align: left;
    float: left;
    margin-top: 30px;
    margin-bottom: 40px;
}

.header-buttons .secondary-button ,
.header-buttons .primary-button {
float: left;
margin-left: 0;
margin-right: 20px;
border-radius: 45px;
}

header .intro-text {
    padding-top: 180px;
    padding-bottom: 0;
    float: left;
    width: 50%;
}
header .intro-text .intro-lead-in {
    font-family: Lato;
    font-size: 52px;
    font-weight: 200;
    letter-spacing: -1px;
    margin: 0;
    text-align: left;
    margin-top: 50px;
    float: left;
    line-height: 1.2;
}
header .header-app {
    display: block;
    margin: auto;
    float: right;
    text-align: right;
}
header .header-app .app {
    margin-top: 170px;
    margin-bottom: 0;
}
header .container {
    position: relative;
}
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
/* --------------------------------------
 SECTIONS
-----------------------------------------*/


/* ABOUT*/

#about {overflow: hidden;}
#about .container {
    position: relative;
}

/* FEATURES*/

#features {overflow: hidden;}
#features .container {
    position: relative;
}
#features img {
    position: absolute;
    top: 0;
    right: 0
}
#features .section-subheading {
    margin-bottom: 30px;
    margin-top: 5px;
    max-width: 450px;
    float: left;
    line-height: 25px;
}
.features-tabs .tabs {
    margin: 0;
    padding: 0;
    width: 1170px;
    height: 60px;
    background-color: white;
    margin-top: 100px;
}
.features-tabs .tab {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding: 0;
    display: inline-block;
    zoom: 1;
    background: none;
    border: none;
    border-bottom: none;
    text-align: center;
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    height: 58px;
    line-height: 60px;
    background: #fafafa;
}
.features-tabs .tab a {
    color: #bbb;
    display: block;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-weight: lighter;
    border-top: 1px solid;
    border-bottom: 1px solid;
}
.features-tabs .tab.active {
    background: #fff;
}
.features-tabs .tab a.active {
    color: #766dcc;
    border-bottom: 1px solid #766dcc;
}
.features-tabs .tab:hover a {
    color: #766dcc
}
.features-tabs .panel-container {
    background: #fff;
    border: solid #666 1px;
    padding: 10px;
    -moz-border-radius: 0 4px 4px 4px;
    -webkit-border-radius: 0 4px 4px 4px;
}
.features-tabs .tab a .triangle {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.features-tabs .tab a.active .triangle {
    border-top: 0;
    visibility: visible;
    width: 0;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    height: 0;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 8px solid #7A71CD;
    opacity: 1;
    position: absolute;
    right: 50%;
    margin-right: -5px;
    bottom: -11px;
}
.features-tabs .tab .triangle .inner-triangle {
    display: block;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 8px solid #fff;
    bottom: 2px;
    position: absolute;
    right: -8px;
}
#features-tab1 img {
    margin-right: 80px;
    margin-top: 170px;
}
#features-tab2 img {
    margin-right: 60px;
    margin-top: 205px;
}

#features-tab3 img {
    margin-top: 205px;
    margin-right: 30px;
}
.features-tabs ul {
    padding-left: 0px;
    margin-bottom: 30px;
}
.features-tabs li {
    background: url(../img/checked.png) no-repeat left 20px;
    padding-left: 40px;
    list-style: none;
    margin: 0;
    color: #666;
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    line-height: 60px;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

/*  SCREENSHOTS*/

#screenshots .owl-controls .owl-buttons {
    display: block;
}

#screenshots .owl-theme .owl-controls {
    margin-top: 0;
    text-align: center;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 190px;
    z-index: 1;
}
#screenshots .slider {
    max-width: 1024px;
    margin: 38px auto
}
#screenshots .slider img {
    display: block;
    margin: auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;

}


/* PRICING*/

.pricing {
    overflow: hidden;
    position: relative;
    border: 1px solid #766DCC;
    border-top: none;
    -webkit-border-bottom-right-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    width: 100%;
    margin: 0;
}
.pricing.active {
    background-color: #766dcc;
    border: 1px solid #766dcc;
    opacity: 0.85;
    border-top: 0;
}
.pricing-title {
    background-color: #766dcc;
    border-radius: 4px 4px 0 0;
    text-align: center;
    color: white;
    font-family: Lato;
    font-size: 16px;
    font-weight: 700;
    line-height: 62px;
    height: 60px;
}
.pricing .pricing-row {
    padding-top: 23px;
    float: left;
    padding-left: 0;
    text-align: center;
    padding-right: 0;
    width: 100%;
}
.pricing .pricing-row.selected {
    background-color: whitesmoke;
    font-weight: bold;
    color: #666;
    font-size: 14px;
    padding-top: 13px;
    margin-top: 10px;
    margin-bottom: -13px;
    padding-bottom: 13px;
}
.pricing.active .pricing-row.selected {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.pricing .col-lg-3 {
    padding: 50px 0 20px 0;
    font-family: Lato;
    font-weight: 300;
    line-height: 25px;
    color: #766dcc;
    width: 100%;
    text-align: center;
}
.pricing.active .col-lg-3 {
    color: #fff;
}
.pricing .button-container {
    text-align: center;
    position: relative;
    padding: 42px 0 45px 0;
    width: 100%;
    margin: 0;
    height: auto;
    background: none;
}
.pricing .pricing-price {
    font-size: 60px;
    letter-spacing: -2px;
    line-height: 42px;
    display: inline-block;
}
.pricing .pricing-time {
    font-weight: 300;
    letter-spacing: -1px;
    margin-top: 5px;
    font-size: 30px;
}
.pricing .iconita {
    line-height: 52px;
    font-size: 48px;
    height: 52px;
}
.pricing .pricing-title {
    font-weight: 700;
    font-size: 32px;
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 32px;
}
.pricing .pricing-option {
    text-transform: capitalize;
    text-align: center;
    line-height: 1;
    color: #666;
    font-family: Lato;
    font-size: 16px;
}
.pricing .pricing-row.selected .pricing-option {
    font-size: 14px;
}
.pricing .pricing-option.selected {
    background: #3595f8;
}
.pricing.active .pricing-option {
    color: #fff;
}
.pricing .pricing-row.selected .fa {
    font-size: 13px;
    top: 0;
}
.pricing .fa {
    color: #766dcc;
    font-size: 11px;
    margin-right: 10px;
    position: relative;
    top: -1px;
}
.pricing.active .fa {
    color: #fff;
}
.pricing .currency {
    font-size: 34px;
    margin-right: 5px;
    position: relative;
    top: -20px;
}
.pricing .billing-time {
    color: #b3b3b3;
    font-size: 14px;
    line-height: 14px;
    margin-top: 8px;
}
.pricing.active .billing-time {
    color: #fff;
}
.pricing .secondary-button {
    background: transparent;
}
.pricing .secondary-button:hover {
    background: #fff;
}
.pricing .secondary-button.secondary-button-inverse:hover {
    background: #766dcc;
}

/* TEAM*/

.team-member {
    text-align: center;
    overflow: hidden;
    position: relative;
}
.team-member img {
    margin: 0 auto;
    border: none;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}
.team-content {
    padding: 25px;
    background: #766dcc;
    color: #fff;
    position: relative;
    z-index: 100;
    margin-top: -50px;
    border-radius: 0px 0px 3px 3px;
}

.team-content h5 {
    font-family: Lato;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    margin-bottom: 15px;
}
.team-content .team-subtitle {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 30px;
    display: block;
    line-height: 1.2;
}

.team-content .fa {
    color: white;
    margin: 0 15px;
    font-family: FontAwesome;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-size: 22px;
    font-weight: 400;
    line-height: 25px;
    height: 25px;
}

.team-content .triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-bottom: 10px solid #766dcc;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: -10px;
}

.team-member:hover .triangle {
    border-bottom: 700px solid;
    border-color: #766dcc;
    opacity: 0.85;
    border-left: 700px solid transparent;
    border-right: 700px solid transparent;
    margin-left: -700px;
    top: -650px;
}

.team-member:hover img {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.team-details {
    position: absolute;
    top: 215px;
    width: 100%;
    z-index: 101;
    margin: auto;
    text-align: center;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.team-details a:hover p {
    color: #273140
}
.team-details p {
    color: white;
    margin: 0 15px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-weight: 400;
    line-height: 25px;
    height: 25px;
}
.team-member:hover .team-details {
    opacity: 1;
    visibility: visible;
}

/*  CLIENTS*/

#clients .owl-controls .owl-buttons {
    display: block;
}
#testimonials .owl-controls {
    text-align: center;
    margin-top: 70px;
}
#clients .owl-theme .owl-controls {
    margin-top: 0;
    text-align: center;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 48px;
    z-index: 1;
}
#clients .slider {
    max-width: 1024px;
    margin: 150px auto 46px auto;
}
#clients .slider img {
    display: block;
    margin: auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.30;
}
#clients .slider img:hover {
    opacity: 1;
}

/* TESTIMONIALS*/

#testimonials {
    padding-bottom: 0px;
    margin-bottom: 52px;
}
.tt-content h3 {
    font-size: 26px;
    font-weight: lighter;
    line-height: 1.65;
    text-align: center;
    color: #333;
    margin: auto;
    font-family: Lato;
    max-width: 850px;
}
.tt-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
    padding-top: 20px;
}
.tt-content .content {
    font-size: 16px;
    font-weight: 400;
}
.tt-content .tt-container {
    margin-top: 15px;
    text-align: center;
}
.tt-images {
    text-align: center;
    margin-bottom: -42px;
    font-size: 0;
}
.tt-image {
    display: inline-block;
    margin: 0;   
    border-radius: 90px;
    margin: 0 15px;
}
.tt-image img {
    display: inline-block;
    width: 84px;
    height: 84px;
    border-radius: 90px;
}
.tt-quote {
    font-size: 80px;
    font-weight: 700;
    line-height: 70px;
    margin-right: 20px;
    font-family: serif;
    color: #766DCC;
    display: block;
    margin-bottom: 40px;
    margin-left: 2px;
}

#testimonials .owl-pagination {
    position: absolute;
    width: 100%;
}
#testimonials .owl-controls span {
    width: 84px;
    height: 84px;
    opacity: 0.65;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background: #fff;
    border-radius: 90px;
    margin: 0 15px;
}
#testimonials .owl-controls .owl-page:hover span,
#testimonials .owl-controls .owl-page.active span {
    opacity: 0;
}


/*  SUBSCRIBE*/

#subscribe {
    padding: 50px;
}
#subscribe h3 {
    color: white;
    font-family: Lato;
    letter-spacing: -1px;
    font-size: 30px;
    font-weight: 300;
    float: left;
    margin: 0;
    line-height: 50px;
}
#subscribe .subscribe-form {
    float: right;
    position: relative;
}

#subscribe-success {
    position: absolute;
    top: 0;
    width: 100%;
}

#subscribe-success .alert-success {
    margin: 0;
    width: 100%;
    border-radius: 2px;
    background: #fff;
    text-align: center;
    color: #273140;
}

#subscribe #subscribe-success .close {
    outline: none;
}

#subscribe #subscribe-success .close:hover {
    color: #273140;
}



#subscribe .subscribe-form input {
    width: 400px;
    border-radius: 45px;
    height: 50px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: none;
    padding: 0 20px;
}
#subscribe .subscribe-form button[type="submit"] {
    width: 180px;
    border: 1px solid white;
    height: 50px;
    color: inherit;
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    outline: none;
    background-color: white;
    border-radius: 45px;
    float: right;
    margin-left: 20px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
#subscribe .subscribe-form input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}
#subscribe .subscribe-form input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
}
#subscribe .subscribe-form input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
}
#subscribe .subscribe-form input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}
#subscribe .subscribe-form button:hover {
    color: #fff;
    background: none;
}
#subscribe .subscribe-form input:focus {
    box-shadow: none;
    border: 1px solid #fff;
    outline: none;
}
/*  CONTACT*/

#contact {
    background-color: #fff;
    position: relative;
}
#contact .contact-form-container {
    float: left;
    width: 570px;
}
#contact .form-group {
    margin-bottom: 30px;
    float: left;
    width: 270px;
    position: relative;
}
#contact .form-textarea {
    width: 100%;
}
#contact .form-group input,
#contact .form-group textarea {
    padding: 20px;
    float: left;
    border-radius: 2px;
    resize: none;
}
#contact .section-subheading {
    margin-bottom: 50px;
    margin-top: 30px;
    line-height: 25px;
}
#contact .form-group input.form-control {
    border-radius: 2px;
    width: 100%;
    height: 50px;
    background-color: white;
    padding: 0 20px;
    line-height: 50px;
    border: 1px solid #ccc;
}
#contact .form-group textarea.form-control {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 0;
    border-radius: 2px;
    min-height: 150px;
}
#contact .form-group textarea.form-control:focus,
#contact .form-group input.form-control:focus {
    border-color: #766dcc;
    box-shadow: none;
    outline: none;
}
#contact .text-danger ul {
    margin: 0;
    padding: 0;
    float: right;
    list-style-type: none;
    text-align: right;
    font-size: 14px;
    line-height: 1;
    top: 0;
    max-width: 130px;
    padding-top: 11px;
    right: 20px;
    position: absolute;
}
#contact .text-danger {
    color: #766dcc;
    margin: 0;
}
.contact-map-container {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    padding-left: 32px;
    right:0px;

}
.contact-map-container #map {
    width: 100%;
    height: 100%;
}
#contactForm .alert-success {
    color: #766dcc;
    background-color: #fff;
    border-color: #766dcc;
    padding: 14px;
    border-radius: 2px;
}

/* --------------------------------------
 .DOWNLOAD
-----------------------------------------*/

.download{
    background-image: url('../img/bg2.jpg');
    -webkit-background-size: cover;
    background-size: cover;
    color: #fff;
    
}

#download img{
    display: inline-block !important;
    margin-bottom: 8px;
}
.download-buttons{
    margin-top: 30px;
}
/* --------------------------------------
 .FOOTER
-----------------------------------------*/

footer {
    padding: 50px 0 40px 0;
    background-color: #363b3f;
}
.social-footer a{
    font-size: 18px;
    padding-right: 10px;
    color: #959595;
    transition: 0.3s;
}
.social-footer a:hover{
    color: #fff;
}
.social-footer hr{
    border-color: #8B8B8B !important;
}
.lower-footer span,
.lower-footer a {
    opacity: 0.2;
    color: white;
    font-family: Lato;
    font-size: 12px;
    font-weight: 400;
    line-height: 40px;
    margin-right: 25px;
}
.lower-footer a {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.lower-footer a:hover {
    opacity: 1;
    text-decoration: none;
}

.lower-footer .fa {
    margin: 0;
    opacity: 1;
    font-family: FontAwesome;
    font-size: 20px;
    font-weight: 400;
    float: left;
    margin-right: 0;
}
.lower-footer {
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    width: 100%;
    float: left;
}
.footer-text p + hr{
    margin-top: 11px;
    margin-bottom: 11px;
    border: 0;
    border-top: 1px solid #6E6E6E;
}
.footer-widgets h3{
    color: #959595;
}
.footer-widgets ul{
    padding:0px;
}
.footer-widgets ul li{
    list-style: none;
    line-height: 28px;
}
.footer-nav {
    float: left;
    max-width: 280px;
    padding: 0;
    margin: 0;
    margin-top: 5px;
}
.footer-nav li {
    width: 120px;
    display: inline-block;
    float: left;
    margin-bottom: 30px;
}
.footer-nav a {
    color: white;
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    display: inline-block;
    text-align: left;
    float: left;
    line-height: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.footer-nav a:hover {
    text-decoration: none;
    color: #766dcc
}
.footer-secondary-nav {
    float: left;
    padding: 0;
    width: auto;
    margin-top: 5px;
    margin-bottom: 0;
    padding-left: 50px;
    max-width: 280px;
}
.footer-secondary-nav li {
    display: inline-block;
    float: left;
    margin-bottom: 30px;
    width: 100%;
}
.footer-secondary-nav a {
    font-family: Lato;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    float: left;
    line-height: 14px;
}

.footer-secondary-nav .fa {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    height: 14px;
    line-height: 13px;
}
.footer-secondary-nav .fa.fa-envelope {
    font-size: 14px;
}

.scroll-indicator.go-top {
    position: relative;
    bottom: 0;
}
.go-top a{
    margin-left: auto !important;
    position: absolute;
    z-index: 400;

}

.scroll-indicator {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    position: absolute;
    width: 60px;
    height: 60px;
    left: calc(50% - 30px);
    bottom: 1rem;
    cursor: pointer;
    -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
    -ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1)
}
.scroll-indicator:hover {
    bottom: 0.5rem
}
.scroll-indicator.go-top {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    z-index: 50;
    bottom: 1.5rem
}
.scroll-indicator.go-top:hover {
    bottom: 2rem
}
.scroll-indicator.go-top:before {
    background-color: #766DCC;
}
.scroll-indicator.go-top i {
    background: #fff;
    color: #000
}

.scroll-indicator:before,
.scroll-indicator:after {
    content: "";
    top: 0;
    left: 0;
    background-color:#766DCC;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    opacity: 0;
    -webkit-animation: clickMe 1.8s 333ms infinite ease-out;
    -moz-animation: clickMe 1.8s 333ms infinite ease-out;
    animation: clickMe 1.8s 333ms infinite ease-out
}


.scroll-indicator i {
    width: 30px;
    height: 30px;
    display: block;
    background: #ff1d4d;
    color: #fff;
    text-align: center;
    line-height: 30px;
    font-size: 2rem;
    background-size: 12px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    border-radius: 100%;
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 100
}
.scroll-indicator:after {
    -webkit-animation: clickMe 1.8s 777ms infinite ease-out;
    -moz-animation: clickMe 1.8s 777ms infinite ease-out;
    animation: clickMe 1.8s 777ms infinite ease-out
}
@-webkit-keyframes clickMe {
    0% {
        opacity: 0;
        -webkit-transform: scale(0)
    }
    5% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}
@-moz-keyframes clickMe {
    0% {
        opacity: 0;
        -moz-transform: scale(0)
    }
    5% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}
@keyframes clickMe {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0)
    }
    5% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

/* Good Luck :) */