/*
Author       : EnvyTheme
Template Name: HeroApp
Version      : 1.3
*/
/*=============================================================
    CSS INDEX
    =============================
    01. DEFAULT STYLE
    02. NAVIGATION DESIGN
    03. START SLIDER AREA DESIGN
    04. START ABOUT DESIGN  
    05. START HOW IT WORKS DESIGN
    06. START FEATURES DESIGN
    07. START COUNTER STATS DESIGN
    08. START APP SCREENSHOTS DESIGN
    09. START TESTIMONIAL DESIGN
    10. START PRICING TABLE DESIGN
    11. START FAQS DESIGN
    12. START OUR AWESOME TEAM DESIGN
    13. START DOWNLOAD THE APP DESIGN
    14. START LATEST BLOG POST DESIGN
    15. START CONTACT DESIGN
    16. START FOOTER AREA DESIGN
    17. START BACK TOP BUTTON DESIGN
=============================================================*/
/*
* ----------------------------------------------------------------------------------------
* 01.DEFAULT STYLE
* ----------------------------------------------------------------------------------------
*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600");
body {
  font-family: 'Montserrat', sans-serif;
}

a {
  transition: .3s;
  -webkit-transition: .3s;
}

a:focus, .btn:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

a:focus, a:hover, a:active {
  color: #000;
  text-decoration: none;
  outline: 0;
}

h1, h2 {
  color: #000;
  font-weight: 700;
}

h3, h4, h5, h6 {
  color: #000;
  font-weight: 600;
}

p {
  font-family: 'Open Sans', sans-serif;
  color: #646464;
  font-size: 15px;
  line-height: 30px;
}

img {
  max-width: 100%;
}

section {
  padding: 100px 0;
  position: relative;
}

.gray-bg {
  background-color: #f5f7fb;
}

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

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

.default-button {
  border-radius: 100px;
  border: none;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  padding: 14px 30px;
  text-transform: uppercase;
  transition: .3s;
  -webkit-transition: .3s;
  border: 1px solid transparent;
  outline: 0;
}

.default-button:hover {
  color: #fff;
}

.default-button i {
  font-size: 15px;
  transition: .4s;
  -webkit-transition: .4s;
}

.default-button:hover i {
  padding-left: 5px;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  margin: 0 0 35px;
  padding: 0 0 30px;
  position: relative;
  text-transform: uppercase;
}

.angle-section-title {
  position: relative;
  z-index: 5;
}

.section-title h2::after {
  content: "";
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 40px;
}

.section-title h2::before {
  content: "";
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
}

.section-title p {
  margin: auto;
  max-width: 710px;
  width: 100%;
}

.cs-pt-130 {
  padding-top: 130px;
}

/* START PRELOADER */
.preloader {
  position: relative;
  width: 65px;
  margin: 6em auto;
}

.preloader span {
  position: absolute;
  display: block;
  bottom: 0;
  width: 9px;
  height: 5px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-animation: preloader 2s infinite ease-in-out;
  animation: preloader 2s infinite ease-in-out;
}

.preloader span:nth-child(2) {
  left: 11px;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}

.preloader span:nth-child(3) {
  left: 22px;
  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}

.preloader span:nth-child(4) {
  left: 33px;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}

.preloader span:nth-child(5) {
  left: 44px;
  -webkit-animation-delay: 800ms;
  animation-delay: 800ms;
}

.preloader span:nth-child(6) {
  left: 55px;
  -webkit-animation-delay: 1000ms;
  animation-delay: 1000ms;
}

@-webkit-keyframes preloader {
  0% {
    height: 5px;
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.1);
  }
  25% {
    height: 30px;
    -o-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    background: #87633F;
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #87633F, #BBA792);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #87633F, #BBA792);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #87633F, #BBA792);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #87633F, #BBA792);
    /* Standard syntax */
  }
  50%, 100% {
    height: 5px;
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.1);
  }
}

@keyframes preloader {
  0% {
    height: 5px;
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.1);
  }
  25% {
    height: 30px;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
    background: #87633F;
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #87633F, #BBA792);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(bott, #87633F, #BBA792);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #87633F, #BBA792);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #87633F, #BBA792);
    /* Standard syntax */
  }
  50%, 100% {
    height: 5px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.1);
  }
}

.preloader-wrap {
  background: #fff none repeat scroll 0 0;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.preloader-wrap .preloader {
  left: 50%;
  margin: -20px 0 0 -20px;
  position: absolute;
  top: 50%;
}

/* END PRELOADER */
/*
* ----------------------------------------------------------------------------------------
* 01.END DEFAULT STYLE
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 02.NAVBAR STYLE
* ----------------------------------------------------------------------------------------
*/
.top-menu {
  background-color: rgba(0, 0, 0, 0);
  border: medium none;
  border-radius: 0;
  margin: 0;
  padding: 20px 0;
  transition: .4s;
  -webkit-transition: .4s;
}

.top-menu .navbar-brand {
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
}

.top-menu .navbar-brand:focus,
.top-menu .navbar-brand:hover {
  color: #fff;
}

.top-menu .navbar-nav > li > a {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
  margin-left: 15px;
  margin-right: 15px;
  padding-bottom: 5px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  text-transform: uppercase;
}

.top-menu .navbar-nav > li > a:focus,
.top-menu .navbar-nav > li > a:hover {
  color: #fff;
}

.top-menu .navbar-nav li a:hover::before,
.top-menu .navbar-nav li.active a::before {
  left: 0;
  right: 0;
}

.top-menu .navbar-nav li a::before {
  background: #fff none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  right: 50%;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-property: left, right;
  -webkit-transition-property: left, right;
  transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  z-index: -1;
}

.top-menu .navbar-nav > .active > a,
.top-menu .navbar-nav > .active > a:focus,
.top-menu .navbar-nav > .active > a:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .top-menu.menu-shrink {
    padding: 10px 0;
    box-shadow: 0 0 20px #282828;
  }
}

.navbar-white {
  background-color: #fff;
}

.navbar-white .navbar-nav > li > a {
  color: #000000;
}

.navbar-white.menu-shrink {
  background: #fff !important;
}

.navbar-white .navbar-nav > .active > a,
.navbar-white .navbar-nav > .active > a:focus,
.navbar-white .navbar-nav > .active > a:hover {
  background-color: rgba(0, 0, 0, 0);
}

.navbar-white .navbar-brand {
  color: #000000;
}

.navbar-white .navbar-brand:focus,
.navbar-white .navbar-brand:hover {
  color: #000000;
}

/*
* ----------------------------------------------------------------------------------------
* 02.END NAVBAR STYLE
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 03.START SLIDER AREA DESIGN
* ----------------------------------------------------------------------------------------
*/
.homepage-slides-wrapper {
  position: relative;
}

.slider-text {
  padding-right: 50px;
  position: relative;
  z-index: 5;
}

/* START ANGLE-SLIDES-WRAPPER-BG */
.angle-slides-wrapper-bg {
  position: relative;
  z-index: 1;
}

#home.angle-slides-wrapper-bg::before {
  background: #ffffff none repeat scroll 0 0;
  height: 40%;
  top: 80%;
}

.angle-slides-wrapper-bg::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: skewY(172deg);
  -webkit-transform: skewY(172deg);
  -ms-transform: skewY(172deg);
  -o-transform: skewY(172deg);
  width: 100%;
  z-index: 1;
}

/*  END ANGLE-SLIDES-WRAPPER-BG */
/* START SLIDER-ITEM-BG */
.slider-item-img-bg {
  background-image: url(../../assets/img/slider-item-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #dddddd;
  color: #fff;
  position: relative;
}

.slider-item-img-bg::before {
  content: "";
  left: 0;
  height: 100%;
  opacity: 0.9;
  position: absolute;
  top: 0;
  width: 100%;
}

.item-img-bg {
  background-image: url(../../assets/img/slider-item-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #dddddd;
  color: #fff;
  position: relative;
}

.item-img-bg::after {
  content: "";
  left: 0;
  height: 100%;
  opacity: 0.9;
  position: absolute;
  top: 0;
  width: 100%;
}

/* END SLIDER-ITEM-BG */
/* START HOMES-BG-IMG */
.homes-bg-img {
  background-image: url(../../assets/img/slider-item-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #dddddd;
  color: #fff;
  position: relative;
  position: relative;
  z-index: 2;
}

.homes-bg-img::after {
  content: "";
  left: 0;
  height: 100%;
  opacity: 0.9;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.homes-bg-img::before {
  z-index: 1;
}

/* END HOMES-BG-IMG */
/* CURVE BG */
.wave-bg-one::before {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg1.png);
  height: 100%;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center bottom;
  bottom: 0;
  z-index: 1;
}

.wave-bg-one .slide-item-table {
  padding-top: 0;
}

.wave-bg-section-tb-one::after {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg2.png);
  height: 60px;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center bottom;
  bottom: 0;
  z-index: 1;
}

.wave-bg-section-tb-one::before, .wave-bg-section-top-one {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg3.png);
  height: 60px;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center top;
  top: 0;
  z-index: 1;
}

.wave-bg-two::before {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg4.png);
  height: 100%;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center bottom;
  bottom: -3px;
  z-index: 1;
}

