/* /////////////////////////// 
    General
//////////////////////////// */

.btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
}

.btn--primary {
  background-color: #bea488;
  color: #FFF;
}

.btn--primary:hover {
  background-color: #272727;
  color: #fff;
}

.btn--medium {
  width: 163px;
}

.btn--large {
  width: 238px;
}

h1, .h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 33px;
}

@media (min-width: 480px) {
  h1, .h1 {
    font-size: 46px;
  }
}

@media (min-width: 576px) {
  h1, .h1 {
    font-size: 50px;
  }
}

@media (min-width: 992px) {
  h1, .h1 {
    font-size: 56px;
  }
}

h2, .h2 {
  font-size: 30px;
  font-family: 'DM Serif Display', serif;
}

@media (min-width: 480px) {
  h2, .h2 {
    font-size: 35px;
  }
}

@media (min-width: 576px) {
  h2, .h2 {
    font-size: 40px;
  }
}

@media (min-width: 992px) {
  h2, .h2 {
    font-size: 46px;
  }
}

h3, .h3 {
  font-size: 38px;
  font-family: 'DM Serif Display', serif;
}

h4, .h4 {
  font-size: 28px;
  font-family: 'DM Serif Display', serif;
}

h5, .h5 {
  font-size: 24px;
  font-family: 'DM Serif Display', serif;
}

h6, .h6 {
  font-size: 21px;
  font-family: 'DM Serif Display', serif;
}

p {
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
}

.p1 {
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
}

.p2 {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
}

.p3 {
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
}

.span {
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
}

/* /////////////////////////// 
    Header Area
//////////////////////////// */
.site-header {
  background-color: #f5f5f8;
}

@media (min-width: 768px) {
  .site-header {
    padding-top: 20px;
  }
}

@media (min-width: 992px) {
  .site-header {
    padding-top: 15px;
  }
}

.site-header .main-menu {
  margin: 0 -18px;
}

.site-header .brand-logo {
  position: relative;
  top: -2px;
}

@media (min-width: 992px) {
  .main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (min-width: 992px) {
  .main-menu > li > a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 18px;
  }
}

.main-menu > li > a:hover {
  color: #272727;
}

@media (min-width: 992px) {
  .main-menu .has-dropdown {
    position: relative;
    z-index: 99;
  }
}

@media (min-width: 992px) {
  .main-menu .has-dropdown:hover .menu-dropdown {
    top: 100%;
    opacity: 1;
    pointer-events: visible;
  }
}

.main-menu .has-dropdown:hover .menu-dropdown p {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .main-menu .menu-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 110%;
    position: absolute;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-width: 530px;
    -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    padding: 30px 30px 0px;
    z-index: 99;
    opacity: 0;
    -webkit-transition: opacity .4s,top .4s;
    transition: opacity .4s,top .4s;
    pointer-events: none;
    left: -90%;
  }
}

