/* ==== FONTS ==== */
@font-face {
	font-family: proximanovathin;
	src: url("../fonts/proximanovathin.otf");
}
@font-face {
	font-family: proximanovasemibold;
	src: url("../fonts/proximanovasemibold.otf");
}

@font-face {
	font-family: proximanovaregular;
	src: url("../fonts/proximanovaregular.otf");
}

/*=================================================================*/
/*                      MAIN CONFIGURATION                              
/*=================================================================*/
body {
    color: #111;
    background-color: #FFF;
    font-family: "proximanovathin";
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: .05em;
    padding: 0 0 10px;
}

ul.list-style li {
    position: relative;
    list-style: none;
    margin-left: 46px;
}

ul.list-style li:before {
    content: '';
    background: #2dd0c6;
    display: block;
    height: 1px;
    left: -45px;
    top: 36%;
    position: absolute;
    width: 20px;
}

.flex {
    display: flex;
    align-items: center;
    align-content: center;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.container-850 {
    max-width: 850px;
}

.container-800 {
    max-width: 800px;
}

.container-750 {
    max-width: 750px;
}

.container-700 {
    max-width: 700px;
}

.container-600 {
    max-width: 600px;
}

.container-580 {
    max-width: 580px;
}

.container-500 {
    max-width: 500px;
}

/*=================================================================*/
/*                      TYPOGRAPHY                              
/*=================================================================*/
h1,h2,h3,h4,h5,h6 {
    font-family: "proximanovasemibold";
}

p {
    font-family: "proximanovathin";
    font-size: 20px;
    line-height: 29px;
    margin: 0 0 25px;
}

a {
    color: #2dd0c6;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover {
    color: #111;
    text-decoration: none;
}

a:focus {
    outline: 0;
    text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
    letter-spacing: .05em;
    margin: 20px 0;
}

h2 {
    font-size: 36px;
    line-height: 42px;
}

h2.light {
    font-weight: 100;
}


/*=================================================================*/
/*                      OVERLAYS                              
/*=================================================================*/
.overlay-gradient {
    background: rgba(37,177,174,0.8);
/* For browsers that do not support gradients */
    background: -webkit-linear-gradient(top left,rgba(0,115,255,0.8),rgba(38,197,69,0.8));
/* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(bottom right,rgba(0,115,255,0.8),rgba(38,197,69,0.8));
/* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(bottom right,rgba(0,115,255,0.8),rgba(38,197,69,0.8));
/* For Firefox 3.6 to 15 */
    background: linear-gradient(to bottom right,rgba(0,115,255,0.8),rgba(38,197,69,0.8));
/* Standard syntax */
    left: 0;
    height: 100%;
    top: 0;
    position: absolute;
    width: 100%;
}

/*=================================================================*/
/*                      SPACING AND POSITION SETTINGS                              
/*=================================================================*/
.relative {
    position: relative;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mr-10 {
    margin-right: 10px;
}

.pr-0 {
    padding-right: 0;
}

.pl-0 {
    padding-left: 0;
}

/*=================================================================*/
/*                      PRELOADER                              
/*=================================================================*/
.preloader-outer {
    width: 100%;
    height: 100%;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.preloader {
    height: 40px;
    width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
}

.preloader:before {
    content: "";
    display: block;
    position: absolute;
    left: -1px;
    top: -1px;
    height: 100%;
    width: 100%;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
    border: 1px solid #2dd0c6;
    border-top: 1px solid transparent;
    border-radius: 100%;
}

.preloader > .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 25px;
    width: 10.6px;
    margin-top: -12.5px;
    margin-left: -5.3px;
    -webkit-animation: wink 1s ease-in-out infinite alternate;
    animation: wink 1s ease-in-out infinite alternate;
}

@media only screen and (min-width: 768px) {
    .preloader {
        height: 60px;
        width: 60px;
        margin-top: -30px;
        margin-left: -30px;
    }

    .preloader:before {
        left: -2px;
        top: -2px;
        border-top-width: 1px;
        border-left-width: 1px;
        border-bottom-width: 1px;
        border-right-width: 1px;
    }

    .preloader > .icon {
        height: 37.5px;
        width: 15.9px;
        margin-top: -18.75px;
        margin-left: -7.95px;
    }
}

@media only screen and (min-width: 1200px) {
    .preloader {
        height: 80px;
        width: 80px;
        margin-top: -40px;
        margin-left: -40px;
    }

    .preloader > .icon {
        height: 50px;
        width: 21.2px;
        margin-top: -25px;
        margin-left: -10.6px;
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-webkit-keyframes wink {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes wink {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*=================================================================*/
/*                      SECTION                              
/*=================================================================*/
section {
    background: #FFF;
    overflow: hidden;
    padding: 0px 0;
    position: relative;
}

.section-header {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 0 15px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: .3em;
    margin-top: 0;
    text-transform: uppercase;
}

.section-header p {
    font-weight: 300;
}

section.odd {
    background: #fbfbfb;
}

section.colored {
    background: #2dd0c6;
    color: #FFF;
}

/*=================================================================*/
/*                      SECTION HERO                              
/*=================================================================*/
/* === Hero Backgrounds === */

.hero-bg-7 {
    background: url("../images/baza-bg2.jpg");
    background-size: cover;
}

.hero {
    background-color: transparent;
    padding: 0;
}

.hero .cta {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 82px;
	padding-bottom: 42px;
}

.hero-logo {
	padding-bottom: 34px
}

.hero .cta h2 {
    font-size: 36px;
	line-height: 42px;
    margin: 0 0 22px;
}

.hero .cta p {
    font-size: 20px;
	line-height: 29px;
    margin: 0 0 25px;
}

.hero .cta p.result {
    margin: 0 0 8px;
}

.hero .cta p.hero-small {
    font-size: 16px;
	line-height: 28px;
}

.hero .cta p.hero-scroll  {
    font-size: 14px;
	line-height: 17px;
}

.hero .cta a.btn {
    margin-right: 10px;
}

.hero .cta a.btn:last-child {
    margin: 0;
}

.hero-bg-colored .cta h2,.hero-bg-colored .cta p {
    color: #FFF;
    font-weight: 100;
}

.hero-bg-video .cta h2,.hero-bg-video .cta p {
    color: #FFF;
}

.hero-bg-video video {
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: fixed;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
}

.bounce {
 animation: bounce 4s infinite;
 -webkit-animation: bounce 4s infinite;
 -moz-animation: bounce 4s infinite;
 -o-animation: bounce 4s infinite;
}
 
@-webkit-keyframes bounce {
 0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
 40% {-webkit-transform: translateY(-14px);}
 60% {-webkit-transform: translateY(-7px);}
}
 
@-moz-keyframes bounce {
 0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
 40% {-moz-transform: translateY(-14px);}
 60% {-moz-transform: translateY(-7px);}
}
 
@-o-keyframes bounce {
 0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
 40% {-o-transform: translateY(-14px);}
 60% {-o-transform: translateY(-7px);}
}
@keyframes bounce {
 0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
 40% {transform: translateY(-14px);}
 60% {transform: translateY(-7px);}
}
/*=================================================================*/
/*                      SECTION FEATURES                              
/*=================================================================*/
.features-2-wrap {
    display: flex;
    align-items: center;
}

.features h2 {
	color: #435679;
}

.features p {
	color: #6e7f94;
}

.feature-text-width {
	max-width: 435px;
	padding-left: 10px;
}

.feature-text-width-alt {
	max-width: 435px;
	padding-right: 10px;
}

.phones1{
	max-width: 248px;
	max-height: 503px;
}

.featimage {
	max-width: 248px;
	max-height: 503px;
}
.featvid {
	position: relative;
	top: -450px;
	right: -13px;
}

.row.flex{
	margin-bottom: 72px;
}

section.features{
	margin-top: 48px;
}

@media screen and (max-width:768px){
        #featureparent1{
          display:flex;
          flex-flow: column;
        }
        #featurechild1a {order:2;}
        #featurechild1b {order:1;}
		
        #featureparent3{
          display:flex;
          flex-flow: column;
        }
        #featurechild3a {order:2;}
        #featurechild3b {order:1;}
		
        #featureparent5{
          display:flex;
          flex-flow: column;
        }
        #featurechild5a {order:2;}
        #featurechild5b {order:1;}	
   }
   
@media screen and (min-width: 990px) and (max-width: 1200px) {
	.feature-text-width {
		padding-left: 45px;
	}
}


/*=================================================================*/
/*                      SECTION Signup
/*=================================================================*/
section.signup

{
    border-top: dashed 1px #EEE;
}
section.signup h2
{
	font-size: 36px;
	color: #2dd0c6;
	margin-bottom: 5px;
}

.signup .cta p.footer-small {
    font-size: 20px;
	line-height: 28px;
}


/*=================================================================*/
/*                      SUBSCRIPTION FORM
/*=================================================================*/

input[type="email"]{
	width: 519px;
	height: 47px;
	border: 1px;
	border-style: solid;
	border-radius: 23px;
	padding-left: 24px;
	padding-right: 174px;
}

button[type="submit"]{
    font-family: "proximanovaregular";
	width: 170px;
	height: 47px;
	border: 1px;
	border-style: solid;
	margin-left: -174px;
	border-radius: 23px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


@media screen and (max-width:550px){
	input[type="email"]{
		max-width: 540px;
		width: auto;
		height: 47px;
		border: 1px;
		border-style: solid;
		border-radius: 0px;
		padding-left: 24px;
		padding-right: 24px;
	}

	button[type="submit"]{
	    font-family: "proximanovaregular";
		max-width: 100px;
		height: 47px;
		margin-top: 10px;
		border: 1px;
		border-style: solid;
		margin-left: 0px;
		border-radius: 0px;
	    -webkit-transition: all .3s ease-in-out;
	    -moz-transition: all .3s ease-in-out;
	    transition: all .3s ease-in-out;
	}
}


input[type="email"].email-hero-form, select, textarea {
	color: #fff;
}

input[type="email"].email-hero-form {
	border-color: #fff;
	background: rgba(0,0,0,0.1);
}

input[type="email"].email-foot-form, select, textarea {
	color: #93aac7;
}

input[type="email"].email-foot-form {
	border-color: #93aac7;
	background: #fff;
}

input[type="email"].email-hero-form::-webkit-input-placeholder { /* Chrome/Opera/Safari */
      font-family: "proximanovaregular";
	  color: rgba(255,255,255,1);}
input[type="email"].email-hero-form::-moz-placeholder {/* Firefox 19+ */
      font-family: "proximanovaregular";
	  color: rgba(255,255,255,1);}
input[type="email"].email-hero-form:-ms-input-placeholder { /* IE 10+ */
    font-family: "proximanovaregular";
	color: rgba(255,255,255,1);}
input[type="email"].email-hero-form:-moz-placeholder {  /* Firefox 18- */
    font-family: "proximanovaregular";
    color: rgba(255,255,255,1);}

input[type="email"].email-foot-form::-webkit-input-placeholder { /* Chrome/Opera/Safari */
      font-family: "proximanovaregular";
  color: rgba(147,170,199,1);}
input[type="email"].email-foot-form::-moz-placeholder {/* Firefox 19+ */
      font-family: "proximanovaregular";
  color: rgba(147,170,199,1);}
input[type="email"].email-foot-form:-ms-input-placeholder { /* IE 10+ */
    font-family: "proximanovaregular";
color: rgba(147,170,199,1);}
input[type="email"].email-foot-form:-moz-placeholder {  /* Firefox 18- */
	font-family: "proximanovaregular";
    color: rgba(147,170,199,1);}


button[type="submit"].submit-hero-form {
	border-color: #fff;
	background-color: #fff;
	color: rgb(37,177,174);
}

button[type="submit"].submit-foot-form {
	border-color: #93aac7;
	background-color: rgb(37,177,174);
	color: #fff;
    background: -webkit-linear-gradient(left,rgba(0,115,255,0.8),rgba(38,197,69,0.8));
/* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right,rgba(0,115,255,0.8),rgba(38,197,69,0.8));
/* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right,rgba(0,115,255,0.8),rgba(38,197,69,0.8));
/* For Firefox 3.6 to 15 */
    background: linear-gradient(to right,rgba(0,115,255,0.8),rgba(38,197,69,0.8));
}

button[type="submit"].submit-hero-form:hover {
    color: #FFF;
    background: #009bff;
    background: -webkit-linear-gradient(left,rgba(0,115,255,0.6),rgba(38,197,69,0.6));
/* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right,rgba(0,115,255,0.6),rgba(38,197,69,0.6));
/* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right,rgba(0,115,255,0.6),rgba(38,197,69,0.6));
/* For Firefox 3.6 to 15 */
    background: linear-gradient(to right,rgba(0,115,255,0.6),rgba(38,197,69,0.6));
}

button[type="submit"].submit-hero-form:focus {
    color: #FFF;
    background: #009bff;
    background: -webkit-linear-gradient(left,rgba(0,115,255,0.6),rgba(38,197,69,0.6));
/* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right,rgba(0,115,255,0.6),rgba(38,197,69,0.6));
/* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right,rgba(0,115,255,0.6),rgba(38,197,69,0.6));
/* For Firefox 3.6 to 15 */
    background: linear-gradient(to right,rgba(0,115,255,0.6),rgba(38,197,69,0.6));
}

button[type="submit"].submit-foot-form:hover {
    background: #000;
    color: #fff;
}

button[type="submit"].submit-foot-form:focus {
    background: #000;
    color: #fff;
}

/*=================================================================*/
/*                      FOOTER
/*=================================================================*/
footer {
    background: #FFF;
    border-top: dashed 1px #EEE;
    padding: 20px 0;
    text-align: center;
}

footer img.footer-logo {
    margin-bottom: 25px;
}

footer span.copyright {
    color: #b9b9b9;
    font-size: 12px;
    font-weight: 300;
    display: block;
    letter-spacing: .1em;
    line-height: 22px;
    margin-bottom: 20px;
}

footer span.copyright i {
    color: #2dd0c6;
}

footer ul.footer-menu {
    list-style: none;
    margin-bottom: 20px;
}

footer ul.footer-menu li {
    display: inline-block;
    padding: 0 10px;
}

footer ul.footer-menu li a {
    color: #111;
    font-size: 14px;
}

footer ul.footer-menu li a:hover {
    color: #2dd0c6;
    text-decoration: none;
}

.footer-dark {
    border: 0;
    background: #252525;
}

.footer-dark span.copyright {
    color: #6b6b6b;
}

.footer-dark ul.footer-menu li a {
    color: #b1b1b1;
}

.footer-dark ul.footer-menu li a:hover {
    color: #FFF;
}

.footer-dark .social-icons li a {
    border-color: #2dd0c6;
    color: #FFF;
    background: #2dd0c6;
}

.footer-dark .social-icons li a:hover {
    background: #FFF;
    border-color: #FFF;
    color: #2dd0c6;
}

/* === Footer v2 === */
.footer-v2 {
    text-align: left;
    padding-bottom: 0;
}

.footer-v2 .footer-widget h3.title {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .1em;
    margin: 0 0 30px;
}

.footer-v2 .footer-widget ul {
    list-style: none;
}

.footer-v2 .footer-widget ul li a {
    font-size: 14px;
}

.footer-v2 .footer-widget .subscribe-button {
    font-size: 18px;
    padding: 8px 14px;
}

.footer-v2 .copyright-outer {
    border-top: solid 1px #f7f7f7;
    margin-top: 50px;
    padding-top: 25px;
    margin-bottom: 5px;
}

.footer-v2 .copyright-outer span.copyright {
    margin-bottom: 25px;
}

/* === Footer v2 dark === */
.footer-v2.dark {
    border-top: 0;
    background: #252525;
    color: #FFF;
}

.footer-v2.dark .footer-widget .social-icons li a {
    color: #FFF;
    background: #2dd0c6;
    border: 0;
}

.footer-v2.dark .footer-widget .social-icons li a:hover {
    color: #2dd0c6;
    background: #FFF;
}

.footer-v2.dark .footer-widget ul li a {
    color: #b1b1b1;
}

.footer-v2.dark .footer-widget ul li a:hover {
    color: #FFF;
}

.footer-v2.dark .copyright-outer {
    border-top: solid 1px #333;
    margin-top: 50px;
    padding-top: 25px;
}

.footer-v2.dark .copyright-outer .copyright {
    color: #b9b9b9;
}

/*=================================================================*/
/*                      TEMPLATE ELEMENTS
/*=================================================================*/
.stats {
    margin-bottom: 40px;
}

.stats ul {
    list-style: none;
}

.stats ul li {
    border: solid 1px #2dd0c6;
    color: #2dd0c6;
    display: inline-block;
    padding: 24px 0;
    margin: 0 10px;
    width: 170px;
}

.stats ul li h4 {
    margin: 10px 0;
}

/* === Social Icons === */
.social-icons {
    list-style: none;
}

.social-icons li {
    display: inline-block;
    text-align: center;
    padding: 0 3px;
}

.social-icons li a {
    border: solid 1px #2dd0c6;
    border-radius: 50%;
    color: #2dd0c6;
    display: block;
    font-size: 12px;
    line-height: 29px;
    height: 30px;
    width: 30px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.social-icons li a i {
    margin: 0;
    line-height: 30px;
}

.social-icons li a:hover {
    background: #2dd0c6;
    color: #FFF;
}

/* === Store buttons === */
.store-buttons a {
    margin-right: 10px;
}

.store-buttons a:last-child {
    margin: 0;
}

.store-buttons ul {
    list-style: none;
}

.store-buttons ul li {
    display: inline-block;
    padding: 0 10px;
}

.store-buttons ul li img {
    max-width: 170px;
}

ul.icon-button {
    list-style: none;
}

ul.icon-button li {
    display: inline-block;
}

ul.icon-button li a {
    border-radius: 50%;
    display: block;
    font-size: 22px;
    line-height: 60px;
    margin: 0 5px;
    height: 60px;
    text-align: center;
    padding: 0;
    width: 60px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

ul.icon-button li a i {
    line-height: 60px;
}

ul.icon-button li a.default {
    background: #2dd0c6;
    color: #FFF;
}

ul.icon-button li a.default:hover {
    background: #111;
    color: #FFF;
}

ul.icon-button li a.primary {
    background: #111;
    color: #FFF;
}

ul.icon-button li a.primary:hover {
    background: #FFF;
    color: #2dd0c6;
}

ul.icon-button li a.light {
    background: #FFF;
    color: #2dd0c6;
}

ul.icon-button li a.light:hover {
    background: #111;
    color: #FFF;
}

/* === Count down === */
ul#countdown {
    list-style: none;
}

ul#countdown li {
    display: inline-block;
    height: 150px;
    border: solid 1px #FFF;
    border-radius: 50%;
    margin: 0 10px;
    padding: 28px 0;
    width: 150px;
}

ul#countdown li span {
    color: #FFF;
    font-family: "Raleway",serif;
    font-size: 40px;
    font-weight: 300;
}

ul#countdown li p {
    margin: 0;
}

/* === Buttons === */
.btn {
    border: 0;
    border-radius: 0;
    color: #FFF;
    font-family: "Roboto",sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 12px 26px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn:focus {
    outline: 0;
}

.btn-default {
    color: #FFF;
    background: #2dd0c6;
}

.btn-default:hover,.btn-default:focus {
    color: #FFF;
    background: #111;
}

.btn-primary {
    background: #111;
    color: #FFF;
}

.btn-primary:hover,.btn-primary:focus {
    background: #2dd0c6;
    color: #FFF;
}

.btn-light {
    background: #FFF;
    color: #2dd0c6;
}

.btn-light i {
    color: #2dd0c6;
}

.btn-light:hover i,.btn-light:focus i {
    color: #FFF;
}

.btn-download i {
    font-size: 26px;
    display: inline-block;
    margin-right: 5px;
    vertical-align: text-bottom;
}

.btn-download span.text {
    display: inline-block;
    font-size: 14px;
    text-align: left;
    line-height: 1.2;
    text-transform: none;
}

.btn-download span.little {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.btn-light:hover {
    background: #111;
    color: #FFF;
}

.btn-lg {
    padding: 21px 34px;
}

.btn-icon i {
    font-size: 14px;
    margin-right: 10px;
}

.btn-full {
    width: 100%;
}

/* === Form Control === */
.form-control {
    display: block;
    width: 100%;
    height: 41px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .05em;
    line-height: 1.6;
    color: #555;
    background-color: transparent;
    background-image: none;
    border: solid 1px #2dd0c6;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:focus {
    border-color: #C7C7C7;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-group {
    margin-bottom: 30px;
}

/* === Slick Slide Control === */
.slick-slide {
    height: auto;
}

.slick-prev {
    left: -80px;
}

.slick-next {
    right: -80px;
}

.slick-next,.slick-prev {
    width: 36px;
    height: 36px;
    line-height: 50px;
    text-align: center;
    background: #2dd0c6;
    border-radius: 50%;
}

.slick-next:hover,.slick-next:focus,.slick-prev:hover,.slick-prev:focus {
    background: #111;
}

.slick-prev:before,.slick-next:before {
    font-family: 'FontAwesome';
    font-size: 21px;
    opacity: 1;
    color: #fff;
}

.slick-next:before {
    content: '\f105';
}

.slick-prev:before {
    content: '\f104';
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots {
    bottom: 0;
    position: relative;
    margin-top: 30px;
}

.slick-dots li {
    width: 25px;
    height: 1px;
}

.slick-dots li.slick-active {
    width: 25px;
    height: 1px;
}

.slick-dots li button {
    width: 25px;
    height: 1px;
    padding: 0;
}

.slick-dots li.slick-active button:before {
    background: #2dd0c6;
    opacity: 1;
    height: 1px;
    width: 25px;
}

.slick-dots li button:before {
    content: '';
    background: #111;
    opacity: .4;
    height: 1px;
    width: 25px;
}

/*=================================================================*/
/*                      BOOTSTRAP ELEMENTS
/*=================================================================*/
.app-carousel {
    height: auto !important;
}

.app-carousel .item {
    border: 0;
    margin: 0;
}

.app-carousel .item img {
    border: solid 1px #f7f7f7;
}

.carousel-indicators {
    bottom: -40px;
    position: relative;
}

.carousel-indicators li {
    display: inline-block;
    width: 25px;
    height: 1px;
    margin: 0 5px;
    padding: 0;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000\9;
    background-color: #8a8a8a;
    border: 0;
    border-radius: 0;
}

.carousel-indicators .active {
    width: 25px;
    height: 1px;
    margin: 0 5px;
    background-color: #2dd0c6;
}

/* Tabs */
.nav-tabs {
    border-bottom: 1px solid #2dd0c6;
}

.nav-tabs > li {
    padding: 0;
}

.nav-tabs > li > a {
    margin-right: 0;
    border: 0;
    border-radius: 0;
}

.nav > li > a:focus,.nav > li > a:hover {
    border-color: transparent;
    text-decoration: none;
    color: #FFF;
    background-color: #2dd0c6;
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 12px 24px;
}

.nav-tabs > li.active > a,.nav-tabs > li.active > a:focus,.nav-tabs > li.active > a:hover {
    border: 0;
    color: #FFF;
    background-color: #2dd0c6;
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 300;
    color: inherit;
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 0;
}

.panel-default {
    border-color: transparent;
}

.panel-default > .panel-heading {
    color: #FFF;
    background-color: #2dd0c6;
    border-color: transparent;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.panel-title > .small,.panel-title > .small > a,.panel-title > a,.panel-title > small,.panel-title > small > a {
    color: #FFF;
}

.pagination > li:first-child > a,.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination > li:last-child > a,.pagination > li:last-child > span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination > .active > a,.pagination > .active > a:focus,.pagination > .active > a:hover,.pagination > .active > span,.pagination > .active > span:focus,.pagination > .active > span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #2dd0c6;
    border-color: transparent;
}

.pagination > li > a,.pagination > li > span {
    position: relative;
    float: left;
    font-weight: 300;
    padding: 12px 18px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #2dd0c6;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #EEE;
}

.pagination > li > a:focus,.pagination > li > a:hover,.pagination > li > span:focus,.pagination > li > span:hover {
    z-index: 2;
    color: #FFF;
    background-color: #2dd0c6;
    border-color: transparent;
}

/*=================================================================*/
/*                      RESPONSIVE SETTINGS
/*=================================================================*/

@media only screen and (min-width: 767px) and (max-width: 991px) {
    .navbar-right {
        margin-right: 0;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-nav {
        background: #FFF;
        padding: 0 20px;
    }

    .navbar-default .navbar-nav li a {
        padding: 18px 12px;
        letter-spacing: .05em;
    }

    .navbar-default .navbar-brand {
        margin-left: 15px !important;
    }

    .navbar-default .navbar-brand > img {
        max-width: 140px;
    }

    .navbar-header {
        float: none;
        display: block;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: none;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin: 7.5px -15px;
    }

    .navbar-nav > li {
        float: none;
    }

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-collapse.collapse.in {
    /* NEW */
        display: block !important;
    }

    .navbar-right {
        float: none !important;
        overflow: hidden;
    }

    #slide-menu {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    .navbar-default .navicon-wrap {
        display: none;
    }

    .navbar-default .navbar-nav.social {
        padding: 20px;
    }

    .navbar-light .navbar-nav li a {
        color: #111;
    }

    .navbar-light .navbar-nav.social li a {
        color: #2dd0c6;
    }

    .navbar-light .navbar-nav.social li {
        border-color: #2dd0c6;
    }

    .navbar-light .navbar-nav li a.current {
        color: #2dd0c6 !important;
    }

    .blog .item {
        margin-bottom: 30px;
    }

    .blog .item .thumb {
        height: auto;
    }

    .team .item {
        margin-bottom: 30px;
    }

    .video-2 .outer {
        height: auto;
    }

    .facts .item {
        margin-bottom: 30px;
    }

    .hero.layout-4 .phone-img {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .flex {
        display: block;
    }

    .hero .cta {
        padding: 150px 0 80px;
    }

    .hero.layout-2 .cta {
        padding: 80px 0;
        text-align: center;
    }

    .hero.layout-2 .phones {
        margin: 0 auto;
        max-width: 300px;
    }

    .hero.layout-4 .cta {
        padding: 160px 0 40px;
    }

    .blog .item {
        max-width: 360px;
        margin: 0 auto 30px;
    }

    .container-500 {
        max-width: 100%;
    }

    .features-2-wrap {
        display: block;
    }

    .features-2-wrap .features-left {
        float: left;
    }

    .features-2-wrap .features-left .text {
        text-align: left;
        float: left;
    }

    .features-2-wrap .feature-icon {
        float: none !important;
    }

    .features-3 .item {
        margin-bottom: 30px;
    }

    .download-cta-2 .cta {
        text-align: left;
        margin-top: 20px;
    }

    .subscribe .form-group {
        margin-bottom: 30px !important;
    }

    .client-item {
        margin-bottom: 30px;
    }

    iframe {
        width: 100%;
        height: auto;
    }

    .footer-widget {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 360px) {
    .hero .cta a.btn,.download-cta .cta a.btn,.store-buttons a {
        margin-right: 0;
    }

    .download-cta-2 .cta a,.store-buttons a {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 320px) {
    .hero .cta a.btn,.download-cta .cta a.btn,.download-cta-2 .cta a {
        margin-right: 0;
        margin-bottom: 0;
        padding: 8px 12px;
    }
}

/* ==== Builder bug fixes ==== */
.section-header h2 p, .work-process .item h3 p, .features-2 .item .text h3 p, .features-3 .text h3 p, h2 p, h2.light p, .blog .item h2.title p, .video-2 .outer .inner h4 p, .video-2 .features .item h3 p, .team .item h3 p, .footer-v2 .footer-widget h3.title p, .download-cta-2 .cta h2 p, .download-cta .cta h2 p  {
    font-family: "Raleway",serif;
    line-height: 1.1;
}

.hero .cta h2 p {
    font-family: "Raleway",serif;
    margin: 0;
}

.navbar-default .navbar-brand p {
    font-family: "Raleway",serif;
    margin: 0;
    letter-spacing: 0.05em;
}

.navbar-default span.slogan p {
    font-size: 11px;
    line-height: 0;
    display: inline;
}

.navbar-default .navbar-brand p {
    font-size: 24px;
    font-weight: 100;
    letter-spacing: .2em;
    margin: 0;
    line-height: 1;
    margin-left: 0 !important;
    height: auto;
    padding: 0;
}

.hero .cta h2 p {
    font-size: 36px;
    font-weight: 100;
    line-height: 1.5;
}

.section-header h2 p {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: .3em;
    line-height: 1.5;
}

.work-process .item h3 p {
    font-size: 20px;
    font-weight: 300;
    margin: 20px 0px 15px;
}

.features-2 .item .text h3 p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .1em;
    margin: 18px 0;
}

.features-3 .text h3 p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .1em;
    margin: 0 0 20px;
}

h2 p {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.5;
}

h2.light p {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.5;
}

.pricing .price-table .content ul li p {
    line-height: 28px;
    font-size: 15px;
    margin: 0;
    text-align: left;
}

.pricing .price-table .header h2 p {
    font-size: 24px;
    margin: 0;
}

.facts .item span p {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: .05em;
}

.blog .item h2.title p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 10px;
}

.video-2 .outer .inner h4 p {
    color: #FFF;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
}

.video-2 .features .item h3 p {
    font-size: 18px;
    font-weight: 300;
}

.team .item h3 p {
    font-size: 18px;
    font-weight: 400;
    margin: 20px 0 10px;
    letter-spacing: .1em;
}

.download-cta-2 .cta h2 p {
    font-size: 26px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0;
}

.download-cta .cta h2 p {
    font-size: 36px;
    font-weight: 100;
    margin: 0 0 15px;
}

.footer-v2 .footer-widget h3.title p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .1em;
    margin: 0 0 30px;
}

/*=================================================================*/
/*                      Team Styling
/*=================================================================*/

#team-hero-logo {
	margin-top: 60px;
}

section.team ul {
	margin-top: 20px;
	margin-bottom: 10px;
}

blockquote.bio {
	margin-top: 40px;
}