.wave-bg-three::before {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg1.png);
  height: 60px;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center bottom;
  bottom: -2px;
  z-index: 1;
  background-size: 100% 100%;
}

.wave-bg-two .slide-item-table {
  padding-top: 0;
}

.wave-bg-section-tb-two::after {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg4.png);
  height: 40px;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center bottom;
  bottom: -2px;
  z-index: 1;
  background-size: contain;
}

.wave-bg-section-tb-three::after {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg1.png);
  height: 60px;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center bottom;
  bottom: -2px;
  z-index: 1;
  background-size: 100% 100%;
}

.wave-bg-section-tb-three::before {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg6.png);
  height: 60px;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center top;
  top: -2px;
  z-index: 1;
  background-size: 100% 100%;
}

/* END CURVE BG */
@media only screen and (min-width: 768px) {
  .single-slider-item {
    height: 100vh;
    padding: 50px 0 40px;
  }
}

.slide-item-table {
  display: table;
  width: 100%;
  height: 100%;
  padding-top: 40px;
}

.slide-item-tablecell {
  display: table-cell;
  vertical-align: middle;
}

.homepage-slides .owl-nav div {
  color: #ffffff;
  font-size: 25px;
  height: 80px;
  left: 0;
  line-height: 80px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  width: 45px;
}

.homepage-slides .owl-nav div.owl-prev {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0 10px 10px 0;
}

.homepage-slides .owl-nav div.owl-next {
  background-color: rgba(0, 0, 0, 0.1);
  left: auto;
  right: 0;
  border-radius: 10px 0 0 10px;
}

.homepage-slides .owl-nav div:hover {
  background-color: #fff;
  color: #000;
}

.single-slider-item h1 {
  color: #ffffff;
  font-size: 35px;
  line-height: 55px;
  margin: 70px 0 20px;
  text-transform: uppercase;
}

.single-slider-item p {
  color: #ffffff;
  font-size: 17px;
  line-height: 30px;
}

.single-slider-item .slide-button {
  margin-top: 30px;
}

.single-slider-item .slide-btn-white {
  background-color: #fff;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid #ffffff;
  border-radius: 100px;
  display: inline-block;
  font-size: 15px;
  padding: 14px 35px;
}

.single-slider-item .slide-btn-white:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid #ffffff;
}

.single-slider-item .slide-btn-bordered {
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid #ffffff;
  border-radius: 100px;
  color: #ffffff;
  display: inline-block;
  font-size: 15px;
  padding: 14px 35px;
}

.single-slider-item .slide-btn-bordered:hover {
  background-color: #fff;
  color: #000;
}

.single-slider-item .welcome-phone {
  margin: auto;
  max-width: 360px;
  text-align: right;
  position: relative;
  z-index: 5;
}

/* PARTICLE-BG */
#particles {
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.particle-bg {
  position: relative;
}

.particle-bg::after {
  content: "";
  left: 0;
  height: 100%;
  opacity: 0.8;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

/* PARTICLE-BG */
/* VIDEO-AREA */
.video-bg {
  position: relative;
}

.video-bg::after {
  content: "";
  left: 0;
  height: 100%;
  opacity: 0.8;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.video-area {
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.video-area video {
  min-width: 100%;
  min-height: 100%;
}

/* END VIDEO-AREA */
/*
* ----------------------------------------------------------------------------------------
* 03.END SLIDER AREA DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 04.START APP ABOUT DESIGN
* ----------------------------------------------------------------------------------------
*/
.app-about-section.angle-sp {
  position: relative;
  z-index: 5;
}

.app-about-text {
  max-width: 90%;
}

.app-about-text h3 {
  margin: 0 0 30px;
  padding-bottom: 15px;
  position: relative;
  text-transform: uppercase;
}

.app-about-text h3::after {
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 30px;
}

.app-about-text p {
  margin-bottom: 25px;
}

.app-about-text ul {
  list-style: none;
  padding: 6px 0;
  margin: 0 0 10px;
}

.app-about-text ul li {
  display: inline-block;
  font-weight: 800;
  margin: 0 15px 20px 0;
  text-transform: uppercase;
}

.app-about-text ul li i {
  padding: 0 3px 0 0;
}

.app-users-section {
  padding: 0;
  position: relative;
  z-index: 5;
}

.single-user {
  padding: 0 0 0 40px;
  position: relative;
  transform: translateY(-190%);
  -webkit-transform: translateY(-190%);
  -ms-transform: translateY(-190%);
  -o-transform: translateY(-190%);
  width: 100%;
}

.single-user i {
  font-size: 30px;
  left: 0;
  position: absolute;
  top: 0;
}

.single-user h3 {
  font-size: 15px;
  margin-bottom: 0;
  text-transform: uppercase;
}

/*
* ----------------------------------------------------------------------------------------
* 04.END APP ABOUT DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 05.START HOW IT WORKS DESIGN
* ----------------------------------------------------------------------------------------
*/
/* START ANGLE-GRAY-BG */
.angle-gray-bg {
  position: relative;
  z-index: 1;
}

#how-it-works.angle-gray-bg::before {
  background: #f5f7fb;
}

.wave-two-how-it-works {
  padding: 100px 0 130px;
}

.wave-one-how-it-works {
  padding: 130px 0;
}

.angle-gray-bg::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: skewY(172deg);
  -webkit-transform: skewY(172deg);
  -ms-transform: skewY(172deg);
  -o-transform: skewY(172deg);
  width: 100%;
  z-index: -1;
}

/* END ANGLE GRAY BG */
.single-hiw-feature {
  margin-bottom: 30px;
  position: relative;
  padding: 0 0 0 80px;
}

.hiw-feature-content .single-hiw-feature:last-child {
  margin-bottom: 0;
}

.single-hiw-feature i {
  border-radius: 50%;
  color: #ffffff;
  font-size: 25px;
  height: 60px;
  left: 0;
  top: 0;
  line-height: 60px;
  position: absolute;
  text-align: center;
  width: 60px;
  transition: .3s;
  -webkit-transition: .3s;
}

.single-hiw-feature h4 {
  font-size: 17px;
  margin: 0 0 5px;
  text-transform: uppercase;
  line-height: 30px;
}

.single-hiw-feature p {
  margin: 0;
}

.video-demo-content {
  margin: 12px auto auto;
  max-width: 440px;
  position: relative;
}

.video-demo-content::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 50%;
  opacity: .8;
}