@media (min-width: 992px) {
  .main-menu .menu-dropdown .single-item {
    -webkit-box-flex: calc(50% - 20px);
        -ms-flex: calc(50% - 20px);
            flex: calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .main-menu .menu-dropdown .single-item:hover a h3 {
    color: #272727;
  }
}

.main-menu .menu-dropdown .single-item a h3 {
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.4px;
  -webkit-transition: .4s;
  transition: .4s;
  padding: 0;
  padding-bottom: 5px;
}

.main-menu .menu-dropdown .single-item a p {
  margin-bottom: 0;
}

.main-menu .menu-dropdown .single-item p {
  color: #878b90;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.35px;
}

@media (min-width: 992px) {
  .main-menu .menu-dropdown .single-item:nth-child(odd) {
    margin-right: 40px;
  }
}

.header-btns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 992px) {
  .header-btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header-btns .btn-link {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -1px;
}

.header-btns .btn-link:hover {
  color: #bea488;
}

.header-btns.btns-group {
  margin: 0 -17px;
}

/*  Mobile Menu / Mean Menu Reset  */
.hamburger-icon {
  font-size: 16px;
  color: #bea488;
  width: 36px;
  height: 36px;
  border: 2px solid #bea488;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: .4s;
  transition: .4s;
}

.hamburger-icon:hover {
  background: #bea488;
  color: #fff;
  border-color: transparent;
}

.main-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.main-navigation .header-btns {
  margin-left: 50px;
}

.mobile-header {
  padding: 18px 0;
}

/* Mobile Off canvas */
.off-canvas-wrapper {
  top: 0;
  right: 0;
  height: 100vh;
  position: fixed;
  background-color: #fff;
  z-index: 9999;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
  opacity: 0;
  visibility: hidden;
  width: 250px;
}

@media (min-width: 480px) {
  .off-canvas-wrapper {
    width: 300px;
  }
}

.off-canvas-wrapper.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.off-canvas-wrapper .off-canvas-inner {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  height: 100%;
  position: relative;
  overflow-y: scroll;
}

.off-canvas-wrapper .header-btns {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

.off-canvas-wrapper .header-btns .btn:first-child {
  margin-bottom: 16px;
}

.off-canvas-wrapper .btn-close-off-canvas {
  top: 0;
  left: -50px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  background-color: #2780ff;
  color: #fff;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.off-canvas-wrapper .menu-expand {
  display: none;
}

.mobile-navigation {
  padding: 20px 0;
}

.mobile-navigation .mobile-menu > li {
  padding-bottom: 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid #ececec;
}

.mobile-navigation .mobile-menu > li .sub-menu > li {
  padding-top: 13px;
  margin-top: 13px;
  border-top: 1px solid #ececec;
  padding-left: 20px;
}

.mobile-navigation .mobile-menu > li .sub-menu > li.single-item h3 {
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}

.mobile-navigation .mobile-menu > li .sub-menu > li.single-item p {
  font-size: 13px;
}

.mobile-navigation .mobile-menu > li .sub-menu > li.single-item a:hover {
  color: inherit;
}

.mobile-navigation .mobile-menu > li:last-child {
  border-bottom-color: transparent;
}

.mobile-navigation .mobile-menu li i {
  margin-left: 8px;
  position: relative;
  top: 3px;
}

.mobile-navigation .mobile-menu li:hover > a {
  color: #272727;
}

.mobile-navigation .mobile-menu a {
  display: block;
}

/* /////////////////////////// 
    Hero Area
//////////////////////////// */
.hero-area {
  background-color: #f4f4f4;
  z-index: 1;
  border-bottom: 1px solid #e5e5e5;
}

.hero-content .title {
  color: #000000;
  font-weight: 700;
  letter-spacing: -1px;
}

@media (min-width: 480px) {
  .hero-content .title {
    font-size: 46px;
  }
}

@media (min-width: 576px) {
  .hero-content .title {
    font-size: 50px;
  }
}

@media (min-width: 992px) {
  .hero-content .title {
    font-size: 56px;
  }
}

.hero-content p {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  padding-right: 7px;
}

@media (min-width: 480px) {
  .hero-content p {
    font-size: 20px;
    line-height: 34px;
  }
}

@media (min-width: 992px) {
  .hero-content p {
    padding-right: 30px;
  }
}

@media (min-width: 1200px) {
  .hero-content p {
    padding-right: 40px;
  }
}

.hero-btns {
  margin-bottom: -15px;
}

.hero-btns .android {
  margin-bottom: 15px;
}

.hero-btns .android i {
  color: #fff;
}

.hero-btns .android span {
  padding-left: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-btns .android span:hover {
  color: #fff;
}

.hero-btns .apple {
  margin-bottom: 15px;
}

.hero-btns .apple i {
  color: #fff;
}

.hero-btns .apple span {
  padding-left: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-btns .apple span:hover {
  color: #fff;
}

.hero-ratings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero-ratings .trust-info {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  margin-top: 35px;
  margin-right: 15px;
  margin-bottom: 10px;
  margin-left: 5px;
}

.hero-ratings .rating-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero-ratings .rating-stars li {
  color: #272727;
}

.hero-ratings .rating-stars li:last-child {
  color: #272727;
}

.hero-image {
  z-index: 1;
  width: 100%;
}

@media (min-width: 480px) {
  .hero-image {
    width: 70%;
  }
}

@media (min-width: 768px) {
  .hero-image {
    margin-top: 80px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .hero-image {
    height: 641px;
    margin-top: 0;
    display: block;
  }
}

.hero-image .phn-shape {
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: -1;
  max-width: 180px;
}

@media (min-width: 480px) {
  .hero-image .phn-shape {
    max-width: 270px;
  }
}

@media (min-width: 768px) {
  .hero-image .phn-shape {
    top: -35px;
    right: 50px;
  }
}

@media (min-width: 992px) {
  .hero-image .phn-shape {
    top: -15px;
    left: -30px;
  }
}

@media (min-width: 1200px) {
  .hero-image .phn-shape {
    top: -50px;
    left: -65px;
    max-width: 100%;
  }
}

.hero-image .image-mobile img {
  position: relative;
}

@media (min-width: 992px) {
  .hero-image .image-mobile img {
    top: 50px;
  }
}

@media (min-width: 1200px) {
  .hero-image .image-mobile img {
    top: 0px;
  }
}

.hero-image .absolute-image {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (min-width: 1600px) {
  .hero-image .absolute-image.image-2 {
    left: 1%;
  }
}

.hero-shape {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -1;
}

/* /////////////////////////// 
    Non-Landing Page Hero Area
//////////////////////////// */
.header-area {
  background-color: #f4f4f4;
  z-index: 1;
  border-bottom: 1px solid #e5e5e5;
}

.header-content .title {
  color: #000000;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
  padding-top: 30px;
}

.header-content p {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

@media (min-width: 480px) {
  .header-content p {
    font-size: 20px;
    line-height: 34px;
  }
}

@media (min-width: 992px) {
  .header-content p {
    padding-right: 30px;
  }
}

@media (min-width: 1200px) {
  .header-content p {
    padding-right: 40px;
  }
}

.header-list li {
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 20px;
  padding-bottom: 7px;
  margin-left: 35px;
  list-style-type: circle;
  font-family: 'DM Sans', sans-serif;
}

/* /////////////////////////// 
    Feature Section
//////////////////////////// */
.feature-widget .widget-icon {
  opacity: 0.15;
  color: #000000;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
}

@media (min-width: 992px) {
  .feature-widget .widget-icon {
    margin-bottom: 60px;
  }
}

.feature-widget .widget-icon span {
  font-size: inherit;
}

.feature-widget .content .title {
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .feature-widget .content .title {
    margin-bottom: 28px;
  }
}

.feature-widget .content p {
  color: #323232;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .feature-widget .content p {
    font-size: 18px;
    font-weight: 500;
    padding-right: 0;
  }
}

@media (min-width: 992px) {
  .feature-widget .content p {
    font-size: 18px;
    font-weight: 400;
  }
}

@media (min-width: 1200px) {
  .feature-widget .content p {
    padding-right: 60px;
  }
}

/* /////////////////////////// 
    Content Section
//////////////////////////// */
.content-wrapper {
  position: relative;
  overflow: hidden;
}

.content-wrapper .content-right-content {
  padding-bottom: 25px;
}

@media (min-width: 768px) {
  .content-wrapper .content-right-content {
    padding-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .content-wrapper .content-right-content {
    padding-bottom: 125px;
  }
}

.content-wrapper .content-right-content .title {
  color: #000000;
  font-weight: 700;
  letter-spacing: -0.34px;
  margin-bottom: 15px;
}

@media (min-width: 480px) {
  .content-wrapper .content-right-content .title {
    padding-right: 50px;
  }
}

@media (min-width: 576px) {
  .content-wrapper .content-right-content .title {
    padding-right: 0;
  }
}

@media (min-width: 768px) {
  .content-wrapper .content-right-content .title {
    margin-bottom: 20px;
  }
}

.content-wrapper .content-right-content p {
  color: #323232;
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
}

@media (min-width: 768px) {
  .content-wrapper .content-right-content p {
    font-size: 18px;
    line-height: 25px;
    padding-right: 5px;
  }
}

@media (min-width: 992px) {
  .content-wrapper .content-right-content p {
    font-size: 18px;
    line-height: 32px;
    padding-right: 15px;
  }
}

.content-wrapper .content-image-01 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .content-wrapper .content-image-01 {
    position: absolute;
    top: 20px;
    right: 10px;
  }
}

.content-wrapper .content-image-01 img {
  max-width: 100%;
}

.content-wrapper .content-image-02 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .content-wrapper .content-image-02 {
    position: absolute;
    top: 40px;
    left: 0;
  }
}

.content-wrapper .content-image-02 img {
  max-width: 100%;
}

.content-02 .title {
  color: #000000;
  font-weight: 700;
  letter-spacing: -0.34px;
}

@media (min-width: 768px) {
  .content-02 .title {
    margin-bottom: 20px;
    margin-left: 30px;
    margin-top: 30px;
  }
}

@media (min-width: 992px) {
  .content-02 .title {
    margin-left: 0;
    margin-bottom: 70px;
    padding-right: 15px;
    margin-top: 70px;
  }
}

@media (min-width: 992px) {
  .content-widgets {
    padding-bottom: 110px;
  }
}

.content-widget-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 992px) {
  .content-widget-wrapper {
    margin: 0 0px;
    display: block;
  }
}

.content-widget-wrapper .content-widget {
  margin-top: 30px;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .content-widget-wrapper .content-widget {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    max-width: 50%;
    padding: 0 15px;
  }
}

@media (min-width: 992px) {
  .content-widget-wrapper .content-widget {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 100%;
    padding: 0px;
  }
}

.content-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 480px) {
  .content-widget {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .content-widget {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 992px) {
  .content-widget {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.content-widget .content {
  -ms-flex-preferred-size: calc(100% - 100px);
      flex-basis: calc(100% - 100px);
}

.content-widget .content .widget-title {
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .content-widget .content .widget-title {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .content-widget .content .widget-title {
    font-size: 22px;
  }
}

.content-widget .content p {
  color: #323232;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
}

@media (min-width: 768px) {
  .content-widget .content p {
    font-size: 18px;
    line-height: 25px;
  }
}

@media (min-width: 992px) {
  .content-widget .content p {
    font-size: 18px;
    line-height: 34px;
  }
}

.content-widget .widget-icon {
  background-color: #bea488;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
  font-size: 28px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-top: 7px;
  margin-right: 25px;
}

@media (min-width: 576px) {
  .content-widget .widget-icon {
    margin-bottom: 0px;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .content-widget .widget-icon {
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .content-widget .widget-icon {
    margin-right: 25px;
    margin-bottom: 0px;
    margin-left: 0;
  }
}

.content-widget .widget-icon i {
  -webkit-transition: .4s;
  transition: .4s;
}

.content-widget:hover .widget-icon i {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

/* /////////////////////////// 
    Testimonial Section
//////////////////////////// */
.testimonial-section .section-title {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .testimonial-section .section-title {
    margin-bottom: 60px;
  }
}

.testimonial-section .section-title .testimonial-title {
  color: #000000;
}

.testimonial-section .section-title p {
  color: #323232;
  line-height: 34px;
}

.testimonial-widget .content {
  -ms-flex-preferred-size: calc(100% - 100px);
      flex-basis: calc(100% - 100px);
}

.testimonial-widget .content p {
  color: #000000;
  font-style: italic;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 35px;
}

@media (min-width: 480px) {
  .testimonial-widget .content p {
    padding-right: 70px;
  }
}

@media (min-width: 768px) {
  .testimonial-widget .content p {
    font-size: 18px;
    line-height: 34px;
    padding-right: 0;
  }
}

@media (min-width: 992px) {
  .testimonial-widget .content p {
    padding-right: 0;
    font-size: 17px;
  }
}

@media (min-width: 1200px) {
  .testimonial-widget .content p {
    padding-right: 50px;
  }
}

.testimonial-widget .content .name {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 5px;
}

.testimonial-widget .content .job {
  color: #323232;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.testimonial-widget .widget-picture {
  margin-bottom: 40px;
}

/* /////////////////////////// 
    Example Section
//////////////////////////// */
.example-section {
  background-color: #272727;
  z-index: 1;
}

.example-section .section-title {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .example-section .section-title {
    margin-bottom: 60px;
  }
}

.example-section .section-title p {
  color: #f4f4f4;
}

.example-section .section-title .example-title {
  color: #ffffff;
  margin-bottom: 22px;
}

.example-slider-wrapper {
  position: relative;
  margin-top: 20px;
}

.example-slider-wrapper .slick-arrow {
  position: absolute;
  top: 50%;
  left: 5%;
  font-size: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .4s;
  transition: .4s;
  background-color: #bea488;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 99;
}

@media (min-width: 1366px) {
  .example-slider-wrapper .slick-arrow {
    left: 20%;
  }
}

@media (min-width: 1800px) {
  .example-slider-wrapper .slick-arrow {
    left: 27%;
  }
}

.example-slider-wrapper .slick-arrow:hover {
  background: white;
  color: #000000;
}

.example-slider-wrapper .slick-arrow.slick-next {
  left: auto;
  right: 5%;
}

@media (min-width: 1600px) {
  .example-slider-wrapper .slick-arrow.slick-next {
    right: 20%;
  }
}

@media (min-width: 1800px) {
  .example-slider-wrapper .slick-arrow.slick-next {
    right: 29%;
  }
}

.example-slider-wrapper .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

@media (min-width: 768px) {
  .example-slider-wrapper .slick-dots {
    margin-top: 110px;
  }
}

.example-slider-wrapper .slick-dots li {
  font-size: 0;
  background-color: #ffffff;
  opacity: 0.3;
  height: 10px;
  width: 10px;
  border-radius: 500px;
  margin: 0 5px;
}

.example-slider-wrapper .slick-dots li.slick-active {
  opacity: 1;
}

.example-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  overflow: hidden;
}

@media (min-width: 690px) {
  .example-image {
    width: 330px;
    max-height: 662px;
    border-radius: 50px;
  }
}

@media (min-width: 690px) {
  .example-image img {
    width: 100%;
  }
}

.phone-bg-img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 11;
  display: none;
}

@media (min-width: 690px) {
  .phone-bg-img {
    display: block;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.example-slider .slick-list {
  margin: 0 -23.5px;
}

.example-slider .slick-slide {
  opacity: .2;
}

.example-slider .slick-center {
  opacity: 1;
}

/* /////////////////////////// 
    CTA Section
//////////////////////////// */
.cta-section {
  background-image: url(../image/Rectangle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-wrapper {
  text-align: center;
}

.cta-wrapper .cta-title {
  color: #000000;
  font-weight: 700;
  letter-spacing: -0.34px;
  margin-bottom: 38px;
}

.cta-wrapper p {
  color: #878b90;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.cta-btns {
  margin-bottom: -15px;
}

.cta-btns .android {
  margin-bottom: 15px;
  letter-spacing: 0;
}

@media (min-width: 576px) {
  .cta-btns .android {
    margin-right: 15px;
  }
}

.cta-btns .android i {
  color: #fff;
}

.cta-btns .android span {
  padding-left: 10px;
  color: #fff;
  font-weight: 600;
}

.cta-btns .android span:hover {
  color: #fff;
}

.cta-btns .apple {
  margin-bottom: 15px;
  letter-spacing: 0;
}

.cta-btns .apple i {
  color: #fff;
}

.cta-btns .apple span {
  padding-left: 10px;
  color: #fff;
  font-weight: 600;
}

.cta-btns .apple span:hover {
  color: #fff;
}

.cta-icon {
  width: 84px;
  height: 84px;
  font-size: 28px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 500px;
  margin: 0 auto;
  margin-bottom: 25px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.cta-icon i {
  color: #2780ff;
  font-size: inherit;
}

.cta-icon:hover {
  background-color: #272727;
}

.cta-icon:hover i {
  color: #fff;
}

.cta-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* /////////////////////////// 
    Footer Section 
//////////////////////////// */
.footer-section {
  border-bottom: 1px solid #e5e5e5;
}

.footer-section .footer-icon {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .footer-section .footer-icon {
    margin-bottom: 65px;
  }
}

.footer-content {
  margin-bottom: 30px;
}

@media (min-width: 480px) {
  .footer-content {
    padding-right: 145px;
  }
}

@media (min-width: 576px) {
  .footer-content {
    padding-right: 25px;
  }
}

@media (min-width: 768px) {
  .footer-content {
    padding-right: 15px;
  }
}

@media (min-width: 992px) {
  .footer-content {
    padding: 0 55px 0 10px;
  }
}

@media (min-width: 1200px) {
  .footer-content {
    padding-right: 35px;
  }
}

.footer-content p {
  color: #000000;
  font-weight: 400;
  line-height: 32px;
}

.footer-copyright-text {
  font-weight: 400;
  letter-spacing: -0.6px;
  line-height: 45px;
  color: #666666;
  margin-bottom: 0;
}

.footer-social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

@media (min-width: 768px) {
  .footer-social-list {
    margin-top: 0;
  }
}

.footer-social-list li {
  margin-right: 18px;
}

.contact-title {
  color: #000000;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 15px;
}

.footer-address p {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.footer-icon {
  width: 60px;
  height: 60px;
  font-size: 28px;
  background-color: #2780ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 500px;
  margin-bottom: 25px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer-icon i {
  color: #fff;
  font-size: inherit;
}

.badge {
  width: 132px;
  height: 30px;
  border-radius: 15px;
  background-color: #bea488;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
  margin-top: 25px;
}

.badge span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 10px;
}

@media (min-width: 768px) {
  .badge {
    margin-top: 100px;
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .badge {
    margin-top: 120px;
  }
}
/*# sourceMappingURL=style.css.map */





/* From SaaS Template */
/*=== Media Query ===*/
/* /////////////////////////// 
    Header Area
//////////////////////////// */
@media (min-width: 768px) {
  .site-header {
    padding-top: 20px;
  }
}

@media (min-width: 992px) {
  .site-header {
    padding-top: 15px;
  }
}

.site-header .main-menu {
  margin: 0 -18px;
}

@media (min-width: 992px) {
  .main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 992px) {
  .main-menu > li > a {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.4px;
    color: #1f1f1f;
    padding: 18px;
  }
}

.main-menu > li > a:hover {
  color: #272727;
}

@media (min-width: 992px) {
  .main-menu .has-dropdown {
    position: relative;
    z-index: 99;
  }
}

@media (min-width: 992px) {
  .main-menu .has-dropdown:hover .menu-dropdown {
    top: 100%;
    opacity: 1;
    pointer-events: visible;
  }
}

.main-menu .has-dropdown:hover .menu-dropdown p {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .main-menu .menu-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 110%;
    position: absolute;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-width: 530px;
    -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    padding: 30px 30px 0px;
    z-index: 99;
    opacity: 0;
    -webkit-transition: opacity .4s,top .4s;
    transition: opacity .4s,top .4s;
    pointer-events: none;
  }
}

@media (min-width: 992px) {
  .main-menu .menu-dropdown .single-item {
    -webkit-box-flex: calc(50% - 20px);
        -ms-flex: calc(50% - 20px);
            flex: calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .main-menu .menu-dropdown .single-item:hover a h3 {
    color: #272727;
  }
}

.main-menu .menu-dropdown .single-item a h3 {
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.4px;
  -webkit-transition: .4s;
  transition: .4s;
  padding: 0;
}

.main-menu .menu-dropdown .single-item a p {
  margin-bottom: 0;
}

.main-menu .menu-dropdown .single-item p {
  color: #878b90;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.35px;
}

@media (min-width: 992px) {
  .main-menu .menu-dropdown .single-item:nth-child(odd) {
    margin-right: 40px;
  }
}

.header-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (min-width: 992px) {
  .header-btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header-btns .btn-1 {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -.5px;
  margin: 0 14px;
}

@media (min-width: 1200px) {
  .header-btns .btn-1 {
    margin: 0 17px;
  }
}

.header-btns .btn-2 {
  width: 137px;
  height: 40px;
  border-radius: 3px;
  background-color: #1290a4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1200px) {
  .header-btns .btn-2 {
    margin: 0 17px;
  }
}

.header-btns .btn-2 a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -.5px;
}

/*  Mobile Menu / Mean Menu Reset  */
.mobile-menu.mean-container .mean-bar {
  position: static;
  float: none;
  background: transparent;
}

.mobile-menu.mean-container .mean-bar .meanmenu-reveal {
  text-indent: 0 !important;
  position: relative;
  font-size: 21px;
  color: #1f1f1f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 42px;
  width: 42px;
  margin-left: auto;
  margin-right: -24px;
}

.mobile-menu.mean-container .mean-bar .mean-expand {
  font-size: 0 !important;
  padding: 0 !important;
  height: 42px;
  width: 42px;
}

.mobile-menu.mean-container .mean-bar .mean-expand:before {
  position: absolute;
  display: inline-block;
  font: normal normal normal 32px/1 'ep';
  content: "\ea1a";
  font-size: 15px;
  color: #7c7373;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mobile-menu.mean-container .mean-bar .mean-expand.mean-clicked {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.mobile-menu.mean-container .mean-bar .mean-expand:hover {
  background: transparent;
}

.mobile-menu.mean-container .mean-bar .mean-nav {
  float: none;
  margin-top: 0;
  position: absolute;
  left: 0;
  border: 0;
  z-index: 888;
  background: transparent;
}

.mobile-menu.mean-container .mean-bar .mean-nav .main-menu {
  border: 1px solid #e5e5e5;
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
  background: #fff;
  border-radius: 8px;
}

.mobile-menu.mean-container .mean-bar .mean-nav .menu-item > a {
  border-bottom: 0;
  font-size: 15px;
}

.mobile-menu.mean-container .mean-bar .mean-nav .menu-item.mean-last {
  border-bottom: 1px solid transparent;
}

.mobile-menu.mean-container .mean-bar .mean-nav .menu-dropdown {
  padding-left: 0 !important;
}

.mobile-menu.mean-container .mean-bar .mean-nav .menu-dropdown .single-item {
  padding-bottom: 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid transparent;
}

@media (min-width: 768px) {
  .mobile-menu.mean-container .mean-bar .mean-nav .menu-dropdown {
    padding-left: 40px;
  }
}

.mobile-menu.mean-container .mean-bar .mean-nav .menu-dropdown p {
  margin-bottom: 0;
}

.mobile-menu.mean-container .mean-bar .mean-nav ul li {
  float: none;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-menu.mean-container .mean-bar .mean-nav ul li a {
  color: #000;
  float: none;
  text-transform: initial;
}

/* /////////////////////////// 
    Hero Area
//////////////////////////// */
.shapes img {
  width: 100%;
  max-width: initial;
}

.hero-area {
  padding: 36px 0 50px;
}

@media (min-width: 992px) {
  .hero-area {
    padding: 115px 0 110px;
  }
}

.hero-content {
  text-align: left;
}

.hero-content h1 {
  margin-bottom: 19px;
  color: #1f1f1f;
  font-weight: 700;
  letter-spacing: -4px;
  font-size: 45px;
  line-height: 50px;
  margin-bottom: 24px;
}

@media (min-width: 480px) {
  .hero-content h1 {
    font-size: 53px;
    line-height: 60px;
    margin-bottom: 24px;
    padding-right: 10px;
  }
}

@media (min-width: 576px) {
  .hero-content h1 {
    font-size: 60px;
    line-height: 65px;
    margin-bottom: 24px;
  }
}

@media (min-width: 768px) {
  .hero-content h1 {
    padding-right: 78px;
  }
}

@media (min-width: 992px) {
  .hero-content h1 {
    padding-right: 0px;
    font-size: 55px;
    line-height: 62px;
  }
}

@media (min-width: 1200px) {
  .hero-content h1 {
    font-size: 60px;
    padding-right: 35px;
  }
}

.hero-content p {
  color: #222f3f;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 36px;
}

@media (min-width: 992px) {
  .hero-form {
    padding: 30px 0 0;
  }
}

@media (min-width: 1200px) {
  .hero-form {
    padding: 30px 75px 0 0;
  }
}

.hero-form .form-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 480px) {
  .hero-form .form-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.hero-form .form-group input {
  height: 60px;
  color: #666666;
  border-radius: 5px;
  background: #bea488;
  padding-left: 17px;
  border-color: transparent;
}

@media (min-width: 480px) {
  .hero-form .form-group input {
    margin-right: 10px;
    height: 60px;
    width: calc(100% - 187px);
  }
}

.hero-form .form-group input::-webkit-input-placeholder {
  color: #878b90;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.9px;
}

.hero-form .form-group input:-ms-input-placeholder {
  color: #878b90;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.9px;
}

.hero-form .form-group input::-ms-input-placeholder {
  color: #878b90;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.9px;
}

.hero-form .form-group input::placeholder {
  color: #878b90;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.9px;
}

.hero-form .form-group button {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -1.12px;
  border-radius: 3px;
  background-color: #bea488;
  width: 100%;
  margin-top: 10px;
  height: 50px;
  font-size: 17px;
}

@media (min-width: 480px) {
  .hero-form .form-group button {
    margin-top: 0px;
    height: 60px;
    width: 177px;
    font-size: 18px;
  }
}

.hero-form .form-text {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.32px;
  line-height: 36px;
  color: #878b90;
}

.hero-form .form-text a {
  color: #1290a4;
}

.hero-form .form-text a:hover {
  text-decoration: underline;
}

.hero-image {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1200px) {
  .hero-image img {
    max-width: 105%;
  }
}

/* /////////////////////////// 
    Feature Section
//////////////////////////// */
.feature-section {
  background-color: #272727;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 45px;
  padding-bottom: 60px;
  position: relative;
}

@media (min-width: 992px) {
  .feature-section {
    padding-top: 70px;
    padding-bottom: 120px;
  }
}

.feature-section .shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-82%);
          transform: translateY(-82%);
}

.feature-section .shape img {
  width: 100%;
}

.section-title {
  margin-bottom: 35px;
  color: #f4f4f4;
}

.section-title h2 {
  font-size: 48px;
  letter-spacing: -1px;
  line-height: 60px;
}

.section-title p {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 36px;
  padding-top: 20px;
}

@media (min-width: 992px) {
  .section-title {
    margin-bottom: 60px;
  }
}

.feature-card {
  border-radius: 5px;
  border: 1px solid #d9e4e6;
  background-color: #f4f4f4;
  padding: 35px;
}

@media (min-width: 992px) {
  .feature-card {
    padding: 25px;
  }
}

@media (min-width: 1200px) {
  .feature-card {
    padding: 35px;
  }
}

.feature-card .card-icon {
  width: 80px;
  height: 80px;
  border-radius: 500px;
  background-color: #eae2d8;
  color: #bea488;
  font-size: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 28px;
}

@media (min-width: 992px) {
  .feature-card .card-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
    margin-bottom: 38px;
  }
}

@media (min-width: 1200px) {
  .feature-card .card-icon {
    width: 80px;
    height: 80px;
    font-size: 35px;
  }
}

.feature-card .card-content h3 {
  color: #1f1f1f;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  font-size: 28px;
  font-weight: 700;
}

@media (min-width: 992px) {
  .feature-card .card-content h3 {
    font-size: 25px;
  }
}

@media (min-width: 1200px) {
  .feature-card .card-content h3 {
    font-size: 28px;
  }
}

.feature-card .card-content p {
  color: #666666;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: -0.4px;
}

@media (min-width: 992px) {
  .feature-card .card-content p {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .feature-card .card-content p {
    font-size: 17px;
  }
}

.feature-card .card-content .btn-link {
  min-width: 0;
  padding-left: 0;
  height: auto;
  color: #bea488;
}

.feature-card .card-content .btn-link i {
  margin-left: 15px;
  font-size: 10px;
  font-weight: 900;
  -webkit-transition: .4s;
  transition: .4s;
}

.feature-card .card-content .btn-link:hover {
  text-decoration: none;
}

.feature-card .card-content .btn-link:hover i {
  margin-left: 20px;
}

.feature-card:hover {
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

/* ///////////////////////////
    Content Sections
//////////////////////////// */
.content-section-01 {
  background-color: #f8f8f8;
  padding: 60px 0 0px;
}

@media (min-width: 992px) {
  .content-section-01 {
    padding: 120px 0 80px;
  }
}

.content-section-02 {
  background-color: #f8f8f8;
  padding: 40px 0 55px;
}

.content-section-03 {
  padding: 67px 0 93px;
  background-color: #fefdfd;
  position: relative;
}

.content-section-03 .shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-75%);
          transform: translateY(-75%);
}

@media (min-width: 992px) {
  .content-section-03 {
    padding: 120px 0 215px;
  }
}

.content-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-img img {
  width: 100%;
}

@media (min-width: 992px) {
  .content-img {
    padding-bottom: 0;
  }
}

.content-right-content, .content-left-content {
  padding-top: 30px;
  text-align: left;
}

@media (min-width: 576px) {
  .content-right-content, .content-left-content {
    padding-top: 0px;
  }
}

@media (min-width: 992px) {
  .content-right-content, .content-left-content {
    padding-top: 60px;
  }
}

@media (min-width: 1200px) {
  .content-right-content, .content-left-content {
    padding-top: 83px;
  }
}

.content-right-content h2, .content-left-content h2 {
  letter-spacing: -1px;
  padding-bottom: 25px;
  font-weight: 700;
  font-size: 33px;
  line-height: 44px;
}

@media (min-width: 576px) {
  .content-right-content h2, .content-left-content h2 {
    font-size: 30px;
    line-height: 36px;
  }
}

@media (min-width: 768px) {
  .content-right-content h2, .content-left-content h2 {
    font-size: 40px;
    line-height: 55px;
  }
}

@media (min-width: 992px) {
  .content-right-content h2, .content-left-content h2 {
    font-size: 48px;
    line-height: 60px;
  }
}

.content-right-content p, .content-left-content p {
  font-weight: 400;
  letter-spacing: -0.4px;
  font-size: 18px;
  line-height: 30px;
  color: #333333;
}

@media (min-width: 576px) {
  .content-right-content p, .content-left-content p {
    font-size: 17px;
    line-height: 24px;
  }
}

@media (min-width: 768px) {
  .content-right-content p, .content-left-content p {
    font-size: 20px;
    line-height: 34px;
  }
}

@media (min-width: 992px) {
  .content-right-content p, .content-left-content p {
    font-size: 21px;
    line-height: 36px;
  }
}

.content-right-content .content-bottom-part, .content-left-content .content-bottom-part {
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  margin-top: 22px;
}

.content-right-content .content-bottom-part p, .content-left-content .content-bottom-part p {
  color: #666666;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 28px;
}

@media (min-width: 576px) {
  .content-right-content .content-bottom-part p, .content-left-content .content-bottom-part p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (min-width: 768px) {
  .content-right-content .content-bottom-part p, .content-left-content .content-bottom-part p {
    font-size: 17px;
    line-height: 28px;
  }
}

.content-right-content .content-btn, .content-left-content .content-btn {
  margin-top: 25px;
}

.content-right-content .content-btn .btn, .content-left-content .content-btn .btn {
  min-width: 170px;
  height: 50px;
  border-radius: 3px;
  background-color: #bea488;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.5px;
}

.content-left-content {
  padding-top: 0;
}

.content-link {
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (min-width: 576px) {
  .content-link {
    padding-top: 18px;
  }
}

@media (min-width: 768px) {
  .content-link {
    padding-top: 35px;
  }
}

@media (min-width: 992px) {
  .content-link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 15px;
  }
}

.content-link a {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 28px;
  color: #1290a4;
}

.content-link a i {
  font-size: 11px;
  font-weight: 700;
  position: relative;
  top: 1px;
  -webkit-transition: .4s;
  transition: .4s;
  margin-left: 15px;
}

.content-link a:hover i {
  color: #272727;
  margin-left: 20px;
}

.content-list {
  padding-top: 26px;
}

@media (min-width: 768px) {
  .content-list {
    padding-top: 15px;
  }
}

@media (min-width: 992px) {
  .content-list {
    padding-top: 26px;
  }
}

.content-list li {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 32px;
  margin-bottom: 12px;
  color: #000000;
}

.content-list li span {
  font-size: inherit;
  margin-right: 18px;
}

.content-list li span i {
  font-size: inherit;
  font-weight: 900;
  color: #bea488;
  position: relative;
  top: 5px;
}

@media (min-width: 576px) {
  .content-list li {
    font-size: 17px;
    line-height: 24px;
  }
}

@media (min-width: 768px) {
  .content-list li {
    font-size: 20px;
    line-height: 34px;
  }
}

@media (min-width: 992px) {
  .content-list li {
    font-size: 21px;
    line-height: 36px;
  }
}

/* ///////////////////////////
    Pricing Section 
//////////////////////////// */
.pricing-section {
  padding-top: 45px;
  padding-bottom: 68px;
  background-color: #272727;
  position: relative;
}

.pricing-section .shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-85%);
          transform: translateY(-85%);
}

.pricing-section .section-title {
  padding-bottom: 0px;
}

.pricing-section .section-title h2 {
  color: #fff;
}

.pricing-section .section-title h6 {
  margin-top: 5px;
  color: #bdc4cc;
}

.pricing-section .section-title p {
  color: #bdc4cc;
}

@media (min-width: 992px) {
  .pricing-section {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  .pricing-section .section-title {
    padding-bottom: 20px;
  }
}

.pricing-card {
  border-top: 5px solid transparent;
  border-radius: 6px;
  padding: 24px 45px 30px;
  background-color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
  margin-bottom: 30px;
}

.pricing-card .card-head {
  padding-bottom: 18px;
}

.pricing-card .card-head h6 {
  color: #666666;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.43px;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.pricing-card .card-head h2 .small-title {
  color: #1f1f1f;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
}

.pricing-card .card-head h2 .big-txt {
  color: #1f1f1f;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 60px;
}

.pricing-card .card-head h2 .big-txt:before {
  position: absolute;
}

.pricing-card .card-head h2 .month {
  color: #1f1f1f;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.68px;
}

.pricing-card .card-head p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.6px;
  line-height: 28px;
  color: #666666;
  margin-bottom: 0;
}

.pricing-card .card-content .pricing-list li {
  color: #1f1f1f;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.42px;
  line-height: 32px;
  padding: 7px 0;
}

.pricing-card .card-content .pricing-list li i {
  width: 12px;
  height: 12px;
  font-size: 16px;
  color: #1f1f1f;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
  position: relative;
}

.pricing-card .card-content .pricing-list li.disable-opt {
  text-decoration: line-through;
  color: #8e8e8e;
}

.pricing-card .card-content .pricing-list li.disable-opt i {
  color: #8e8e8e;
}

.pricing-card .card-content p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.6px;
  line-height: 28px;
  color: #666666;
  margin-bottom: 0;
}

.pricing-card .card-badge {
  position: absolute;
  top: 30px;
  right: 45px;
  background-color: #f46f7c;
  border-radius: 500px;
  height: 26px;
  color: #fff;
  width: 83px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 992px) {
  .pricing-card .card-badge {
    width: 60px;
  }
}

@media (min-width: 480px) {
  .pricing-card .card-badge {
    width: 60px;
  }
}

@media (min-width: 768px) {
  .pricing-card .card-badge {
    width: 83px;
  }
}

@media (min-width: 1200px) {
  .pricing-card .card-badge {
    width: 83px;
  }
}

.pricing-card .card-btn {
  -webkit-transition: .4s;
  transition: .4s;
  padding-top: 33px;
  padding-bottom: 5px;
  margin-left: 1px;
}

.pricing-card .card-btn .btn--primary {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -1px;
  padding: 0 37px;
  height: 50px;
}

.pricing-card .card-btn .btn--primary:hover {
  background-color: #272727;
}

.pricing-card.active {
  border-top: 5px solid #bea488;
}

.btn--toggle-pricing {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.btn--toggle-pricing p {
  color: #fff;
}

.btn--toggle-pricing p:last-child {
  padding-right: 0;
}

.pricing-extra-info {
  margin-top: 0px;
}

.pricing-extra-info p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.32px;
}

.pricing-extra-info p1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.32px;
  color: #878b90;
}

@media (min-width: 480px) {
  .pricing-extra-info p {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .pricing-extra-info p {
    font-size: 17px;
  }
}

.pricing-extra-info span {
  color: #878b90;
  font-size: inherit;
}

.pricing-extra-info a {
  color: #fff;
  margin-left: 8px;
}

.pricing-extra-info a:hover {
  text-decoration: underline;
}

@media (min-width: 992px) {
  .pricing-extra-info {
    margin-top: 30px;
  }
}

[class*='btn--toggle-'] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 35px;
}

[class*='btn--toggle-'] p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  padding: 0 12px;
  margin-bottom: 0;
}

[class*='btn--toggle-'] span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.51px;
  text-transform: uppercase;
  color: #4eab08;
  background-color: rgba(78, 171, 8, 0.14);
  padding: 0 15px;
  border-radius: 5px;
}

[class*='btn--toggle-'] .badge--discount {
  height: 26px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 83px;
}

[class*='btn--toggle-'] .switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 25px;
  margin-bottom: 0;
}

[class*='btn--toggle-'] .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

[class*='btn--toggle-'] .slider {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #e5e5e5;
  -webkit-transition: .4s;
  transition: .4s;
}

[class*='btn--toggle-'] .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #bea488;
  -webkit-transition: .4s;
  transition: .4s;
}

[class*='btn--toggle-'] input:checked + .slider {
  background-color: #fff;
  border: 1px solid #e5e5e5;
}

[class*='btn--toggle-'] input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #fff;
          box-shadow: 0 0 1px #fff;
}

[class*='btn--toggle-'] input:checked + .slider:before {
  -webkit-transform: translateX(21px) translateY(-50%);
          transform: translateX(21px) translateY(-50%);
  background-color: #bea488;
}

[class*='btn--toggle-'] .slider.round {
  border-radius: 34px;
}

[class*='btn--toggle-'] .slider.round:before {
  border-radius: 50%;
}

/* pricng toggle */
.custom-tab-wrapper.monthly [data-monthly] {
  visibility: hidden;
}

.custom-tab-wrapper.monthly [data-monthly]:before {
  content: attr(data-monthly);
  visibility: visible;
  display: inline-block;
}

.custom-tab-wrapper.yearly [data-yearly] {
  visibility: hidden;
}

.custom-tab-wrapper.yearly [data-yearly]:before {
  content: attr(data-yearly);
  visibility: visible;
  display: inline-block;
}

/* /////////////////////////// 
    Footer Section - 06
//////////////////////////// */
.footer-section {
  padding: 50px 0;
  background-image: url('Rectangle.png');
}

@media (min-width: 768px) {
  .footer-section {
    padding: 120px 0;
  }
}

.footer-section .margin-decrese {
  margin-bottom: -30px;
}

.footer-section .col-margin {
  margin-bottom: 30px;
}

.footer-newsletter-section {
  border-bottom: 1px solid #ccc9c9;
  padding-bottom: 52px;
  margin-bottom: 60px;
}

.footer-newsletter-content {
  text-align: center;
}

.footer-newsletter-content span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 35px;
}

.footer-newsletter-content h2 {
  color: #000000;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 60px;
  margin-bottom: 10px;
}

.footer-newsletter-content p {
  color: #666666;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 36px;
}

@media (min-width: 992px) {
  .footer-newsletter-content p {
    padding: 0 20px;
  }
}

.footer-newsletter-form {
  padding: 25px 0 0;
}

.footer-newsletter-form .form-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 480px) {
  .footer-newsletter-form .form-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer-newsletter-form .form-group input {
  height: 60px;
  color: #666666;
  border-radius: 5px;
  background: #ecebeb;
  padding-left: 17px;
  border-color: transparent;
}

@media (min-width: 480px) {
  .footer-newsletter-form .form-group input {
    margin-right: 10px;
    height: 60px;
    width: calc(100% - 187px);
  }
}

.footer-newsletter-form .form-group input::-webkit-input-placeholder {
  color: #878b90;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.9px;
}

.footer-newsletter-form .form-group input:-ms-input-placeholder {
  color: #878b90;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.9px;
}

.footer-newsletter-form .form-group input::-ms-input-placeholder {
  color: #878b90;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.9px;
}

.footer-newsletter-form .form-group input::placeholder {
  color: #878b90;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.9px;
}

.footer-newsletter-form .form-group button {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -1px;
  border-radius: 3px;
  background-color: #bea488;
  width: 100%;
  margin-top: 10px;
  height: 50px;
  font-size: 17px;
}

@media (min-width: 480px) {
  .footer-newsletter-form .form-group button {
    margin-top: 0px;
    height: 60px;
    width: 177px;
    font-size: 18px;
  }
}

.footer-newsletter-form .form-text {
  color: #666666;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.43px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: center;
}

.footer-newsletter-form .form-text i {
  font-size: 14px;
  margin-right: 7px;
}

.single-footer .footer-text p {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 28px;
}

@media (min-width: 992px) {
  .single-footer .footer-text p {
    padding-right: 22px;
  }
}

.footer-title {
  margin-bottom: 25px;
}

@media (min-width: 992px) {
  .footer-title {
    margin-bottom: 40px;
  }
}

.footer-title h6 {
  color: #666666;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
}

.footer-text {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 28px;
}

.footer-social-list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .footer-social-list {
    margin-top: 40px;
  }
}

.footer-social-list li {
  margin-right: 18px;
}

.footer-social-list li a {
  color: #000;
  font-size: 18px;
}

.footer-list li a {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 20px;
  padding-top: 12px;
  padding-bottom: 7px;
  color: #1f1f1f;
}

.footer-list li:first-child a {
  padding-top: 0;
}

.footer-list li:last-child a {
  padding-bottom: 0;
}
/*# sourceMappingURL=style.css.map */





/* From another Shade template */
/* /////////////////////////// 
          CLIENT
//////////////////////////// */
.client-section {
  padding-top: 10px;
}

.client-title h2 {
  color: #333333;
  font-weight: 400;
  margin-bottom: 25px;
  text-align: center;
  font-size: 24px;
  line-height: 38px;
}

.client-brand-wrapper {
  padding-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}

@media (min-width: 992px) {
  .client-brand-wrapper {
    padding-bottom: 50px;
  }
}

.client-brand-wrapper .single-brand {
  margin: 0 20px;
  padding-bottom: 15px;
  padding-top: 15px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.8;
  -webkit-transition: .4s;
  transition: .4s;
}

@media (min-width: 1200px) {
  .client-brand-wrapper .single-brand {
    -ms-flex-preferred-size: calc(20% - 40px);
        flex-basis: calc(20% - 40px);
    max-width: calc(20% - 40px);
  }
}

.client-brand-wrapper .single-brand:first-child {
  margin-left: 0;
}

.client-brand-wrapper .single-brand:last-child {
  margin-right: 0;
}

