
.overflow {
  overflow: hidden;
}
.relative {
  position: relative;
}
.display-table {
  display: table;
  width: 100%;
}
.display-flex {
  display: flex;
  flex: 1;
}
.vertical-middle {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

/**
 * ------------------------------------
 *  Every Section Headline Defult Class
 * ------------------------------------
 */
.section-heading {
  display: inline-block;
  margin: 0;
  margin: 0 0 25px;
  padding-bottom: 10px;
}
.section-header {
  margin-bottom: 80px;
  text-align: center;
}
.section-header .sub-heading {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
.section-header.text-left,
.section-header.text-left * {
  text-align: left;
}
.section-header.text-right,
.section-header.text-right * {
  text-align: right;
}
.lines {
  position: relative;
}
.lines:after,
.lines:before {
  content: "";
  position: absolute;
}
.lines:after {
  bottom: 0;
  height: 3px;
  width: 45px;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0) ;
  -moz-transform: translate3d(-50%, 0, 0) ;
  -ms-transform: translate3d(-50%, 0, 0) ;
  -o-transform: translate3d(-50%, 0, 0) ;
  transform: translate3d(-50%, 0, 0) ;
}
.lines:before {
  bottom: 2px;
  width: 100%;
  height: 1px;
  left: 0;
}
.lines.text-left:after {
  left: 0%;
  -webkit-transform: translate3d(0%, 0, 0) ;
  -moz-transform: translate3d(0%, 0, 0) ;
  -ms-transform: translate3d(0%, 0, 0) ;
  -o-transform: translate3d(0%, 0, 0) ;
  transform: translate3d(0%, 0, 0) ;
}
.lines.text-right:after {
  left: auto;
  right: 0%;
  -webkit-transform: translate3d(0%, 0, 0) ;
  -moz-transform: translate3d(0%, 0, 0) ;
  -ms-transform: translate3d(0%, 0, 0) ;
  -o-transform: translate3d(0%, 0, 0) ;
  transform: translate3d(0%, 0, 0) ;
}
/**
 * -----------------
 *  Light Text Color
 * -----------------
 */
/**
 * -------------------------------
 *  Section Top and Bottom padding  
 * -------------------------------
 */
.section-separator {
  display: block;
  padding-top: 110px;
  padding-bottom: 110px;
}
.section-separator.sp-top {
  padding-bottom: 0px;
}
.section-separator.sp-bottom {
  padding-top: 0px;
}
.section-separator-small {
  display: block;
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-separator-small.sp-top {
  padding-bottom: 0px;
}
.section-separator-small.sp-bottom {
  padding-top: 0px;
}
/**
 * ---------------------------
 *  Two Section Line Separator
 * ---------------------------
 */
.section-separator-line {
  margin: 0;
  width: 100%;
  border-top: 1px solid;
}
/**
 * ------------------------
 * Background Overlay Color
 * ------------------------
 */
.overlay-color {
  position: relative;
}
.bg-overlay::before,
.bg-overlay-dark::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
/**
 * ------------------------------------
 * Making Same Height Left & Right Part
 * ------------------------------------
 */
.display-full {
  display: table !important;
  width: 100%;
}
.display-full .left,
.display-full .right {
  display: table-cell;
  float: none !important;
}
/**
 * ===============================
 *   Defult Button Style
 * ===============================
 */
.btn {
  border-radius: 0;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 15px;
  padding: 18px 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  outline: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-right: 15px;
}
.btn:last-child {
  margin-right: 0px !important;
}
.btn:after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 0px;
  height: 0px;
  left: 50%;
  top: 50%;
  margin-top: 0px;
  margin-left: 0px;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  border-radius: 50%;
}
.btn:hover:after {
  width: 300px;
  height: 300px;
  margin-top: -150px;
  margin-left: -150px;
  opacity: 1;
}
/* Video Button Style */
.btn-video {
  -webkit-border-radius: 0 ;
  -moz-border-radius: 0 ;
  -ms-border-radius: 0 ;
  -o-border-radius: 0 ;
  border-radius: 0 ;
  padding: 21px 0 21px 77px;
  position: relative;
}
.btn-video .icon {
  font-size: 60px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 38px;
}
.btn-text-link {
  padding: 50px 0 0 0;
  text-align: center;
}
.btn-text-link a {
  margin-left: 10px;
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: thin dotted;
  outline: 0px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
/**
 * ----------------------
 * CONTAINER HALF CONTENT
 * ----------------------
 */
.content-half {
  position: relative;
}
.container-half {
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  width: 43%;
}
.container-half.pr30 {
  width: calc(50% - 30px);
}
.container-half-left {
  left: 0;
  background-position: 50% 50%;
}
.container-half-right {
  right: 0;
  background-position: 50% 50%;
}
/**
 * --------------------
 *  Defult Margin Class
 * --------------------
 */
.margin-t-15 {
  margin-top: 15px;
}
.margin-r-15 {
  margin-right: 15px;
}
.margin-b-15 {
  margin-bottom: 15px;
}
.margin-l-15 {
  margin-left: 15px;
}
.margin-t-20 {
  margin-top: 20px;
}
.margin-r-20 {
  margin-right: 20px;
}
.margin-b-20 {
  margin-bottom: 20px;
}
.margin-l-20 {
  margin-left: 20px;
}
.margin-t-30 {
  margin-top: 30px;
}
.margin-r-30 {
  margin-right: 30px;
}
.margin-b-30 {
  margin-bottom: 30px;
}
.margin-l-30 {
  margin-left: 30px;
}
.margin-t-40 {
  margin-top: 40px;
}
.margin-r-40 {
  margin-right: 40px;
}
.margin-b-40 {
  margin-bottom: 40px;
}
.margin-l-40 {
  margin-left: 40px;
}
.margin-t-50 {
  margin-top: 50px;
}
.margin-r-50 {
  margin-right: 50px;
}
.margin-b-50 {
  margin-bottom: 50px;
}
.margin-l-50 {
  margin-left: 50px;
}
.margin-t-60 {
  margin-top: 60px;
}
.margin-r-60 {
  margin-right: 60px;
}
.margin-b-60 {
  margin-bottom: 60px;
}
.margin-l-60 {
  margin-left: 60px;
}
/**
 * ---------------------
 *  Defult Padding class
 * ---------------------
 */
.padding-t-15 {
  padding-top: 15px;
}
.padding-r-15 {
  padding-right: 15px;
}
.padding-b-15 {
  padding-bottom: 15px;
}
.padding-l-15 {
  padding-left: 15px;
}
.padding-t-20 {
  padding-top: 20px;
}
.padding-r-20 {
  padding-right: 20px;
}
.padding-b-20 {
  padding-bottom: 20px;
}
.padding-l-20 {
  padding-left: 20px;
}
.padding-t-30 {
  padding-top: 30px;
}
.padding-r-30 {
  padding-right: 30px;
}
.padding-b-30 {
  padding-bottom: 30px;
}
.padding-l-30 {
  padding-left: 30px;
}
.padding-t-40 {
  padding-top: 40px;
}
.padding-r-40 {
  padding-right: 40px;
}
.padding-b-40 {
  padding-bottom: 40px;
}
.padding-l-40 {
  padding-left: 40px;
}
.padding-t-50 {
  padding-top: 50px;
}
.padding-r-50 {
  padding-right: 50px;
}
.padding-b-50 {
  padding-bottom: 50px;
}
.padding-l-50 {
  padding-left: 50px;
}
.padding-t-60 {
  padding-top: 60px;
}
.padding-r-60 {
  padding-right: 60px;
}
.padding-b-60 {
  padding-bottom: 60px;
}
.padding-l-60 {
  padding-left: 60px;
}
@media (max-width: 991px) {
  .container-half-left,
  .container-half-right {
    display: none;
  }
}
@media (max-width: 767px) {
  /**
     * ----------------
     *  Defult CSS 
     * ----------------
     */
  #development{
    text-align: center;
  }

  /**
     * ---------------------
     *   Defult Button Style
     * ---------------------
     */
  .btn {
    margin: 7px;
  }
  .btn:last-child {
    margin-right: 7px !important;
  }
  /**
     * -------------------------------
     *  Section Top and Bottom padding  
     * -------------------------------
     */
  .section-separator {
    display: block;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /**
     * ----------------
     *   Helping Class
     * ----------------
     */
  .vertical-middle {
    display: block;
  }
  .display-table {
    width: auto;
  }
}
/****************************************************************
    START MAIN CSS STYLE
*****************************************************************/
/**
 * ===============================
 * Default Background Color 
 * ===============================
*/
/**
 * ===============================
 * Background image
 * ===============================
*/
/**
 * -----------------------------------------
 * Header Section
 * -----------------------------------------
*/
.header-section {
  z-index: 1;
}
.header-section .logo-link {
  max-width: 50px;
  margin-bottom: 70px;
}
.header-section .section-separator {
  padding-top: 200px;
}
.header-section .detail {
  margin-top: 40px;
}
.header-section .detail p {
  font-size: 18px;
  line-height: 30px;
}
.header-section .btn-form {
  margin-top: 70px;
}
.header-section .app-screen-image {
  width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.header-section .app-screen-image img {
  margin-left: auto;
  margin-right: auto;
}
.header-section-2 .section-separator {
  padding-bottom: 350px;
}
/**
 * -----------------------------------------
 * Header Section Shape
 * -----------------------------------------
*/
.shape {
  width: calc(130vw);
  height: calc(130vw);
  position: absolute;
  left: -46%;
  bottom: 11%;
  z-index: -1;
}
.shape::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: -4.2%;
  bottom: 4.2%;
  -webkit-transform: translate3d(0, 0, 0) rotate(-15deg) ;
  -moz-transform: translate3d(0, 0, 0) rotate(-15deg) ;
  -ms-transform: translate3d(0, 0, 0) rotate(-15deg) ;
  -o-transform: translate3d(0, 0, 0) rotate(-15deg) ;
  transform: translate3d(0, 0, 0) rotate(-15deg) ;
  z-index: -1;
}
.shape::after {
  content: '';
  position: absolute;
  width: 51%;
  height: 100%;
  left: 4.2%;
  bottom: -4.3%;
  -webkit-transform: translate3d(0, 0, 0) rotate(-7deg) ;
  -moz-transform: translate3d(0, 0, 0) rotate(-7deg) ;
  -ms-transform: translate3d(0, 0, 0) rotate(-7deg) ;
  -o-transform: translate3d(0, 0, 0) rotate(-7deg) ;
  transform: translate3d(0, 0, 0) rotate(-7deg) ;
  z-index: -2;
}
@media (max-width: 1400px) {
  .shape {
    width: 1400px;
    height: 1400px;
    left: -26%;
    bottom: -14%;
  }
}
/**
 * -----------------------------------------
 * Pricing Table Style
 * -----------------------------------------
*/
.table-single {
  padding: 15px;
  text-align: left;
  overflow: hidden;
  position: relative;
  will-change: opacity, transform;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 30px;
}
.table-single .important {
  position: absolute;
  font-weight: 400;
  padding: 38px 5px 5px;
  width: 142px;
  top: -13px;
  left: -47px;
  transform: rotate(-45deg);
  text-align: center;
  font-size: 13px;
}
.table-single .meta-heading {
  font-weight: bold;
  font-family: 'Exo', sans-serif;
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  text-align: left;
}
.table-single .meta-heading,
.table-single .meta-price {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.table-single .meta-price {
  padding: 25px 0;
  font-family: 'Exo', sans-serif;
  position: relative;
  display: inline-block;
}
.table-single .meta-price .currency {
  font-weight: 300;
  font-size: 23px;
  position: relative;
  left: 3px;
}
.table-single .meta-price .rate {
  font-size: 60px;
  font-family: 'Exo', sans-serif;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0px;
}
.table-single .meta-price .period {
  font-size: 16px;
  font-weight: 300;
  line-height: 0;
  margin-left: 30px;
}
.table-single ul {
  padding: 0px;
}
.table-single ul li {
  text-decoration: none;
  list-style: none;
  padding: 0;
  text-align: left;
  line-height: 28px;
}
.table-single .btn {
  margin-top: 10px;
}
.table-single:hover .btn {
  opacity: 1;
}
/**
 * -----------------------------------------
 * Our Focus Section Style
 * -----------------------------------------
*/
.our-focus .each-item > .each-inner {
  text-align: center;
  padding: 40px 25px;
}
.our-focus .each-item .border-bottom {
  border-bottom: 3px solid;
}
.our-focus .each-item .icon {
  font-size: 45px;
}
.our-focus .each-item .title {
  margin: 15px 0 0 0;
  font-weight: 400;
  text-transform: uppercase;
}
.our-focus .each-item .details {
  margin: 15px 0 0 0;
}
.our-focus-3 {
  padding: 50px 0;
  border-top: 2px solid;
}
.section-overlay {
  position: relative;
  margin-top: -200px;
  z-index: 11;
  padding: 50px 0;
  border-top: 2px solid;
}
/**
 * -----------------------
 * App Screen Style
 * -----------------------
 */
.app-screen-wrapper .item {
  margin: 10px;
  border: 2px solid;
}
.app-screen-wrapper .owl-controls .owl-pagination .owl-page span {
  -webkit-border-radius: 0 ;
  -moz-border-radius: 0 ;
  -ms-border-radius: 0 ;
  -o-border-radius: 0 ;
  border-radius: 0 ;
  width: 24px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/**
 * -----------------------
 * App Features Style
 * -----------------------
 */
.app-features .features-image {
  width: 290px;
  margin: auto;
}
.app-features .features-image img {
  width: 100%;
}
.app-features .feature-item {
  margin-bottom: 60px;
}
.app-features .feature-item:last-child {
  margin-bottom: 0px;
}
.app-features .feature-item .title {
  margin-top: 20px;
}
.app-features .feature-item p {
  margin-top: 10px;
}
.app-features .feature-item p:last-child {
  margin-bottom: 0px;
}
.app-features .features-icon {
  display: block;
  font-size: 40px;
}
/**
 * -------------------------
 * App Description Style
 * -------------------------
 */
.app-description .features-image img {
  max-width: 465px;
  margin-left: auto;
  margin-right: auto;
}
.app-description .features-list .media {
  margin-bottom: 20px;
}
.app-description .features-list .media .media-left {
  padding-top: 7px;
  padding-right: 15px;
}
.app-description .features-list .media .media-left .icon {
  font-size: 34px;
}
.app-description .features-list .media .title {
  margin: 0;
  text-align: left;
}
.app-description .features-list .media p {
  font-size: 14px;
  line-height: 24px;
  text-align: left;
}