.play-video-icon {
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.play-video-icon a {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 36px;
  height: 80px;
  line-height: 80px;
  padding: 0 0 0 8px;
  text-align: center;
  width: 80px;
  transition: .3s;
  -webkit-transition: .3s;
  position: relative;
  box-shadow: 0 0 15px #ffffff;
}

.play-video-icon a:hover {
  box-shadow: 0 0 0 #ffffff;
  opacity: 0.7;
}

.play-video-icon a i {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  height: 70px;
  left: 0;
  line-height: 70px;
  margin: auto;
  padding: 0 0 0 8px;
  position: absolute;
  right: 0;
  top: 5px;
  width: 70px;
}

/*
* ----------------------------------------------------------------------------------------
* 05.END HOW IT WORKS DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 06.START FEATURES DESIGN
* ----------------------------------------------------------------------------------------
*/
.awsome-features {
  padding: 100px 0 70px;
}

.single-feature {
  padding: 25px 15px;
  position: relative;
  text-align: center;
  transition: .3s;
  -webkit-transition: .3s;
}

.single-feature:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.single-feature::after {
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.single-feature:hover::after {
  opacity: 1;
}

.single-feature .feature-icon {
  border-radius: 50%;
  color: #ffffff;
  font-size: 25px;
  height: 60px;
  line-height: 60px;
  margin: auto;
  text-align: center;
  width: 60px;
}

.single-feature h4 {
  margin: 30px 0 10px;
  text-transform: uppercase;
}

.single-feature p {
  margin: 0;
}

.feature-style-two {
  text-align: left;
  padding: 30px 20px 20px 110px;
}

.feature-style-two .feature-icon {
  position: absolute;
  left: 25px;
  top: 30px;
}

.feature-style-two h4 {
  margin: 0 0 10px;
}

/*
* ----------------------------------------------------------------------------------------
* 06.END FEATURES DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 07.START COUNTER STATS DESIGN
* ----------------------------------------------------------------------------------------
*/
.counter-stats {
  background-image: url("../../assets/img/counter-stats-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 0 60px;
  background-attachment: fixed;
}

.counter-stats::after {
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

/* START ANGLE-COUNTER-STATS */
#counter.counter-stats.angle-counter-stats {
  background-image: none;
}

#counter.angle-counter-stats::before {
  background-image: url("../../assets/img/counter-stats-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.angle-counter-stats::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: skewY(172deg);
  -webkit-transform: skewY(172deg);
  -ms-transform: skewY(172deg);
  -o-transform: skewY(172deg);
  width: 100%;
  z-index: -1;
}

.angle-counter-stats::after {
  transform: skewY(172deg);
  -webkit-transform: skewY(172deg);
  -ms-transform: skewY(172deg);
  -o-transform: skewY(172deg);
}

/* END ANGLE-COUNTER-STATS */
.counter-stats .counter-box {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}

.counter-stats .counter-box i {
  color: #ffffff;
  font-size: 35px;
  border: 1px dashed #fff;
  border-radius: 100px;
  height: 70px;
  width: 70px;
  display: inline-block;
  line-height: 70px;
}

.counter-stats .counter-box h3 {
  color: #ffffff;
  font-size: 30px;
  margin: 0;
}

.counter-stats .counter-box p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  margin: 25px 0 20px;
  text-transform: uppercase;
}

/*
* ----------------------------------------------------------------------------------------
* 07.END COUNTER STATS DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 08.START APP SCREENSHOTS DESIGN
* ----------------------------------------------------------------------------------------
*/
.app-screenshots-section {
  padding: 100px 0 130px;
}

.screenshot-item .screenshot-image {
  display: block;
  overflow: hidden;
  position: relative;
}

.screenshot-item:hover .screenshot-image::before {
  content: "";
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
  opacity: .9;
  z-index: 1;
}

.screenshot-item .screenshot-image::after {
  color: #ffffff;
  content: "+";
  font-size: 50px;
  left: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 80%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  visibility: hidden;
  width: 100%;
  z-index: 4;
}

.screenshot-item:hover .screenshot-image::after {
  opacity: 1;
  top: 50%;
  visibility: visible;
}

.screenshot-carousel .owl-prev i, .screenshot-carousel-two .owl-prev i {
  position: absolute;
  left: -60px;
  top: 50%;
  font-size: 40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.screenshot-carousel .owl-next i, .screenshot-carousel-two .owl-next i {
  position: absolute;
  right: -60px;
  top: 50%;
  font-size: 40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.owl-dots {
  text-align: center;
  margin-top: 30px;
  position: absolute;
  width: 100%;
}

.owl-dots .owl-dot {
  display: inline-block;
  margin: 0 1px;
  padding: 0 4px;
}

.owl-dots .owl-dot span {
  width: 3px;
  height: 20px;
  display: block;
  background: #000;
}

.owl-dots .owl-dot.active span {
  height: 25px;
}

/* Modal Style */
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.modal.right .modal-body {
  padding: 0 15px 30px;
}

.modal.right.fade .modal-dialog {
  right: -320px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
  right: 0;
}

.screenshots-modal .close {
  font-size: 40px;
  font-weight: normal;
  color: #fff;
  opacity: 1;
  height: 40px;
  width: 40px;
  border-radius: 100px;
}

.screenshots-modal .close:hover, .screenshots-modal .close:focus {
  outline: 0;
}

.modal-content {
  border-radius: 0;
  border: none;
}

.modal-header {
  border: none;
  background-color: transparent;
}

.screenshot-details-container {
  max-width: 1000px;
  margin: auto;
}

.screenshot-details-container img {
  width: 100%;
}

.screenshot-details-text img {
  max-width: 100% !important;
}

.screenshot-details-text .title {
  margin: 30px 0 25px;
  padding-bottom: 15px;
  position: relative;
  text-transform: uppercase;
}

.screenshot-details-text .title::after {
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 30px;
}

.screenshot-details-text ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.screenshot-details-text ul li {
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  padding-left: 25px;
}

.screenshot-details-text ul li i {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 5px;
}

/*
* ----------------------------------------------------------------------------------------
* 08.END APP SCREENSHOTS DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 09.START TESTIMONIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
.testimonial-section {
  background-image: url("../../assets/img/testimonial-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 0 130px;
  background-attachment: fixed;
}

.testimonial-section::after {
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.9;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.wave-two-testimonial {
  padding: 100px 0 160px;
}

.wave-one-testimonial-section {
  padding: 130px 0 160px;
}

/* START ANGLE-TESTIMONIAL-SECTION */
#testimonial.testimonial-section.angle-testimonial-section {
  background-image: none;
}

#testimonial.angle-testimonial-section::before {
  background-image: url("../../assets/img/testimonial-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.angle-testimonial-section::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: skewY(172deg);
  -webkit-transform: skewY(172deg);
  -ms-transform: skewY(172deg);
  -o-transform: skewY(172deg);
  width: 100%;
  z-index: -1;
}

.angle-testimonial-section::after {
  transform: skewY(172deg);
  -webkit-transform: skewY(172deg);
  -ms-transform: skewY(172deg);
  -o-transform: skewY(172deg);
}

.angle-testimonial-section .testimonial-item {
  position: relative;
  z-index: 5;
}

/* END ANGLE-TESTIMONIAL-SECTION */
.testimonial-section .section-title h2 {
  color: #fff;
}

.testimonial-section .section-title p {
  color: #fff;
}

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

.testimonial-item {
  background: #fff;
  text-align: center;
  padding: 30px 30px 50px;
  margin: 0 0 120px;
  position: relative;
}

.testimonial-item .icofont-quote-left {
  display: inline-block;
  color: #fff;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 100px;
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial-item:after {
  content: "";
  border-top: 40px solid #fff;
  border-right: 125px solid transparent;
  position: absolute;
  bottom: -40px;
  left: 0;
}

.testimonial-item:before {
  content: "";
  border-top: 40px solid #fff;
  border-left: 125px solid transparent;
  position: absolute;
  bottom: -40px;
  right: 0;
}

.testimonial-item .description {
  font-size: 15px;
  margin-bottom: 30px;
}

.testimonial-item .testimonial-content {
  width: 100%;
  position: absolute;
  left: 0;
}

.testimonial-item .pic {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  position: relative;
  background-color: #f0f0f0;
  height: 100px;
  width: 100px;
}

.testimonial-item .pic img {
  width: 100px;
  height: 100px;
}

.testimonial-item .title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  margin: 15px 0 6px 0;
}

.testimonial-item .post {
  display: block;
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
}

.testimonial-carousel .owl-dots .owl-dot span {
  background: #fff;
  height: 5px;
  width: 20px;
}

.testimonial-carousel .owl-dots .owl-dot.active span {
  background: #87633F;
  height: 5px;
  width: 20px;
}

/*
* ----------------------------------------------------------------------------------------
* 09.END TESTIMONIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 10.START PRICING TABLE DESIGN
* ----------------------------------------------------------------------------------------
*/
.pricing-section {
  padding: 100px 0 70px;
}

.single-price-package {
  box-shadow: 0 0 35px #dddddd;
  text-align: center;
  margin: 0 0 30px;
}

.single-price-package .price-header {
  position: relative;
}

.curve-price-header::before {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg2.png);
  height: 40px;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center bottom;
  bottom: 0;
  z-index: 1;
}

.curve-price-header .price-value {
  padding: 50px 0 65px !important;
}

.wave-price-header .price-value {
  padding: 40px 0 80px !important;
}

.wave-price-header span.title {
  display: block;
  font-size: 25px;
  margin: 0 0 30px;
  text-transform: uppercase;
}

.wave-price-header::before {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg4.png);
  height: 100%;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center bottom;
  bottom: -2px;
  background-size: contain;
  z-index: 1;
}

.single-price-package .price-header h3 {
  margin: 0;
  padding: 30px 0;
  text-transform: uppercase;
}

.single-price-package .price-header .price-value {
  padding: 35px 0;
  margin: 0;
  color: #fff;
}

.single-price-package .price-header .price-value sup {
  top: -20px;
  font-size: 20px;
}

.single-price-package .price-header .price-value .text-large {
  font-size: 50px;
  font-weight: 600;
}

.single-price-package .price-header .price-value .duration {
  bottom: 3px;
  font-weight: 500;
  line-height: 0;
  position: relative;
  font-size: 13px;
  vertical-align: baseline;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.single-price-package .price-list {
  list-style: none;
  padding: 0 30px 0 65px;
  margin: 40px 0;
  text-align: left;
}

.single-price-package .price-list li {
  font-size: 16px;
  padding: 3px 0;
  position: relative;
  line-height: 30px;
}

.single-price-package .price-list li:before {
  content: "";
  left: -30px;
  background: url(../../assets/img/check-icon.png) no-repeat scroll 0 0;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 11px;
}

.single-price-package .price-list li.disabled:before {
  background: url(../../assets/img/disable-check-icon.png) no-repeat scroll 0 0;
}

.single-price-package .price-footer {
  padding: 0 30px 30px;
  position: relative;
}

.purchase-btn {
  background-color: #fff;
  border-radius: 100px;
  border: none;
  font-weight: 600;
  color: #000;
  display: block;
  font-size: 15px;
  padding: 14px 35px;
  text-transform: uppercase;
  position: relative;
}

.personal-price-package .purchase-btn {
  color: #fff;
}

.single-price-package:hover .purchase-btn {
  color: #fff;
}

.purchase-btn::after {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 100px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: -1;
}

.purchase-btn::before {
  border-radius: 100px;
  content: "";
  height: calc(100% + 4px);
  left: -2px;
  position: absolute;
  top: -2px;
  transition: all 0.3s ease 0s;
  width: calc(100% + 4px);
  z-index: -2;
}

/*
* ----------------------------------------------------------------------------------------
* 10.END PRICING TABLE DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 11.START FAQS DESIGN
* ----------------------------------------------------------------------------------------
*/
.wave-faqs-section {
  padding: 100px 0 140px;
}

.wave-one-faqs-section {
  padding: 130px 0;
}

/* START ANGLE-GRAY-BG */
.angle-gray-bg {
  position: relative;
  z-index: 1;
}

#faqs.angle-gray-bg::before {
  background: #f5f7fb;
}

.angle-gray-bg::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: skewY(172deg);
  -webkit-transform: skewY(172deg);
  -ms-transform: skewY(172deg);
  -o-transform: skewY(172deg);
  width: 100%;
  z-index: -1;
}

/* END ANGLE GRAY BG */
.faq-content {
  position: relative;
  height: auto;
}

.faq-panel {
  background-color: #ffffff;
  height: auto;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.faq-panel:last-child {
  margin-bottom: 0;
}

.faq-panel .faq-title {
  line-height: 25px;
  border-bottom: 1px solid #dddddd;
  color: #555555;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 30px 12px 40px;
  margin: 0;
  text-decoration: none;
  transition: all 0.2s linear 0s;
  -webkit-transition: all 0.2s linear 0s;
  position: relative;
}

.faq-panel .faq-title::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 2px;
}

.faq-panel .faq-title span {
  left: 18px;
  position: absolute;
  top: 12px;
}

.faq-panel .faq-title i {
  color: #666666;
  position: absolute;
  right: 15px;
  top: 17px;
}

.faq-panel .faq-title.active {
  color: #fff;
}

.faq-panel .faq-title.active i {
  color: #fff;
}

.faq-textarea {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  display: none;
  padding: 25px 35px 15px;
}

.faq-textarea p {
  color: #333;
}

.faqs-container {
  width: 100%;
  margin: 0 auto;
  border-radius: 5px;
}

.accordion-header,
.accordion-body {
  background: white;
}

.accordion-header {
  background: #fff;
  box-shadow: 0 0 10px #ddd;
  color: #000;
  padding: 15px 45px 15px 20px;
  cursor: pointer;
  letter-spacing: .1em;
  transition: all .3s;
  -webkit-transition: all .3s;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  font-family: 'Open Sans', sans-serif;
}

.accordion-header:hover {
  opacity: .8;
}

.accordion-body {
  background: #fff;
  color: #646464;
  display: none;
}

.accordion-body__contents {
  padding: 20px 20px 10px;
}

.accordion__item.active:last-child .accordion-header {
  border-radius: none;
}

.accordion:first-child > .accordion__item > .accordion-header {
  border-bottom: 1px solid #f5f7fb;
}

.accordion__item > .accordion-header:after {
  content: "\eb8c";
  font-family: icofont;
  font-size: 1.2em;
  right: 20px;
  position: absolute;
  top: 14px;
  transition: .3s all;
  -webkit-transition: .3s all;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.accordion__item.active > .accordion-header:after {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}

.accordion__item.active .accordion-header {
  color: #fff;
}

/*
* ----------------------------------------------------------------------------------------
* 11.END FAQS DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 12.START OUR AWESOME TEAM DESIGN
* ----------------------------------------------------------------------------------------
*/
.team-section {
  padding: 100px 0 70px;
}

.single-member {
  margin-bottom: 30px;
  text-align: center;
}

.single-member, .member-img {
  position: relative;
  overflow: hidden;
}

.single-member .member-img img {
  -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;
  overflow: hidden;
  width: 100%;
}

.single-member .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.single-member .member-info {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 5%;
  overflow: hidden;
  width: 100%;
  z-index: 2;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.single-member .member-info p {
  color: #fff;
}

.single-member:hover .member-img .member-info {
  opacity: 1;
  margin-top: -80px;
}

.single-member:hover .member-img .overlay {
  opacity: 1;
}

.curve-member-img::before {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg2.png);
  height: 40px;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center bottom;
  bottom: 0;
  z-index: 1;
}

.wave-member-img::before {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg4.png);
  background-size: contain;
  height: 100%;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center bottom;
  bottom: -2px;
  z-index: 1;
}

.single-member .social-links a {
  background-color: rgba(0, 0, 0, 0);
  display: inline-block;
  height: 40px;
  line-height: 40px;
  width: 40px;
}

.single-member .social-links a:hover {
  background-color: #fff;
  border-radius: 100%;
}

.single-member .member-info .social-links i {
  color: #fff;
}

.single-member .social-links a:hover i {
  color: #000;
}

.single-member .member-name {
  font-weight: 600;
  margin: 30px 0 5px;
}

.single-member .designation {
  margin: 0;
}

/*
* ----------------------------------------------------------------------------------------
* 12.END OUR AWESOME TEAM DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 13.START DOWNLOAD THE APP DESIGN
* ----------------------------------------------------------------------------------------
*/
.app-download-section {
  background-image: url("../../assets/img/counter-stats-bg.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 0 70px;
}

.app-download-section::after {
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.9;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.wave-two-download-section {
  padding: 100px 0 110px;
}

.wave-one-download-section {
  padding: 130px 0 100px;
}

/* START ANGLE-DOWNLOAD-SECTION */
.wave-two-counter {
  padding: 100px 0 90px;
}

.wave-one-counter {
  padding: 130px 0 90px;
}

#app-download.app-download-section.angle-download-section {
  background-image: none;
}

#app-download.angle-download-section::before {
  background-image: url("../../assets/img/counter-stats-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.angle-download-section::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: skewY(172deg);
  -webkit-transform: skewY(172deg);
  -ms-transform: skewY(172deg);
  -o-transform: skewY(172deg);
  width: 100%;
  z-index: -1;
}

.angle-download-section::after {
  transform: skewY(172deg);
  -webkit-transform: skewY(172deg);
  -ms-transform: skewY(172deg);
  -o-transform: skewY(172deg);
}

/* END ANGLE-DOWNLOAD-SECTION */
.app-download-section .section-title {
  margin-bottom: 80px;
  position: relative;
  z-index: 5;
}

.app-download-section .section-title h2 {
  color: #fff;
}

.app-download-section .section-title p {
  color: #fff;
}

.app-download-content {
  text-align: center;
  position: relative;
  z-index: 5;
}

.app-download-content .download-btn {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #ffffff;
  border-radius: 3px;
  display: inline-block;
  margin: 0 20px;
  padding: 15px 30px 8px 85px;
  position: relative;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  margin-bottom: 30px;
}

.app-download-content .download-btn i {
  color: #ffffff;
  float: left;
  font-size: 45px;
  left: 20px;
  position: absolute;
  width: 50px;
}

.app-download-content .download-btn span {
  color: #ffffff;
  display: block;
  font-size: 15px;
  text-align: left;
}

.app-download-content .download-btn span.large-text {
  display: block;
  font-size: 22px;
  position: relative;
  top: -5px;
}

.app-download-content .download-btn:hover {
  background-color: #fff;
}

.app-download-content .download-btn:hover i,
.app-download-content .download-btn:hover span {
  color: #000;
}

/*
* ----------------------------------------------------------------------------------------
* 13.END DOWNLOAD THE APP DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 14.START BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
.blog-section {
  padding: 100px 0 70px;
}

.single-blog-post {
  background: #f5f7fb;
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
  transition: .3s;
  -webkit-transition: .3s;
  z-index: 5;
}

.single-blog-post .blog-img {
  position: relative;
  padding-bottom: 22px;
}

.blog-img img {
  position: relative;
  width: 100%;
}

.single-blog-post .blog-img > a {
  display: block;
  overflow: hidden;
}

.single-blog-post .blog-date {
  border-radius: 30px;
  bottom: 0;
  color: #ffffff;
  font-weight: 500;
  left: 50%;
  line-height: 44px;
  position: absolute;
  text-align: center;
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  width: 190px;
}

.single-blog-post .blog-img img {
  transition: .3s;
  -webkit-transition: .3s;
}

.single-blog-post:hover .blog-img img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.single-blog-post .blog-info {
  padding: 0 25px;
  text-align: center;
}

.single-blog-post .blog-title {
  text-transform: uppercase;
  font-size: 16px;
}

.single-blog-post .blog-title a {
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 20px 0 15px;
  text-align: center;
  display: block;
}

.single-blog-post .post-admin {
  text-align: center;
  color: #6b6b6b;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
}

.single-blog-post .blog-info p {
  padding: 15px 0;
}

.single-blog-post .read-more-btn {
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
}

.single-blog-post-two {
  margin-bottom: 30px;
  position: relative;
}

.single-blog-post-two .blog-img {
  position: relative;
}

.single-blog-post-two .blog-img::before {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg2.png);
  height: 40px;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center bottom;
  bottom: 0;
  z-index: 1;
}

.single-blog-post-two .wave-image::before {
  content: "";
  left: 0;
  background: url(../../assets/img/wave-bg4.png);
  background-size: contain;
  height: 30%;
  width: 100%;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center bottom;
  bottom: -2px;
  z-index: 1;
}

.single-blog-post-two .blog-title {
  text-transform: capitalize;
  font-size: 20px;
  margin: 0 0 15px;
}

.single-blog-post-two .blog-title a {
  color: #000;
  display: inline-block;
}

.single-blog-post-two .blog-info {
  margin-top: 30px;
}

.single-blog-post-two .default-button {
  font-size: 13px;
  padding: 12px 30px;
  margin-top: 15px;
}

.single-blog-post-two .post_date {
  position: absolute;
  padding: 10px;
  left: 0;
  color: #fff;
  top: 0;
  font-size: 13px;
}

.horizontal-post {
  border-radius: 1000px 0 0 1000px;
  padding-bottom: 0;
  overflow: hidden;
}

.horizontal-post .blog-img img {
  border-radius: 1000px 0 0 1000px;
}

.horizontal-post .blog-img {
  padding: 0;
}

.horizontal-post .blog-info {
  padding: 15px 40px 0 10px;
  text-align: left;
}

.horizontal-post .blog-title a {
  text-align: left;
}

.horizontal-post .post-admin {
  text-align: left;
}

.horizontal-post .blog-title {
  font-size: 20px;
}

.horizontal-post .default-button {
  font-size: 13px;
  padding: 12px 30px;
}

.horizontal-post .default-button i {
  font-size: 15px;
  transition: .4s;
  -webkit-transition: .4s;
}

.horizontal-post .default-button:hover i {
  padding-left: 5px;
}

/* START BLOG DETAILS DESIGN */
.top-banner-area {
  background-image: url("../../assets/img/top-banner-area-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 170px 0 80px;
}

.top-banner-area::before {
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.9;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.top-banner-area .banner-title {
  color: #ffffff;
  font-size: 25px;
  margin: 0;
  text-transform: uppercase;
}

.top-banner-area .breadcrumb {
  background-color: rgba(0, 0, 0, 0);
  margin: 4px 0 0 0;
  padding: 0;
  text-align: right;
}

.top-banner-area .breadcrumb li {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.top-banner-area .breadcrumb li a {
  color: #d7d7d6;
}

.single-blog-img {
  position: relative;
}

.single-blog-img img {
  width: 100%;
}

.single-blog-img .single-blog-date {
  border-radius: 30px;
  top: 15px;
  color: #ffffff;
  font-weight: 500;
  left: 15px;
  line-height: 44px;
  position: absolute;
  text-align: center;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  width: 190px;
}

.single-blog-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 50px;
  text-transform: uppercase;
}

.single-post-admin {
  color: #6b6b6b;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.single-blog-details .details-text-area {
  padding: 30px 0;
}

.single-blog-details .details-text-area p {
  margin-bottom: 20px;
  color: #333;
}

.post-tag-media {
  background-color: #f5f7fb;
  padding: 10px 15px;
}

.post-tag-media .tag {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-tag-media .tag li {
  display: inline-block;
}

.post-tag-media .tag li span {
  font-size: 14px;
  font-weight: 600;
  margin-right: 15px;
}

.post-tag-media .tag li a {
  color: #616161;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
}

.post-social-media {
  display: table;
  float: right;
}

.post-social-media a {
  color: #000000;
  font-size: 15px;
  margin: 4px 0 0;
  padding: 0 5px;
}

.search-box {
  margin-bottom: 40px;
  position: relative;
}

.search-box .form-control {
  background-color: #f5f7fb;
  border-color: #f5f7fb;
  border-radius: 0;
  box-shadow: none;
  height: 50px;
}

.search-box .search-btn {
  background-color: #f5f7fb;
  font-size: 18px;
  border: medium none;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
}

.post-category {
  margin-bottom: 40px;
}

.blog-sidebar-title {
  margin: 0 0 20px;
  padding: 0 0 10px;
  position: relative;
  text-transform: uppercase;
}

.blog-sidebar-title::before {
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 20px;
}

.post-category .single-category {
  background-color: #f5f7fb;
  color: #3e3e3e;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 44px;
  margin-bottom: 5px;
  padding: 0 20px;
}

.post-category .single-category:hover {
  color: #fff;
}

.recent-post {
  margin-bottom: 10px;
}

.single-recent-post {
  display: inline-block;
  margin-bottom: 20px;
  width: 100%;
}

.single-recent-post img {
  float: left;
  height: 70px;
  margin-right: 20px;
  width: 70px;
}

.single-recent-post h5 {
  margin: 0;
}

.single-recent-post h5 a {
  color: #000;
  display: block;
  line-height: 22px;
}

.single-recent-post p {
  color: #6b6b6b;
  font-family: "Montserrat",sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.player .title header h1 {
  font-size: 18px !important;
}

.all-comments-content {
  margin-top: 50px;
  padding-bottom: 50px;
  border-bottom: 2px solid #f5f7fb;
}

.comment-title {
  margin: 0 0 30px;
  padding: 0 0 10px;
  position: relative;
  text-transform: uppercase;
}

.comment-title::before {
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 20px;
}

.all-comments-content .comment {
  display: table;
}

.all-comments-content .comment img {
  border-radius: 50%;
  float: left;
  height: 70px;
  margin-right: 20px;
  width: 70px;
}

.all-comments-content .comment-details {
  display: table;
}

.all-comments-content .comment h5 {
  margin: 0;
}

.all-comments-content .comment h5 span {
  color: #616161;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  margin-left: 10px;
}

.all-comments-content .comment p {
  margin: 15px 0;
}

.all-comments-content .comment .replay {
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
}

.all-comments-content .reply-comment {
  margin-left: 70px;
}

.reply-comment-details {
  background-color: #f5f7fb;
  border-radius: 3px;
  padding: 15px;
}

.comment-form {
  margin-top: 50px;
}

.comment-form .form-control {
  background-color: #fafafa;
  border-color: #fafafa;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  height: 40px;
  margin-bottom: 15px;
}

.comment-form textarea.form-control {
  height: auto !important;
}

.comment-form .default-button {
  margin-top: 10px;
}

.popular-tags {
  margin-bottom: 40px;
}

.popular-tags a {
  background-color: #f5f7fb;
  color: #000000;
  display: inline-block;
  margin: 0 0 4px;
  padding: 5px 10px;
}

.popular-tags a:hover {
  color: #fff;
}

.featured-video iframe {
  height: 335px;
  width: 100%;
}

.pagination-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.pagination-nav li {
  display: inline-block;
}

.pagination-nav li a {
  background-color: #f5f7fb;
  border-radius: 50%;
  color: #000000;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  margin: 0 2px;
  width: 40px;
}

.pagination-nav li a:hover {
  color: #fff;
}

.pagination-nav li.active a {
  color: #fff;
}

/* END START BLOG DETAILS DESIGN */
/*
* ----------------------------------------------------------------------------------------
* 14.END BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 15.START CONTACT SECTION DESIGN
* ----------------------------------------------------------------------------------------
*/
.contact-form {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 30px;
}

.contact-form .form-control {
  background-color: #f5f7fb;
  border-color: transparent;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  height: 45px;
  padding: 15px;
}

.contact-form textarea.form-control {
  height: auto !important;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group label {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.contact-form .default-button {
  margin-top: 5px;
}

.contact-info ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.contact-info ul li {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  padding: 44px 0 44px 50px;
  position: relative;
}

.contact-info ul li i {
  font-size: 20px;
  left: 20px;
  position: absolute;
  top: 42px;
}

.contact-info ul li h3 {
  font-size: 16px;
  margin: 0 0 9px;
}

.contact-info ul li p {
  margin: 0;
}

input.parsley-error, select.parsley-error, textarea.parsley-error {
  background-color: #f2dede;
  border: 1px solid #eed3d7;
  color: #b94a48;
}

.contact-form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li.parsley-required, #contact_send_status {
  color: #ff0000;
  padding: 5px 12px 0;
}

.g-recaptcha {
  transform: scale(0.77);
  -webkit-transform: scale(0.77);
  -ms-transform: scale(0.77);
  -o-transform: scale(0.77);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
}

@media only screen and (min-width: 768px) {
  /* START ANGLE-CONTACT-SECTION */
  .contact-section.angle-contact-section {
    padding: 260px 0 100px;
  }
  .angle-contact-section {
    position: relative;
    z-index: 1;
  }
  #contact.angle-contact-section::before {
    background: #ffffff;
    height: 25%;
    top: -170px;
  }
  .angle-contact-section::before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: skewY(172deg);
    -webkit-transform: skewY(172deg);
    -ms-transform: skewY(172deg);
    -o-transform: skewY(172deg);
    width: 100%;
    z-index: -1;
  }
  /*  END ANGLE-CONTACT-SECTION */
}

.single-contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.single-contact-info i {
  color: #fff;
  font-size: 20px;
  color: #fff;
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
}

.single-contact-info h3 {
  font-size: 16px;
  margin: 20px 0 5px;
}

.single-contact-info p {
  margin: 0;
}

#map {
  height: 500px;
  width: 100%;
}

/*
* ----------------------------------------------------------------------------------------
* 15.END CONTACT SECTION DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 16.START FOOTER AREA DESIGN
* ----------------------------------------------------------------------------------------
*/
.footer-top {
  background-color: #1a1a1a;
  padding: 80px 0;
}

.subscribe-text {
  margin: 0 auto 40px;
  max-width: 710px;
  text-align: center;
  width: 100%;
}

.subscribe-text h3 {
  color: #ffffff;
  font-size: 28px;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.subscribe-text p {
  color: #ffffff;
  margin: 0;
}

.subscribe-form {
  margin: auto;
  max-width: 500px;
  position: relative;
  width: 100%;
}

.subscribe-form .form-control {
  border: none;
  border-radius: 100px;
  height: 50px;
  padding: 10px 20px;
}

.subscribe-form .subscribe-btn {
  border: 1px solid transparent;
  border: medium none;
  border-radius: 100px;
  color: #ffffff;
  display: inline-block;
  font-size: 40px;
  line-height: 0;
  font-weight: 600;
  height: 50px;
  padding: 0 35px;
  position: absolute;
  right: -1px;
  text-transform: uppercase;
  top: 0;
}

.subscribe-form .subscribe-btn:hover {
  opacity: .8;
}

.footer-bottom {
  background-color: #000;
  padding: 30px 0;
}

.footer-bottom .copyright {
  text-transform: uppercase;
  color: #a7a7a7;
  margin: 0;
}

.footer-bottom .social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.footer-bottom .social-links li {
  text-transform: uppercase;
  color: #a7a7a7;
  display: inline-block;
}

.footer-bottom .social-links a {
  color: #a7a7a7;
  font-size: 17px;
  padding: 0 5px;
}

.footer-bottom .social-links i {
  color: #a7a7a7;
}

.footer-bottom .social-links i:hover {
  color: #fff;
}

/*
* ----------------------------------------------------------------------------------------
* 16.END FOOTER AREA DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 17.START BACK TOP BUTTON DESIGN
* ----------------------------------------------------------------------------------------
*/
#toTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  display: none;
  z-index: 99;
}

.back-top-button i {
  display: inline-block;
  font-size: 40px;
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*
* ----------------------------------------------------------------------------------------
* 17.END BACK TOP BUTTON DESIGN
* ----------------------------------------------------------------------------------------
*/
@media only screen and (max-width: 767px) {
  .top-menu {
    background-color: #fff;
    padding: 0;
    box-shadow: 0 0 5px #282828;
  }
  .top-menu .navbar-brand {
    color: #87633F;
    font-size: 20px;
  }
  .top-menu .navbar-brand:focus,
  .top-menu .navbar-brand:hover {
    color: #87633F;
  }
  .top-menu .navbar-toggle {
    border: none;
    background: transparent !important;
  }
  .top-menu .navbar-toggle .icon-bar {
    background: #87633F;
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #87633F, #BBA792);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #87633F, #BBA792);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #87633F, #BBA792);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #87633F, #BBA792);
    /* Standard syntax */
  }
  .top-menu .navbar-toggle:hover {
    background: transparent !important;
  }
  .top-menu .navbar-toggle .icon-bar {
    width: 22px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
  }
  .top-menu .navbar-toggle .top-bar {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform-origin: 10% 10%;
    -webkit-transform-origin: 10% 10%;
  }
  .top-menu .navbar-toggle .middle-bar {
    opacity: 0;
  }
  .top-menu .navbar-toggle .bottom-bar {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform-origin: 10% 90%;
    -webkit-transform-origin: 10% 90%;
  }
  .top-menu .navbar-toggle.collapsed .top-bar {
    -webkit-transform: rotate(0);
  }
  .top-menu .navbar-toggle.collapsed .middle-bar {
    opacity: 1;
  }
  .top-menu .navbar-toggle.collapsed .bottom-bar {
    transform: rotate(0);
    -webkit-transform: rotate(0);
  }
  .top-menu .navbar-nav > li > a {
    color: #000;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .top-menu .navbar-nav > .active > a,
  .top-menu .navbar-nav > .active > a:focus,
  .top-menu .navbar-nav > .active > a:hover {
    color: #87633F;
  }
  .top-menu .navbar-nav li a::before {
    background: #87633F;
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #87633F, #BBA792);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #87633F, #BBA792);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #87633F, #BBA792);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #87633F, #BBA792);
    /* Standard syntax */
  }
  .top-menu .navbar-nav > li > a:focus,
  .top-menu .navbar-nav > li > a:hover {
    color: #000;
  }
  .top-menu .navbar-nav {
    text-align: center;
  }
  .single-slider-item {
    text-align: center;
  }
  .single-slider-item h1 {
    font-size: 20px;
    line-height: 35px;
    margin: 30px 0 10px;
  }
  .single-slider-item p {
    font-size: 15px;
  }
  .single-slider-item .slide-btn-white, .single-slider-item .slide-btn-bordered {
    font-size: 12px;
    padding: 12px 20px;
  }
  .single-slider-item .slide-btn-white.mr-10 {
    margin-right: 0;
  }
  .single-slider-item .slide-button {
    margin-bottom: 25px;
    margin-top: 20px;
  }
  .single-slider-item .welcome-phone {
    max-width: 160px;
    text-align: center;
    padding-bottom: 30px;
  }
  section {
    padding: 50px 0;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .app-about-text h3 {
    font-size: 20px;
    margin: 0 0 20px;
  }
  .app-about-text {
    max-width: 100%;
  }
  .app-about-text p {
    margin-bottom: 15px;
  }
  .default-button {
    font-size: 13px;
    padding: 14px 30px;
  }
  .app-about-text {
    margin-bottom: 30px;
  }
  .awsome-features {
    padding: 50px 0;
  }
  .single-feature {
    margin-bottom: 0;
  }
  .counter-stats {
    padding: 50px 0 10px;
  }
  .app-screenshots-section {
    padding: 50px 0 100px;
  }
  .testimonial-section {
    padding: 50px 0 70px;
  }
  .testimonial-item .client-testimonial h3 {
    font-size: 20px;
  }
  .testimonial-item .client-testimonial .client-review {
    font-size: 17px;
    max-width: 100%;
  }
  .pricing-section {
    padding: 50px 0 20px;
  }
  .single-price-package {
    box-shadow: 0 0 5px #dddddd;
    margin: 0 auto 30px;
    max-width: 500px;
  }
  .single-price-package .price-header .price-value .text-large {
    font-size: 30px;
  }
  .single-price-package .price-header .price-value sup {
    font-size: 18px;
  }
  .faq-textarea p {
    padding: 15px !important;
  }
  .faq-content {
    margin-top: 50px;
  }
  .team-section {
    padding: 50px 0 20px;
  }
  .app-download-section {
    padding: 50px 0 30px;
  }
  .app-download-section .section-title {
    margin-bottom: 40px;
  }
  .blog-section {
    padding: 50px 0 20px;
  }
  .contact-form {
    padding: 15px;
    margin-bottom: 30px;
  }
  .contact-form .default-button {
    margin-top: 0px;
  }
  .subscribe-text h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .subscribe-form .subscribe-btn {
    font-size: 35px;
    padding: 0 20px;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom .social-links {
    text-align: center;
  }
  .footer-bottom .copyright {
    margin: 0 0 10px;
  }
  #toTop {
    right: 10px;
  }
  .video-demo-content {
    max-width: 300px;
    margin: 30px auto 0;
  }
  .top-banner-area {
    padding: 100px 0 50px;
  }
  .top-banner-area .banner-title {
    font-size: 20px;
    text-align: center;
  }
  .top-banner-area .breadcrumb {
    text-align: center;
  }
  .single-blog-img .single-blog-date {
    border-radius: 0;
    bottom: 0;
    font-size: 12px;
    font-weight: normal;
    left: 0;
    line-height: 35px;
    top: auto;
    width: 140px;
  }
  .single-blog-details .details-text-area {
    padding: 20px 0 0;
  }
  .all-comments-content .reply-comment {
    margin-left: 0;
  }
  .search-box {
    margin-top: 30px;
  }
  .featured-video iframe {
    height: auto;
    width: 100%;
  }
  .contact-section {
    padding: 50px 0 20px;
  }
  .homepage-slides .owl-nav div {
    height: 50px;
    line-height: 50px;
    top: 70%;
  }
  .contact-info ul li {
    padding: 32px 0 26px 50px;
  }
  .faq-textarea {
    padding: 10px 20px 0;
  }
  .screenshot-carousel .owl-next i,
  .screenshot-carousel-two .owl-next i {
    top: auto;
    bottom: 0;
    right: 0;
  }
  .screenshot-carousel .owl-prev i,
  .screenshot-carouseltwo .owl-prev i {
    top: auto;
    bottom: 0;
    left: 0;
  }
  .single-hiw-feature {
    padding: 0 0 0 70px;
  }
  .single-hiw-feature i {
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    width: 50px;
  }
  .modal-header {
    text-align: center;
  }
  .screenshots-modal .close {
    float: none;
  }
  .screenshot-details-text .title {
    margin: 35px 0 20px;
    font-size: 20px;
  }
  .modal.right .modal-body {
    padding: 0 15px 15px;
  }
  .testimonial-item .pic {
    height: 80px;
    width: 80px;
  }
  .testimonial-item .pic img {
    width: 80px;
    height: 80px;
  }
  .testimonial-carousel .owl-dots {
    margin-top: 0;
  }
  .horizontal-post {
    border-radius: 0;
  }
  .horizontal-post .blog-img img {
    border-radius: 0;
  }
  .horizontal-post .blog-info {
    padding: 0 20px 30px;
  }
  .horizontal-post .blog-title {
    font-size: 16px;
  }
  #map {
    height: 400px;
    width: 100%;
  }
  .footer-top {
    padding: 60px 0;
  }
  .single-price-package .price-header h3 {
    padding: 20px 0;
    font-size: 20px;
  }
  .single-price-package .price-header .price-value {
    padding: 20px 0;
  }
  .single-price-package .price-list {
    margin: 30px 0;
  }
  .faq-panel .faq-title {
    font-size: 15px;
  }
  .slider-text {
    padding-right: 0;
  }
  .wave-one-how-it-works {
    padding: 80px 0;
  }
  .wave-one-counter {
    padding: 90px 0 40px;
  }
  .wave-one-testimonial-section {
    padding: 70px 0 80px;
  }
  .wave-one-faqs-section {
    padding: 70px 0;
  }
  .wave-one-download-section {
    padding: 80px 0 50px;
  }
  .cs-pt-130 {
    padding-top: 70px;
  }
  .single-blog-post-two .blog-title {
    font-size: 18px;
  }
  .feature-style-two .feature-icon {
    position: absolute;
    left: 10px;
    top: 5px;
  }
  .feature-style-two {
    text-align: left;
    padding: 90px 10px 5px;
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .feature-style-two h4 {
    font-size: 16px;
  }
  .single-slider-item.wave-bg-one {
    height: 100%;
    padding-top: 40px;
  }
  .single-member {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .single-blog-post-two {
    max-width: 500px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  .single-slider-item.wave-bg-two {
    padding-top: 40px;
  }
  .wave-two-how-it-works {
    padding: 50px 0 90px;
  }
  .wave-two-counter {
    padding: 60px 0 50px;
  }
  .wave-two-testimonial {
    padding: 50px 0 100px;
  }
  .wave-faqs-section {
    padding: 50px 0 90px;
  }
  .wave-two-download-section {
    padding: 60px 0 65px;
  }
  .accordion.js-accordion {
    margin-top: 40px;
  }
  .blog-details-section {
    padding: 15px 0 50px;
  }
  .single-blog-title {
    font-size: 18px;
    margin-top: 25px;
    line-height: 30px;
  }
  .slide-item-table {
    height: 555px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide-item-table {
    padding-top: 0;
  }
  .top-menu .navbar-nav > li > a {
    font-size: 13px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .top-menu .navbar-brand {
    font-size: 20px;
  }
  .top-banner-area {
    text-align: center;
  }
  .top-banner-area .banner-title {
    margin: 0 0 10px;
  }
  .top-banner-area .breadcrumb {
    text-align: center;
  }
  .featured-video iframe {
    height: auto;
  }
  section {
    padding: 60px 0;
  }
  .section-title {
    margin-bottom: 50px;
  }
  .section-title h2 {
    font-size: 26px;
  }
  .single-slider-item .welcome-phone {
    max-width: 270px;
  }
  .single-slider-item h1 {
    font-size: 24px;
    line-height: 45px;
    margin: 20px 0 20px;
  }
  .video-demo-content {
    max-width: 340px;
    margin: 40px auto 0;
  }
  .awsome-features {
    padding: 60px 0 40px;
  }
  .counter-stats {
    padding: 60px 0 20px;
  }
  .app-screenshots-section {
    padding: 60px 0 115px;
  }
  .testimonial-section {
    padding: 60px 0 100px;
  }
  .pricing-section {
    padding: 60px 0 30px;
  }
  .team-section {
    padding: 60px 0 30px;
  }
  .app-download-section {
    padding: 60px 0 30px;
  }
  .blog-section {
    padding: 60px 0 30px;
  }
  .single-price-package {
    margin: 0 auto 40px;
    max-width: 450px;
    width: 100%;
  }
  .single-price-package .price-header .price-value .text-large {
    font-size: 35px;
  }
  .single-price-package .price-header h3 {
    font-size: 20px;
  }
  .faq-content {
    margin-top: 40px;
  }
  .angle-slides-wrapper-bg .single-slider-item {
    height: 90vh;
  }
  .app-about-section.angle-sp {
    padding-top: 0;
  }
  .awsome-features.angle-sp {
    padding-bottom: 60px;
  }
  .angle-testimonial-section {
    padding: 120px 0 100px;
  }
  .pricing-section.angle-sp {
    padding-bottom: 70px;
  }
  .faqs-section.angle-gray-bg {
    padding-top: 90px;
    padding-bottom: 120px;
  }
  .team-section.angle-sp {
    padding: 90px 0 50px;
  }
  .app-download-section.angle-download-section {
    padding-top: 70px;
    padding-bottom: 65px;
  }
  #contact.angle-contact-section::before {
    height: 20%;
    top: -180px;
  }
  .contact-section.angle-contact-section {
    padding: 155px 0 60px;
  }
  .blog-section.angle-sp {
    padding-bottom: 0;
    padding-top: 90px;
  }
  .counter-stats.angle-counter-stats {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  #home.angle-slides-wrapper-bg::before {
    top: 90%;
  }
  .app-about-text {
    max-width: 100%;
    position: relative;
    z-index: 5;
  }
  .screenshot-carousel .owl-next i,
  .screenshot-carousel-two .owl-next i {
    right: 0;
    top: auto;
    font-size: 40px;
    bottom: 0;
  }
  .screenshot-carousel .owl-prev i,
  .screenshot-carousel-two .owl-prev i {
    left: 0;
    top: auto;
    font-size: 40px;
    bottom: 0;
  }
  .single-feature {
    margin-bottom: 0;
  }
  .app-download-section .section-title {
    margin-bottom: 50px;
  }
  .horizontal-post {
    border-radius: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .horizontal-post .blog-img img {
    border-radius: 0;
  }
  .horizontal-post .blog-info {
    padding: 20px 50px 50px;
  }
  #toTop {
    bottom: 80px;
    right: 20px;
  }
  .single-member .member-info p {
    font-size: 14px;
  }
  .single-member .member-name {
    font-size: 16px;
  }
  .screenshot-details-text .title {
    font-size: 20px;
    margin: 0 0 20px;
  }
  .slider-text {
    padding-right: 0;
    text-align: center;
    margin-bottom: 60px;
  }
  .sm-one-col {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .wave-one-how-it-works {
    padding: 90px 0;
  }
  .wave-one-counter {
    padding: 90px 0 40px;
  }
  .wave-one-testimonial-section {
    padding: 90px 0 130px;
  }
  .wave-one-faqs-section {
    padding: 90px 0;
  }
  .wave-one-download-section {
    padding: 90px 0 60px;
  }
  .cs-pt-130 {
    padding-top: 90px;
  }
  .single-blog-post-two {
    margin-bottom: 40px;
  }
  .wave-two-how-it-works {
    padding: 60px 0 100px;
  }
  .wave-two-counter {
    padding: 70px 0 55px;
  }
  .wave-two-testimonial {
    padding: 60px 0 120px;
  }
  .wave-faqs-section {
    padding: 70px 0 100px;
  }
  .wave-two-download-section {
    padding: 70px 0 70px;
  }
  .accordion.js-accordion {
    margin-top: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-slider-item .container {
    max-width: 900px;
    width: 100%;
  }
  .angle-testimonial-section {
    padding: 140px 0 120px;
  }
  .slider-text {
    padding-right: 0;
  }
  #toTop {
    bottom: 80px;
    right: 20px;
  }
  #map {
    height: 350px;
  }
  .horizontal-post .blog-info {
    padding: 27px 30px 27px 0;
  }
  .horizontal-post .blog-title {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .horizontal-post .blog-title a {
    padding-top: 0;
  }
  .single-slider-item h1 {
    font-size: 25px;
    line-height: 50px;
    margin: 40px 0 15px;
  }
  .section-title h2 {
    font-size: 25px;
  }
  .single-feature h4 {
    font-size: 16px;
  }
  section {
    padding: 70px 0;
  }
  .section-title {
    margin-bottom: 70px;
  }
  .awsome-features {
    padding: 70px 0 40px;
  }
  .counter-stats {
    padding: 70px 0 40px;
  }
  .app-screenshots-section {
    padding: 70px 0 125px;
  }
  .testimonial-section {
    padding: 70px 0 120px;
  }
  .pricing-section {
    padding: 70px 0 40px;
  }
  .team-section {
    padding: 70px 0 40px;
  }
  .app-download-section {
    padding: 70px 0 40px;
  }
  .blog-section {
    padding: 70px 0 50px;
  }
  .featured-video iframe {
    height: 180px;
  }
  .app-about-text {
    max-width: 100%;
    position: relative;
    z-index: 5;
  }
  .app-about-section.angle-sp {
    padding-top: 0;
  }
  .how-it-works.angle-gray-bg {
    padding-top: 80px;
    padding-bottom: 30px;
  }
  .awsome-features.angle-sp {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .counter-stats.angle-counter-stats {
    padding: 100px 0 70px;
  }
  .pricing-section.angle-sp {
    padding-bottom: 100px;
  }
  .faqs-section.angle-gray-bg {
    padding-top: 100px;
    padding-bottom: 130px;
  }
  .team-section.angle-sp {
    padding-bottom: 70px;
  }
  .app-download-section.angle-download-section {
    padding-bottom: 70px;
    padding-top: 80px;
  }
  .blog-section.angle-sp {
    padding-bottom: 0;
  }
  .contact-section.angle-contact-section {
    padding: 200px 0 70px;
  }
  #home.angle-slides-wrapper-bg::before {
    top: 87%;
  }
  .contact-info ul li {
    padding: 40px 0 39px 50px;
  }
  .screenshot-carousel .owl-prev i,
  .screenshot-carousel-two .owl-prev i {
    left: -30px;
  }
  .screenshot-carousel .owl-next i,
  .screenshot-carousel-two .owl-next i {
    right: -30px;
  }
  .testimonial-item:after {
    border-right: 175px solid transparent;
  }
  .testimonial-item:before {
    border-left: 175px solid transparent;
  }
  .app-download-section .section-title {
    margin-bottom: 50px;
  }
  .single-price-package .price-header h3 {
    padding: 25px 0;
    font-size: 20px;
  }
  .single-price-package .price-header .price-value .text-large {
    font-size: 40px;
  }
  .single-price-package .price-header .price-value {
    padding: 25px 0;
  }
  .single-price-package .price-list {
    margin: 30px 0;
  }
  .wave-one-how-it-works {
    padding: 100px 0;
  }
  .wave-one-counter {
    padding: 100px 0 60px;
  }
  .wave-one-testimonial-section {
    padding: 101px 0 149px;
  }
  .wave-one-faqs-section {
    padding: 100px 0;
  }
  .wave-one-download-section {
    padding: 100px 0 70px;
  }
  .cs-pt-130 {
    padding-top: 100px;
  }
  .wave-two-how-it-works {
    padding: 100px 0 110px;
  }
  .wave-two-counter {
    padding: 100px 0 70px;
  }
  .wave-two-testimonial {
    padding: 80px 0 130px;
  }
  .wave-faqs-section {
    padding: 70px 0 100px;
  }
  .wave-two-download-section {
    padding: 70px 0 70px;
  }
}

@media only screen and (min-width: 1200px) {
  .app-about-section.angle-sp {
    padding: 30px 0 120px;
  }
  .how-it-works.angle-gray-bg {
    padding-bottom: 120px;
  }
  .awsome-features.angle-sp {
    padding-bottom: 100px;
  }
  .counter-stats.angle-counter-stats {
    padding: 155px 0 115px;
  }
  .pricing-section.angle-sp {
    padding-bottom: 140px;
  }
  .faqs-section.angle-gray-bg {
    padding: 120px 0 170px;
  }
  .team-section.angle-sp {
    padding-bottom: 115px;
  }
  .app-download-section.angle-download-section {
    padding-bottom: 100px;
    padding-top: 120px;
  }
  .blog-section.angle-sp {
    padding-bottom: 0;
  }
  .app-screenshots-section.angle-sp {
    padding: 100px 0 170px;
  }
  .angle-testimonial-section {
    padding: 170px 0 130px;
  }
}

@media only screen and (min-width: 1824px) {
  .single-slider-item .welcome-phone {
    max-width: 100%;
  }
  .single-slider-item h1 {
    margin: 105px 0 20px;
  }
  .single-user i {
    font-size: 35px;
  }
  .single-user {
    padding: 0 0 0 45px;
  }
  .single-user h3 {
    font-size: 17px;
  }
}

.default-button {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.section-title h2::after {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.section-title h2::before {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

@media only screen and (min-width: 768px) {
  .top-menu.menu-shrink {
    background: #87633F;
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #87633F, #BBA792);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(bott, #87633F, #BBA792);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #87633F, #BBA792);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #87633F, #BBA792);
    /* Standard syntax */
  }
}

.gradient-bg {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.slider-item-img-bg::before {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.item-img-bg::after {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.homes-bg-img::after {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.particle-bg::after {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.video-bg::after {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.app-about-text h3::after {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.single-hiw-feature i {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.video-demo-content::before {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.single-feature::after {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.single-feature .feature-icon {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.counter-stats::after {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.screenshot-item:hover .screenshot-image::before {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.screenshots-modal .close {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.screenshot-details-text .title::after {
  background: #87633F;
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  background: -o-linear-gradient(right, #87633F, #BBA792);
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  background: linear-gradient(to right, #87633F, #BBA792);
}

.testimonial-section::after {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.testimonial-item .icofont-quote-left {
  background: #87633F;
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  background: -o-linear-gradient(right, #87633F, #BBA792);
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  background: linear-gradient(to right, #87633F, #BBA792);
}

.single-price-package .price-header .price-value {
  background: #87633F;
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  background: -o-linear-gradient(right, #87633F, #BBA792);
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  background: linear-gradient(to right, #87633F, #BBA792);
}

.personal-price-package .purchase-btn {
  background: #87633F;
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  background: -o-linear-gradient(right, #87633F, #BBA792);
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  background: linear-gradient(to right, #87633F, #BBA792);
}

.single-price-package:hover .purchase-btn {
  background: #87633F;
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  background: -o-linear-gradient(right, #87633F, #BBA792);
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  background: linear-gradient(to right, #87633F, #BBA792);
}

.purchase-btn::before {
  background: #87633F;
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  background: -o-linear-gradient(right, #87633F, #BBA792);
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  background: linear-gradient(to right, #87633F, #BBA792);
}

.faq-panel .faq-title::before {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.faq-panel .faq-title.active {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.accordion__item.active .accordion-header {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.single-member .overlay {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.app-download-section::after {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.single-blog-post .blog-date {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.single-blog-post-two .post_date {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.top-banner-area::before {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.single-blog-img .single-blog-date {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.blog-sidebar-title::before {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.post-category .single-category:hover {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.comment-title::before {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.popular-tags a:hover {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.pagination-nav li a:hover {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.pagination-nav li.active a {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.single-contact-info i {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.subscribe-form .subscribe-btn {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.back-top-button i {
  color: #87633F;
}

.comment-form .form-control:hover {
  border-bottom: 1px solid #87633F;
}

.all-comments-content .comment .replay {
  color: #87633F;
}

.single-recent-post h5 a:hover {
  color: #87633F;
}

.search-box .search-btn {
  color: #87633F;
}

.post-social-media a:hover {
  color: #87633F;
}

.post-tag-media .tag li a:hover {
  color: #87633F;
}

.single-post-admin a {
  color: #87633F;
}

.single-blog-post-two .blog-title a:hover {
  color: #87633F;
}

.single-blog-post:hover .read-more-btn {
  color: #87633F;
}

.single-blog-post .post-admin a {
  color: #87633F;
}

.single-blog-post .blog-title a:hover {
  color: #87633F;
}

.single-price-package .price-header .price-value {
  background: #87633F;
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  background: -o-linear-gradient(right, #87633F, #BBA792);
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  background: linear-gradient(to right, #87633F, #BBA792);
}

.screenshots-modal .close:hover, .screenshots-modal .close:focus {
  box-shadow: 0 0 10px #87633F;
}

.single-hiw-feature:hover i {
  box-shadow: 0 0 10px #87633F;
}

.single-user i {
  color: #87633F;
}

.app-about-text ul li i {
  color: #87633F;
}

.navbar-white .navbar-nav > .active > a,
.navbar-white .navbar-nav > .active > a:focus,
.navbar-white .navbar-nav > .active > a:hover {
  color: #87633F;
}

.navbar-white .navbar-nav li a::before {
  background: #87633F;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left, #87633F, #BBA792);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(bott, #87633F, #BBA792);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #87633F, #BBA792);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #87633F, #BBA792);
  /* Standard syntax */
}

.navbar-white.navbar-nav > li > a:focus,
.navbar-white .navbar-nav > li > a:hover {
  color: #87633F;
}

.default-button:hover {
  box-shadow: 0 0 10px #87633F;
}

.contact-info ul li i {
  color: #87633F;
}

.contact-form .form-control:hover {
  border-bottom: 1px solid #87633F;
}

.testimonial-item .pic {
  box-shadow: 0 0 2px #87633F;
}

.screenshot-details-text ul li i {
  color: #87633F;
}

.owl-dots .owl-dot.active span {
  background: #87633F;
}

.screenshot-carousel .owl-prev i, .screenshot-carousel-two .owl-prev i {
  color: #87633F;
}

.screenshot-carousel .owl-next i, .screenshot-carousel-two .owl-next i {
  color: #87633F;
}
