@charset "UTF-8";
/*==============================================
  Project:   Hornbill - App Landing Page
  Build:     Bootstrap 4.0.0
  Author:    ThemeShef
  Version:   1.0
 ===============================================*/
/*==============================================
  Table of Contents
  01. BASE CSS
      a. PRELOADER CSS
      b. UTILITY CSS
      
  02. HEADER CSS   
  03. BANNER CSS   
  04. SERVICES CSS   
  05. FEATURES CSS   
  06. GALLERY CSS   
  07. ABOUT CSS   
  08. PROMOTIONS CSS   
  09. PRICING CSS   
  10. VIDEO CSS   
  11. TEAM MEMBERS CSS   
  12. REVIEWS CSS   
  13. BLOG CSS   
  14. CONTACT CSS   
  15. FOOTER CSS   
  16. SIDEBAR CSS   
  17. BUTTONS CSS   
  18. GRADIENTS & COLORS CSS   
  19. BACKGROUNDS CSS   
  20. ANIMATIONS CSS   
  21. MODAL POPUP CSS   
  22. RESPONSIVE CSS   
 ===============================================*/
/* ==============================================
 * BASE CSS
 * ===============================================*/
/* ======================== 
 * PRELOADER CSS 
 * ====================== */
@keyframes pulse-opacity {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1034;
}
#loader-wrapper #loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1034;
}
#loader-wrapper #loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e74c3c;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader-wrapper #loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f9c922;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
#loader-wrapper .preloader-logo {
  position: absolute;
  left: 50%;
  z-index: 1036;
  top: 50%;
  margin-left: -200px;
  max-width: 400px;
  margin-top: -60px;
}

@media (max-width: 767px) {
  #loader-wrapper #loader {
    top: 40%;
  }
  #loader-wrapper .preloader-logo {
    top: 50%;
    margin-left: -100px;
    max-width: 200px;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}
.loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #222222;
  z-index: 1032;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.loader-section.section-left {
  left: 0;
}
.loader-section.section-right {
  right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

/* JavaScript Turned Off */
.no-js #loader-wrapper {
  display: none;
}

/* ================================ 
 * UTILITY CSS 
 * ============================= */
html, body {
  height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #787878;
  overflow-x: hidden;
}

a:hover,
a:focus {
  text-decoration: none;
}

button:focus,
a:focus,
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.twitter:hover {
  color: #fff;
  border-color: #55ACEF;
  background-color: #55ACEF;
}

.facebook:hover {
  color: #fff;
  border-color: #3B579D;
  background-color: #3B579D;
}

.dribbble:hover {
  color: #fff;
  border-color: #ff3987;
  background-color: #ff3987;
}

.behance:hover {
  color: #fff;
  border-color: #0056FF;
  background-color: #0056FF;
}

.instagram:hover {
  color: #fff;
  border-color: #505FD2;
  background-color: #505FD2;
}

.play-icon {
  max-width: 25px;
}

.relative {
  position: relative;
}

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

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

.img-404 {
  margin: 0 auto;
  display: block;
  max-width: 800px;
  width: 100%;
}

.section-heading {
  text-align: center;
  position: relative;
  z-index: 3;
}
.section-heading h2 {
  font-size: 45px;
  text-transform: capitalize;
  color: #0B5E96;
  font-weight: 700;
}

.heading-lines {
  margin: 15px auto 20px;
  width: 160px;
}
.heading-lines span.line {
  width: 60px;
  height: 2px;
  background: #0B5E96;
  display: block;
  border-radius: 6px;
  float: left;
  margin-top: 10px;
}
.heading-lines span.bi {
  color: #0B5E96;
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin: 0 10px;
  float: left;
}

.section-heading.text-white h2, .section-heading.text-white p, .section-heading.text-white .heading-lines span.bi {
  color: #fff;
}
.section-heading.text-white .heading-lines span.line {
  background-color: #fff;
}

.promo-heading h2 {
  font-size: 40px;
  font-weight: 100;
  color: #585b60;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.promo-icon li {
  display: inline-block;
  margin-right: 8px;
}
.promo-icon li .fa {
  font-size: 45px;
  color: #ddd;
}

.promo-heading.text-white {
  color: #fff;
}
.promo-heading.text-white h2,
.promo-heading.text-white .promo-icon li .fa {
  color: #fff;
}

.faq-heading {
  text-align: center;
}
.faq-heading h4 {
  font-size: 28px;
  color: #585b60;
  margin-top: 20px;
  font-weight: 100;
}

#faq_accordion .item {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border-radius: 6px;
}
#faq_accordion .item p {
  padding: 20px 20px 30px 50px;
  color: #787878;
  margin: 0;
}
#faq_accordion .item a {
  font-size: 18px;
  color: #585b60;
  display: block;
  overflow: hidden;
  padding: 15px;
  margin-top: 5px;
  background: #fcfcfc;
  color: #0B5E96;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}
#faq_accordion .item a span.bi {
  float: left;
  font-size: 30px;
  margin-right: 20px;
}
#faq_accordion .item a.collapsed {
  background: transparent;
  color: #787878;
}

.faq-phones {
  position: relative;
}
.faq-phones .phone-left {
  float: left;
  width: 50%;
}
.faq-phones .phone-center {
  position: absolute;
  top: -28px;
  left: 23%;
  z-index: 3;
  width: 54%;
}
.faq-phones .phone-right {
  float: right;
  width: 50%;
}

/* margin-top */
.m-top-5 {
  margin-top: 5px;
}

.m-top-10 {
  margin-top: 10px;
}

.m-top-15 {
  margin-top: 15px;
}

.m-top-20 {
  margin-top: 20px;
}

.m-top-25 {
  margin-top: 25px;
}

.m-top-30 {
  margin-top: 30px;
}

.m-top-35 {
  margin-top: 35px;
}

.m-top-40 {
  margin-top: 40px;
}

.m-top-45 {
  margin-top: 45px;
}

.m-top-50 {
  margin-top: 50px;
}

.m-top-60 {
  margin-top: 60px;
}

.m-top-70 {
  margin-top: 70px;
}

.m-top-80 {
  margin-top: 80px;
}

.m-top-90 {
  margin-top: 90px;
}

.m-top-100 {
  margin-top: 100px;
}

.m-top-125 {
  margin-top: 125px;
}

.m-top-150 {
  margin-top: 150px;
}

/* margin-bottom */
.m-bot-5 {
  margin-bottom: 5px;
}

.m-bot-10 {
  margin-bottom: 10px;
}

.m-bot-15 {
  margin-bottom: 15px;
}

.m-bot-20 {
  margin-bottom: 20px;
}

.m-bot-25 {
  margin-bottom: 25px;
}

.m-bot-30 {
  margin-bottom: 30px;
}

.m-bot-35 {
  margin-bottom: 35px;
}

.m-bot-40 {
  margin-bottom: 40px;
}

.m-bot-45 {
  margin-bottom: 45px;
}

.m-bot-50 {
  margin-bottom: 50px;
}

.m-bot-60 {
  margin-bottom: 60px;
}

.m-bot-70 {
  margin-bottom: 70px;
}

.m-bot-80 {
  margin-bottom: 80px;
}

.m-bot-90 {
  margin-bottom: 90px;
}

.m-bot-100 {
  margin-bottom: 100px;
}

.m-bot-125 {
  margin-bottom: 125px;
}

.m-bot-150 {
  margin-bottom: 150px;
}

/* padding top */
.p-top-5 {
  padding-top: 5px;
}

.p-top-10 {
  padding-top: 10px;
}

.p-top-15 {
  padding-top: 15px;
}

.p-top-20 {
  padding-top: 20px;
}

.p-top-25 {
  padding-top: 25px;
}

.p-top-30 {
  padding-top: 30px;
}

.p-top-35 {
  padding-top: 35px;
}

.p-top-40 {
  padding-top: 40px;
}

.p-top-45 {
  padding-top: 45px;
}

.p-top-50 {
  padding-top: 50px;
}

.p-top-60 {
  padding-top: 60px;
}

.p-top-70 {
  padding-top: 70px;
}

.p-top-80 {
  padding-top: 80px;
}

.p-top-90 {
  padding-top: 90px;
}

.p-top-100 {
  padding-top: 100px;
}

.p-top-125 {
  padding-top: 125px;
}

.p-top-150 {
  padding-top: 150px;
}

/* padding-bottom */
.p-bot-5 {
  padding-bottom: 5px;
}

.p-bot-10 {
  padding-bottom: 10px;
}

.p-bot-15 {
  padding-bottom: 15px;
}

.p-bot-20 {
  padding-bottom: 20px;
}

.p-bot-25 {
  padding-bottom: 25px;
}

.p-bot-30 {
  padding-bottom: 30px;
}

.p-bot-35 {
  padding-bottom: 35px;
}

.p-bot-40 {
  padding-bottom: 40px;
}

.p-bot-45 {
  padding-bottom: 45px;
}

.p-bot-50 {
  padding-bottom: 50px;
}

.p-bot-60 {
  padding-bottom: 60px;
}

.p-bot-70 {
  padding-bottom: 70px;
}

.p-bot-80 {
  padding-bottom: 80px;
}

.p-bot-90 {
  padding-bottom: 90px;
}

.p-bot-100 {
  padding-bottom: 100px;
}

.p-bot-125 {
  padding-bottom: 125px;
}

.p-bot-150 {
  padding-bottom: 150px;
}

@media only screen and (min-width: 970px) {
  .p-lg-left-30 {
    padding-left: 30px;
  }

  .p-lg-right-30 {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  /* margin-top */
  .m-sm-top-0 {
    margin-top: 0;
  }

  .m-sm-top-5 {
    margin-top: 5px;
  }

  .m-sm-top-10 {
    margin-top: 10px;
  }

  .m-sm-top-15 {
    margin-top: 15px;
  }

  .m-sm-top-20 {
    margin-top: 20px;
  }

  .m-sm-top-25 {
    margin-top: 25px;
  }

  .m-sm-top-30 {
    margin-top: 30px;
  }

  .m-sm-top-35 {
    margin-top: 35px;
  }

  .m-sm-top-40 {
    margin-top: 40px;
  }

  .m-sm-top-45 {
    margin-top: 45px;
  }

  .m-sm-top-50 {
    margin-top: 50px;
  }

  .m-sm-top-60 {
    margin-top: 60px;
  }

  .m-sm-top-70 {
    margin-top: 70px;
  }

  .m-sm-top-80 {
    margin-top: 80px;
  }

  .m-sm-top-90 {
    margin-top: 90px;
  }

  .m-sm-top-100 {
    margin-top: 100px;
  }

  /* margin-bottom */
  .m-sm-bot-0 {
    margin-bottom: 0;
  }

  .m-sm-bot-5 {
    margin-bottom: 5px;
  }

  .m-sm-bot-10 {
    margin-bottom: 10px;
  }

  .m-sm-bot-15 {
    margin-bottom: 15px;
  }

  .m-sm-bot-20 {
    margin-bottom: 20px;
  }

  .m-sm-bot-25 {
    margin-bottom: 25px;
  }

  .m-sm-bot-30 {
    margin-bottom: 30px;
  }

  .m-sm-bot-35 {
    margin-bottom: 35px;
  }

  .m-sm-bot-40 {
    margin-bottom: 40px;
  }

  .m-sm-bot-45 {
    margin-bottom: 45px;
  }

  .m-sm-bot-50 {
    margin-bottom: 50px;
  }

  .m-sm-bot-60 {
    margin-bottom: 60px;
  }

  .m-sm-bot-70 {
    margin-bottom: 70px;
  }

  .m-sm-bot-80 {
    margin-bottom: 80px;
  }

  .m-sm-bot-90 {
    margin-bottom: 90px;
  }

  .m-sm-bot-100 {
    margin-bottom: 100px;
  }

  /* padding top */
  .p-sm-top-0 {
    padding-top: 0;
  }

  .p-sm-top-5 {
    padding-top: 5px;
  }

  .p-sm-top-10 {
    padding-top: 10px;
  }

  .p-sm-top-15 {
    padding-top: 15px;
  }

  .p-sm-top-20 {
    padding-top: 20px;
  }

  .p-sm-top-25 {
    padding-top: 25px;
  }

  .p-sm-top-30 {
    padding-top: 30px;
  }

  .p-sm-top-35 {
    padding-top: 35px;
  }

  .p-sm-top-40 {
    padding-top: 40px;
  }

  .p-sm-top-45 {
    padding-top: 45px;
  }

  .p-sm-top-50 {
    padding-top: 50px;
  }

  .p-sm-top-60 {
    padding-top: 60px;
  }

  .p-sm-top-70 {
    padding-top: 70px;
  }

  .p-sm-top-80 {
    padding-top: 80px;
  }

  .p-sm-top-90 {
    padding-top: 90px;
  }

  .p-sm-top-100 {
    padding-top: 100px;
  }

  /* padding-bottom */
  .p-sm-bot-0 {
    padding-bottom: 0;
  }

  .p-sm-bot-5 {
    padding-bottom: 5px;
  }

  .p-sm-bot-10 {
    padding-bottom: 10px;
  }

  .p-sm-bot-15 {
    padding-bottom: 15px;
  }

  .p-sm-bot-20 {
    padding-bottom: 20px;
  }

  .p-sm-bot-25 {
    padding-bottom: 25px;
  }

  .p-sm-bot-30 {
    padding-bottom: 30px;
  }

  .p-sm-bot-35 {
    padding-bottom: 35px;
  }

  .p-sm-bot-40 {
    padding-bottom: 40px;
  }

  .p-sm-bot-45 {
    padding-bottom: 45px;
  }

  .p-sm-bot-50 {
    padding-bottom: 50px;
  }

  .p-sm-bot-60 {
    padding-bottom: 60px;
  }

  .p-sm-bot-70 {
    padding-bottom: 70px;
  }

  .p-sm-bot-80 {
    padding-bottom: 80px;
  }

  .p-sm-bot-90 {
    padding-bottom: 90px;
  }

  .p-sm-bot-100 {
    padding-bottom: 100px;
  }
}
/* ===================================
 * HEADER CSS
 =================================== */
.hornbill-navbar {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 0;
}
.hornbill-navbar .background {
  padding: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}
.hornbill-navbar .navbar-brand {
  width: 150px;
  padding: 0;
  height: 52px;
  background: url(../img/holipay-logo-white.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  font-size: 0;
}
.hornbill-navbar .hornbill-nav li a {
  font-size: 17px;
  color: #f6f6f6;
  padding: 20px 30px;
  font-weight: 300;
  text-transform: capitalize;
}
.hornbill-navbar .hornbill-nav li a.active, .hornbill-navbar .hornbill-nav li a:hover {
  color: #fff;
}
.hornbill-navbar.navbar-expand-lg .hornbill-nav li a {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}
.hornbill-navbar.fixed-top {
  background: transparent;
}
.hornbill-navbar.fixed-top:hover, .hornbill-navbar.fixed-top:focus {
  background: transparent;
}
.hornbill-navbar.background .navbar-brand {
  width: 120px;
  transition: all 0.2s ease-in-out;
}
.hornbill-navbar.bg-damn .hornbill-nav li a.active, .hornbill-navbar.bg-damn .hornbill-nav li a:hover, .hornbill-navbar.bg-damn.background .hornbill-nav li a.active, .hornbill-navbar.bg-damn.background .hornbill-nav li a:hover {
  background: #005ea0;
}
.hornbill-navbar.bg-victoria .hornbill-nav li a.active, .hornbill-navbar.bg-victoria .hornbill-nav li a:hover, .hornbill-navbar.bg-victoria.background .hornbill-nav li a.active, .hornbill-navbar.bg-victoria.background .hornbill-nav li a:hover {
  background: #3d3467;
}
.hornbill-navbar.bg-grass .hornbill-nav li a, .hornbill-navbar.bg-grass.background .hornbill-nav li a {
  color: #fff;
}
.hornbill-navbar.bg-grass .hornbill-nav li a.active, .hornbill-navbar.bg-grass .hornbill-nav li a:hover, .hornbill-navbar.bg-grass.background .hornbill-nav li a.active, .hornbill-navbar.bg-grass.background .hornbill-nav li a:hover {
  background: #8BC34A;
}
.hornbill-navbar.bg-grass .hornbill-nav li a {
  color: #ddd;
}
.hornbill-navbar.bg-ripe .hornbill-nav li a, .hornbill-navbar.bg-ripe.background .hornbill-nav li a {
  color: #fff;
}
.hornbill-navbar.bg-ripe .hornbill-nav li a.active, .hornbill-navbar.bg-ripe .hornbill-nav li a:hover, .hornbill-navbar.bg-ripe.background .hornbill-nav li a.active, .hornbill-navbar.bg-ripe.background .hornbill-nav li a:hover {
  background: #4CAF50;
}
.hornbill-navbar.bg-ripe .hornbill-nav li a {
  color: #ddd;
}
.hornbill-navbar.bg-sky .hornbill-nav li a, .hornbill-navbar.bg-sky.background .hornbill-nav li a {
  color: #fff;
}
.hornbill-navbar.bg-sky .hornbill-nav li a.active, .hornbill-navbar.bg-sky .hornbill-nav li a:hover, .hornbill-navbar.bg-sky.background .hornbill-nav li a.active, .hornbill-navbar.bg-sky.background .hornbill-nav li a:hover {
  background: #00bcd4;
}
.hornbill-navbar.bg-sky .hornbill-nav li a {
  color: #fff;
}
.hornbill-navbar.bg-splash .hornbill-nav li a.active, .hornbill-navbar.bg-splash .hornbill-nav li a:hover, .hornbill-navbar.bg-splash.background .hornbill-nav li a.active, .hornbill-navbar.bg-splash.background .hornbill-nav li a:hover {
  background: #357a92;
}
.hornbill-navbar.bg-wine .hornbill-nav li a.active, .hornbill-navbar.bg-wine .hornbill-nav li a:hover, .hornbill-navbar.bg-wine.background .hornbill-nav li a.active, .hornbill-navbar.bg-wine.background .hornbill-nav li a:hover {
  background: #E91E63;
}
.hornbill-navbar.bg-sharp .hornbill-nav li a.active, .hornbill-navbar.bg-sharp .hornbill-nav li a:hover, .hornbill-navbar.bg-sharp.background .hornbill-nav li a.active, .hornbill-navbar.bg-sharp.background .hornbill-nav li a:hover {
  background: #276ca4;
}
.hornbill-navbar.bg-lighter.background .hornbill-nav li a {
  color: #222;
}
.hornbill-navbar.bg-lighter.background .hornbill-nav li a.active, .hornbill-navbar.bg-lighter.background .hornbill-nav li a:hover {
  color: #fff;
  background: #242424;
}
.hornbill-navbar.bg-lighter.background .navbar-brand {
  background: url(../img/logo-bright.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.hornbill-navbar.bg-sunshine .hornbill-nav li a {
  color: #fff;
}
.hornbill-navbar.bg-sunshine.background .hornbill-nav li a {
  color: #fff;
}
.hornbill-navbar.bg-sunshine.background .hornbill-nav li a.active, .hornbill-navbar.bg-sunshine.background .hornbill-nav li a:hover {
  color: #fff;
  background: #FB7993;
}
.hornbill-navbar.bg-gray .hornbill-nav li a {
  color: #585b60;
}
.hornbill-navbar.bg-gray .hornbill-nav li a.active, .hornbill-navbar.bg-gray .hornbill-nav li a:hover {
  color: #fff;
  background: #585b60;
}
.hornbill-navbar.bg-gray .navbar-brand {
  background: url(../img/logo-dark.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.hornbill-navbar.bg-lighter.background .navbar-brand {
  background: url(../img/logo-dark.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}

/* =====================================
 * BANNER CSS
 * ===================================== */
.banner-one-gadgets {
  position: relative;
  padding-bottom: 100px;
}
.banner-one-gadgets .banner-one-phone-black {
  z-index: 3;
  max-width: 360px;
  max-height: 550px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -15px;
}
.banner-one-gadgets .banner-one-iwatch {
  position: absolute;
  right: 50px;
  bottom: 40px;
  max-width: 280px;
  z-index: 3;
  display: block;
}
.banner-one-gadgets .banner-one-macbook-air {
  margin-bottom: 8px;
}

.banner-left .banner-heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  text-transform: capitalize;
  color: #fff;
}
.banner-left .banner-heading.mid {
  font-size: 60px;
  line-height: 80px;
}
.banner-left .banner-heading.big {
  font-size: 80px;
  line-height: 80px;
}
.banner-left .mini-heading {
  color: #fff;
  font-size: 24px;
  line-height: 32px;
}
.banner-left .heading-light {
  color: #fff;
  font-weight: 100;
  font-size: 55px;
  line-height: 65px;
}
.banner-left .normal-texts {
  color: #fff;
  font-size: 18px;
}
.banner-left .banner-search-form {
  max-width: 400px;
}
.banner-left .banner-search-form .input-group .form-control {
  height: 50px;
  border: none;
  padding-left: 20px;
  color: #333;
  font-weight: 300;
  font-size: 16px;
}
.banner-left .banner-search-form .input-group .form-control:focus {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.banner-left .banner-search-form .btn-search-form {
  border: none;
  height: 50px;
  background: #fff;
  padding-right: 20px;
  cursor: pointer;
  color: #005ea0;
  font-size: 24px;
}
.banner-left .banner-search-form .btn-search-form:hover, .banner-left .banner-search-form .btn-search-form:focus {
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.12) inset;
}

.link-socials li {
  display: inline-block;
  margin-right: 6px;
}
.link-socials li a {
  font-size: 22px;
  color: #dbdbdb;
  width: 45px;
  display: inline-block;
  border-radius: 50px;
  border: 1px solid #dbdbdb;
  height: 45px;
  text-align: center;
  padding-top: 10px;
  transition: all 0.1s ease-in-out;
}
.link-socials li a:hover {
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
}
.link-socials li .default:hover {
  background-color: #2FC8EC;
  border-color: #2FC8EC;
  color: #fff;
}

.carousel.smart .carousel-indicators li {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 15px;
  background: transparent;
  border: 1px solid #fff;
}
.carousel.smart .carousel-indicators li.active {
  background: #fff;
}
.carousel.smart .carousel-shares {
  z-index: 3;
  position: absolute;
  bottom: 20px;
  left: 30px;
}
.carousel.smart .carousel-shares li {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  margin-right: 6px;
  text-transform: uppercase;
  font-weight: 700;
}
.carousel.smart .carousel-shares li a {
  color: #fff;
}
.carousel.smart .smart-caption {
  color: #fff;
  position: absolute;
  bottom: 33px;
  left: 165px;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
}
.carousel.smart .smart-caption p {
  margin: 0;
}
.carousel.smart .smart-carousel-style {
  position: absolute;
  bottom: 28px;
  font-size: 33px;
  width: 45px;
  color: #888888;
  height: 35px;
  background-color: #fff;
  text-align: center;
}
.carousel.smart .smart-carousel-style:hover, .carousel.smart .smart-carousel-style:focus {
  color: #fff;
  background-color: #888;
}
.carousel.smart .smart-carousel-style.prev {
  left: 60px;
  border-radius: 16px 0 0 16px;
}
.carousel.smart .smart-carousel-style.next {
  left: 105px;
  border-radius: 0 16px 16px 0;
  border-left: 1px solid #888888;
}

.carousel-control-next,
.carousel-control-prev {
  width: 8%;
}
.carousel-control-next img,
.carousel-control-prev img {
  max-width: 35px;
}

.carousel-indicators {
  bottom: 60px;
}
.carousel-indicators li {
  cursor: pointer;
}

.banner-one:after,
.banner-three:after,
.banner-six:after,
.banner-seven:after,
.banner-ten:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.banner-one {
  padding-top: 130px;
  padding-bottom: 100px;
  display: block;
  position: relative;
}
.banner-one:after {
  background: url(../img/banner/banner-one-angle.png) center center/100% 100% no-repeat;
  height: 124px;
}

.banner-two {
  position: relative;
}

.creative-buttons {
  margin: 30px 0;
}
.creative-buttons li {
  display: inline-block;
}

.banner-three {
  position: relative;
  padding-bottom: 200px;
}
.banner-three:after {
  background: url(../img/banner/banner-three-angle.png) center center/100% 100% no-repeat;
  height: 160px;
}

.banner-four-gadgets .img-bubbles {
  position: absolute;
  right: -8%;
  top: 12%;
  max-width: 550px;
}
.banner-four-gadgets .img-phone-hands {
  position: absolute;
  right: -3%;
  bottom: 0;
  max-width: 325px;
}

.banner-five a.bg-white {
  color: #585b60;
}
.banner-five .promo-icon li .fa {
  color: #6f7187;
}

.banner-six {
  position: relative;
  padding-bottom: 200px;
}
.banner-six:after {
  height: 200px;
  background: url(../img/banner/banner-six-angle.png) center center/100% 100% no-repeat;
}

.banner-seven {
  position: relative;
  padding-bottom: 200px;
}
.banner-seven:after {
  height: 100px;
  background: url(../img/banner/banner-seven-angle.png) center center/100% 100% no-repeat;
}

.banner-eight .promo-icon li .fa {
  color: #3c2752;
}

.banner-eight-form {
  background: url(../img/banner/banner-8-ipad-hand.png) center center/100% 100% no-repeat;
  padding: 52px 135px 0;
  width: 550px;
  position: absolute;
  bottom: -3px;
  right: 0;
  height: 560px;
}
.banner-eight-form .form-heading {
  margin-bottom: 30px;
  text-transform: capitalize;
  font-weight: 700;
}
.banner-eight-form .form-control {
  border: 1px solid #E3E3E3;
  font-size: 15px;
  color: #888;
  height: 40px;
}
.banner-eight-form.style-two {
  background: #fff;
  padding: 45px 30px;
  border-radius: 16px;
  position: relative;
  right: auto;
  bottom: auto;
  height: auto;
  width: auto;
}

.banner-nine .play-video {
  cursor: pointer;
  border-radius: 50px;
  border: none;
  width: 60px;
  height: 60px;
  background-color: #fff;
  font-size: 25px;
  text-align: center;
  padding-right: 0px;
}
.banner-nine .carousel-indicators {
  bottom: 30px;
}
.banner-nine .carousel.smart .smart-carousel-style.prev {
  right: 105px;
  left: auto;
}
.banner-nine .carousel.smart .smart-carousel-style.next {
  right: 60px;
  left: auto;
}

.banner-ten {
  position: relative;
  padding-bottom: 0;
  margin-bottom: 60px;
}
.banner-ten:before {
  height: 150px;
  background: url(../img/banner/banner-ten-angle.png) center center/100% 100% no-repeat;
}
.banner-twelve .img-twelve-bubbles {
  position: absolute;
  top: 12%;
  right: 0;
  z-index: 1;
  width: 55%;
}
.banner-twelve .img-twelve-phone {
  max-width: 100%;
  max-width: 350px;
}

.banner-fourteen .features-list .single-feature:hover {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.banner-fourteen .features-list .single-feature .feature-icon span.bi {
  color: #fff;
  font-size: 45px;
}
.banner-fourteen .features-list .single-feature .feature-icon span.bi-support {
  color: #fff;
  font-size: 36px;
  margin-left: -15px;
  margin-right: 30px;
}
.banner-fourteen .features-list .single-feature.text-white h4 {
  font-weight: 400;
}

/* ===================================
 * SERVICES CSS
 =================================== */
.single-service {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
  border-bottom: 4px solid transparent;
  border-radius: 6px;
  transition: all 0.1s ease-in-out;
}
.single-service:hover {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
  border-color: #005ea0;
  border-radius: 6px;
}
.single-service p {
  margin: 0;
}
.single-service h3 {
  font-size: 28px;
  color: #333333;
  text-transform: capitalize;
  font-weight: 300;
  margin: 24px auto 12px;
}
.single-service.style-two {
  text-align: left;
}
.single-service.style-two h3 {
  margin: 0 0 15px;
}
.single-service.style-two .icon {
  float: left;
  width: 60px;
  height: 120px;
  display: block;
  margin-right: 20px;
  margin-top: -10px;
}
.single-service.style-two:hover .icon {
  animation: smooth-pulse 0.5s 1 linear;
}
.single-service.style-three {
  text-align: center;
  padding: 25px 15px;
  border-radius: 12px;
}
.single-service.style-three .icon {
  font-size: 60px;
}
.single-service.style-three h3 {
  font-size: 24px;
}
.single-service.style-three p {
  font-size: 15px;
}

/* ==============================================
 * FEATURES CSS
 * ============================================ */
.features-logo {
  height: 150px;
}

.features-heading {
  width: 100%;
}

.features-list {
  margin-top: 40px;
}
.features-list .single-feature {
  padding: 15px;
  border-bottom: 3px solid transparent;
}
.features-list .single-feature:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  border-radius: 6px;
  border-color: #0B5E96;
  transition: all 0.3s ease-in-out;
}
.features-list .single-feature h4 {
  font-size: 22px;
  font-weight: 300;
  color: #000033;
}
.features-list .single-feature p {
  font-size: 15px;
}
.features-list .single-feature .feature-icon span.bi {
  float: left;
  font-size: 35px;
  margin-bottom: 50px;
  margin-right: 15px;
  width: 35px;
  color: #0B5E96;
}
.features-list .single-feature.text-white h4 {
  color: #fff;
  text-transform: capitalize;
  font-weight: 100;
}
.features-list.hover-none:hover {
  box-shadow: none;
  border-color: transparent;
  background-color: transparent;
}

.feature-phone img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

/*  feature style two */
.features-list.right .single-feature {
  text-align: right;
}
.features-list.right .single-feature .feature-icon span.bi {
  float: right;
  margin-right: 0;
  margin-left: 15px;
}

/* ==============================================
 * GALLERY CSS
 * ============================================ */
.swiper-3d-gallery {
  width: 100%;
}
.swiper-3d-gallery .swiper-slide {
  background-position: center;
  background-size: 100% 100%;
  width: 260px;
  height: 460px;
}
.swiper-3d-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background: url(../plugins/swiper/img/swiper-prev-icon.png) center center/100% 100% no-repeat;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background: url(../plugins/swiper/img/swiper-next-icon.png) center center/100% 100% no-repeat;
}

/* =====================================
 * ABOUT CSS
 * ================================== */
.capability-phone {
  margin-right: 50px;
  margin-top: -30px;
}

.download-phones {
  position: relative;
  margin-right: 0;
}
.download-phones .download-device-mobile {
  position: absolute;
  max-width: 170px;
  bottom: -30px;
  z-index: 6;
  left: 25%;
}
.download-phones .download-device-tab {
  position: absolute;
  max-width: 254px;
  bottom: -22px;
  left: -30px;
  z-index: 3;
}
.download-phones .download-device-mackbook {
  display: block;
}
.download-phones .smart-iwatch {
  margin: -30px auto 0;
  max-width: 460px;
  display: block;
  width: 100%;
}

.more-features-phones {
  position: relative;
}
.more-features-phones .phone-slide {
  background: url("../img/feature-phone-blank.png") center center/100% 100% no-repeat;
  padding: 86px 19px 87px;
  position: absolute;
  max-width: 340px;
  top: -70px;
  z-index: 3;
  left: 0;
}
.more-features-phones .phone-slide .phone-slide-gallery .swiper-slide {
  max-height: 560px;
}
.more-features-phones .phone-slide .phone-slide-gallery .swiper-slide img {
  height: 100%;
  width: 100%;
}
.more-features-phones .more-features-phone-two {
  padding-right: 30px;
  float: right;
}

.more-features-list .more-single-feature {
  margin-bottom: 30px;
  display: block;
  clear: both;
  width: 100%;
}
.more-features-list .more-single-feature p {
  margin: 0;
}
.more-features-list .more-single-feature h4 {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 18px;
  color: #282828;
}
.more-features-list .more-single-feature .icon {
  margin-bottom: 40px;
  margin-right: 10px;
  text-align: center;
  color: #7F67F3;
  float: left;
  width: 60px;
}
.more-features-list .more-single-feature .icon span {
  font-size: 45px;
}

/* ---- Circle Progress ------ */
.circle-progress-list {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
}
.circle-progress-list li {
  text-align: center;
  display: block;
  float: left;
  width: 20%;
}
.circle-progress-list li .circle {
  margin: 6px 6px 20px;
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 1.2;
  width: 100%;
}
.circle-progress-list li .circle canvas {
  vertical-align: top;
}
.circle-progress-list li .circle strong {
  position: absolute;
  text-align: center;
  line-height: 40px;
  font-weight: 100;
  font-size: 30px;
  color: #fff;
  width: 100%;
  top: 29%;
  left: 0;
}
.circle-progress-list li .circle strong i {
  font-weight: normal;
  font-style: normal;
  font-size: 0.6em;
}
.circle-progress-list li .circle p {
  text-transform: capitalize;
  margin: 25px auto 0;
  font-size: 18px;
  color: #fff;
}

/* ==================================
 * PROMOTIONS CSS
 * ================================ */
.promo-top {
  overflow: hidden;
}

.promo-phones {
  text-align: left;
  position: relative;
  max-width: 420px;
  display: block;
  height: 100%;
}
.promo-phones .promo-device-mobile {
  position: absolute;
  bottom: -79px;
  width: 220px;
  z-index: 3;
  right: 0px;
}
.promo-phones .promo-device-tab {
  position: absolute;
  width: 360px;
  bottom: -67px;
  z-index: 1;
  left: 0;
}

.promo-subscribe h2 {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
}
.promo-subscribe h5 {
  font-weight: 100;
  color: #B0B0B6;
}
.promo-subscribe .subscribe-form {
  margin: 50px auto 20px;
  position: relative;
  max-width: 445px;
}
.promo-subscribe .subscribe-form .form-control {
  padding: 0px 30px;
  font-weight: 300;
  font-size: 20px;
  height: 50px;
  border: none;
}
.promo-subscribe .subscribe-form .btn-subscribe {
  position: absolute;
  border-radius: 50px;
  padding: 0 35px;
  cursor: pointer;
  height: 52px;
  top: -1px;
  right: 0;
}

.promo-download-phone img {
  margin-bottom: -1px;
}

.promo-download-texts {
  padding-top: 95px;
  text-align: center;
}
.promo-download-texts h2 {
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 45px;
}
.promo-download-texts h5 {
  font-weight: 300;
  font-size: 18px;
}

/* ==================================
 * PRICING CSS
 * ================================ */
.single-price {
  margin: 0 8px;
  padding: 45px 30px;
  background-color: #fff;
  text-align: center;
  border-radius: 12px;
}
.single-price h4 {
  z-index: 9;
  font-size: 20px;
  text-transform: capitalize;
}
.single-price .icon {
  position: relative;
  margin-bottom: 40px;
}
.single-price .price {
  position: relative;
  font-weight: bold;
  margin: 20px auto 30px;
  display: block;
}
.single-price .price .one {
  font-size: 30px;
  position: absolute;
  top: 0;
}
.single-price .price .two {
  font-size: 60px;
  letter-spacing: -2px;
  line-height: 60px;
  margin-left: 20px;
  font-weight: 700;
}
.single-price .price .three {
  font-size: 30px;
  font-weight: 700;
}
.single-price .pricing-list {
  margin-bottom: 40px;
  text-align: center;
}
.single-price .pricing-list li {
  margin-bottom: 12px;
}
.single-price .pricing-list li p {
  margin: 0;
  font-size: 16px;
}
.single-price .btn {
  padding: 14px 50px;
}
.single-price.middle {
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.12);
  margin-left: 0;
  margin-top: -40px;
  margin-right: 0;
}
.single-price.style-two {
  position: relative;
}
.single-price.style-two:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/icons/pattern-white-smoke.png) no-repeat 0 0/100% auto;
}
.single-price.style-two.middle:before {
  background: url(../img/icons/pattern-dark-smoke.png) no-repeat 0 0/100% auto;
}
.single-price.style-two h4,
.single-price.style-two .price,
.single-price.style-two .pricing-list,
.single-price.style-two a.btn {
  position: relative;
}
.single-price.style-two .icon {
  font-size: 45px;
  width: 120px;
  height: 120px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-width: 1px;
  border-radius: 50%;
  position: relative;
  border-style: solid;
  transform: rotate(20deg);
  border-color: white white transparent transparent;
}
.single-price.style-two .icon:before {
  width: 100%;
  height: 102%;
  position: absolute;
  content: "";
  border-radius: 50%;
  left: 1px;
  border-width: 1px;
  border-style: solid;
  border-color: white white transparent transparent;
  transform: rotate(-35deg);
  top: -2px;
}
.single-price.style-two .icon:after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50px;
  position: absolute;
  bottom: 12px;
  right: 12px;
}
.single-price.style-two .icon span.bi {
  margin-top: 40px;
  display: block;
  transform: rotate(-20deg);
}
.single-price.style-two.light {
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
}
.single-price.style-two.light .icon {
  border-color: transparent #9E9E9E transparent transparent;
}
.single-price.style-two.light .icon:before {
  border-color: #9E9E9E #9E9E9E transparent transparent;
}
.single-price.style-two.light .icon:after {
  background: #9E9E9E;
}
.single-price.style-two.light.middle:before {
  opacity: 0.65;
}
.single-price.style-two.text-white .icon {
  border-color: transparent #fff transparent transparent;
}
.single-price.style-two.text-white .icon:before {
  border-color: #fff #fff transparent transparent;
}
.single-price.style-two.text-white .icon:after {
  background: #fff;
}
.single-price.style-two.text-white.middle:before {
  opacity: 1;
}
.single-price.text-white .price {
  color: #fff;
}
.single-price.bg-acid a.btn {
  background-color: #609dff;
  color: #fff;
  padding: 18px 50px;
  box-shadow: 0 5px 15px #317bfb;
}
.single-price.bg-damn a.btn {
  background-color: #8266f3;
  color: #fff;
  padding: 18px 50px;
  box-shadow: 0 5px 15px #5b3cda;
}
.single-price.bg-sunshine a.btn {
  background-color: #fa7297;
  color: #fff;
  padding: 18px 50px;
  box-shadow: 0 5px 15px #de718f;
}

/* ==================================
 * VIDEO CSS
 * =============================== */
.video-section .card-group .card {
  border: none;
  border-radius: 0;
}

.video {
  display: table;
  width: 100%;
  height: 100%;
}
.video .video-inner {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.video .play-video-icon {
  margin: 0 auto;
  display: block;
  color: #7f67f3;
  background-color: #ffffff;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  padding-top: 4px;
  padding-left: 14px;
  font-size: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.video .play-video-icon:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  transition: all 0.3s ease-in-out;
  width: 80px;
  height: 80px;
  border: 3px solid #ffffff;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.85);
}
.video .play-video-icon:hover:before {
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.85);
}

.about-video {
  padding-left: 45px;
  padding-right: 60px;
}
.about-video .features-list {
  margin-right: 15%;
}
.about-video .features-list .single-feature {
  border: none;
}
.about-video .features-list .single-feature:hover, .about-video .features-list .single-feature:focus {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border-color: transparent;
}
.about-video .features-list .single-feature .feature-icon .bi {
  font-size: 50px;
  margin-right: 25px;
}
.about-video .features-list .single-feature:nth-child(2) .feature-icon .bi {
  font-size: 37px;
  margin-left: -5px;
  margin-right: 30px;
}
.about-video .features-list .single-feature p {
  color: #b1b1b1;
}
.about-video.text-white .single-feature .feature-icon span.bi,
.about-video.text-white .promo-heading.text-white p,
.about-video.text-white .features-list .single-feature p {
  color: #fff;
}
.about-video.text-white .promo-heading h2 {
  font-weight: 700;
}
.about-video.text-white .single-feature.text-white h4 {
  font-weight: 400;
}
.about-video.bg-dark.text-white .promo-heading.text-white p,
.about-video.bg-dark.text-white .features-list .single-feature p {
  color: #b1b1b1;
}
.about-video.style-two {
  padding-right: 0;
}
.about-video.style-two .features-list {
  margin-right: 10%;
}

.features-list.hover-none .single-feature:hover, .features-list.hover-none .single-feature:focus {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border-color: transparent;
}

/* modal video plugin scss */
@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.modal-video-close {
  opacity: 0;
}
.modal-video-close .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  -moz-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  -o-transform: translate(0, 100px);
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 940px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: table;
}

.modal-video-inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -ms-transition: -ms-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -35px;
  right: -35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}
.modal-video-close-btn:before {
  transform: rotate(45deg);
}
.modal-video-close-btn:after {
  transform: rotate(-45deg);
}
.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}

/* ==================================
 * TEAM MEMBERS CSS
 * ================================ */
.team-member-special {
  position: relative;
  padding-left: 80px;
}
.team-member-special .section-heading {
  text-align: left;
  max-width: 530px;
}
.team-member-special .section-heading .heading-lines {
  margin: 15px 0 20px;
}

.team-members-list {
  position: relative;
  height: 500px;
  margin-left: 10%;
}
.team-members-list .single-member {
  position: absolute;
  right: 0;
  z-index: 3;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
}
.team-members-list .single-member .member-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  border: 2px solid #fff;
  background: #fff;
}
.team-members-list .single-member .member-img img {
  width: 100%;
  display: block;
  text-align: center;
}
.team-members-list .single-member .member-hover {
  position: absolute;
  top: -325px;
  z-index: 90;
  width: 230px;
  display: none;
  text-align: center;
}
.team-members-list .single-member .member-hover .border-bottom {
  width: 100%;
  height: 65px;
  background: transparent;
}
.team-members-list .single-member .member-hover .img img {
  display: block;
  margin: 0 auto 25px;
  width: 120px;
  height: 120px;
  overflow: hidden;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  border: 2px solid #fff;
  background: #fff;
}
.team-members-list .single-member .member-hover h4 {
  font-size: 20px;
  margin: 0 auto 4px;
}
.team-members-list .single-member .member-hover p {
  font-size: 13px;
  margin: 0;
}
.team-members-list .single-member .member-hover .member-hover-inner {
  background-color: #fff;
  border-radius: 12px;
  position: relative;
  padding: 30px 20px 20px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.35);
}
.team-members-list .single-member .member-hover .member-hover-inner:after, .team-members-list .single-member .member-hover .member-hover-inner:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.team-members-list .single-member .member-hover .member-hover-inner:after {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #FFFFFF;
  border-width: 20px;
  margin-left: -20px;
}
.team-members-list .single-member:hover .member-hover {
  display: block;
}
.team-members-list .single-member:nth-child(1):hover .member-hover, .team-members-list .single-member:nth-child(7):hover .member-hover, .team-members-list .single-member:nth-child(10):hover .member-hover, .team-members-list .single-member:nth-child(14):hover .member-hover {
  left: -77px;
}
.team-members-list .single-member:nth-child(9):hover .member-hover, .team-members-list .single-member:nth-child(12):hover .member-hover {
  left: -64px;
}
.team-members-list .single-member:nth-child(3):hover .member-hover, .team-members-list .single-member:nth-child(4):hover .member-hover, .team-members-list .single-member:nth-child(11):hover .member-hover, .team-members-list .single-member:nth-child(13):hover .member-hover {
  left: -85px;
}
.team-members-list .single-member:nth-child(2):hover .member-hover, .team-members-list .single-member:nth-child(5):hover .member-hover, .team-members-list .single-member:nth-child(6):hover .member-hover, .team-members-list .single-member:nth-child(8):hover .member-hover {
  left: -52px;
}
.team-members-list .single-member:nth-child(1) {
  left: -20px;
  top: 40px;
}
.team-members-list .single-member:nth-child(2) {
  left: 3%;
  top: 40%;
  z-index: 6;
  width: 130px;
  height: 130px;
}
.team-members-list .single-member:nth-child(3) {
  top: 8%;
  left: 17%;
  width: 60px;
  height: 60px;
}
.team-members-list .single-member:nth-child(4) {
  height: 60px;
  width: 60px;
  top: 35%;
  z-index: 6;
  left: 25%;
}
.team-members-list .single-member:nth-child(5) {
  width: 130px;
  height: 130px;
  top: -4%;
  left: 34%;
}
.team-members-list .single-member:nth-child(6) {
  width: 130px;
  height: 130px;
  top: 45%;
  left: 41%;
  z-index: 7;
}
.team-members-list .single-member:nth-child(7) {
  top: 12%;
  left: 53%;
  z-index: 6;
}
.team-members-list .single-member:nth-child(8) {
  width: 130px;
  height: 130px;
  top: -50%;
  left: 50%;
}
.team-members-list .single-member:nth-child(9) {
  top: 30%;
  left: 64%;
  width: 100px;
  height: 100px;
  z-index: 6;
}
.team-members-list .single-member:nth-child(10) {
  width: 80px;
  height: 80px;
  top: 67%;
  left: 67%;
  z-index: 6;
}
.team-members-list .single-member:nth-child(11) {
  width: 60px;
  height: 60px;
  top: -12%;
  left: 63%;
}
.team-members-list .single-member:nth-child(12) {
  width: 100px;
  height: 100px;
  top: -35%;
  left: 80%;
}
.team-members-list .single-member:nth-child(13) {
  width: 60px;
  height: 60px;
  top: 48%;
  left: 83%;
  z-index: 6;
}
.team-members-list .single-member:nth-child(14) {
  width: 80px;
  height: 80px;
  top: 3%;
  left: 76%;
}

.member-social {
  margin-top: 15px;
}
.member-social li {
  display: inline-block;
  margin: 0 3px;
}
.member-social li a {
  font-size: 20px;
  color: #965bf1;
  display: block;
  padding: 3px;
}
.member-social li a:hover {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  transition: all 0.3s;
}
.member-social li a .fa-facebook {
  color: #3B5998;
}
.member-social li a .fa-twitter {
  color: #2DAAE2;
}
.member-social li a .fa-github {
  color: #171515;
}
.member-social li a .fa-dribbble {
  color: #E74D89;
}
.member-social li a .fa-instagram {
  color: #E72154;
}

/* style two */
.panel {
  position: relative;
  -webkit-perspective: 600px;
  -moz-perspective: 600px;
}
.panel .front {
  text-align: center;
  height: inherit;
  position: absolute;
  top: 0;
  z-index: 900;
  text-align: center;
  -webkit-transform: rotateX(0deg) rotateY(0deg);
  -moz-transform: rotateX(0deg) rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.panel .back {
  text-align: center;
  height: inherit;
  position: absolute;
  top: 0;
  z-index: 1000;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.single-team-member {
  height: 303px;
  border-radius: 12px;
}
.single-team-member.panel .back {
  width: 100%;
  height: 100%;
  padding-top: 30px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.75);
}
.single-team-member.panel.flip .front {
  z-index: 900;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
}
.single-team-member.panel.flip .back {
  z-index: 1000;
  -webkit-transform: rotateX(0deg) rotateY(0deg);
  -moz-transform: rotateX(0deg) rotateY(0deg);
}
.single-team-member .front .img-fluid {
  border-radius: 12px;
  width: 100%;
}
.single-team-member .back h4 {
  color: #fff;
}
.single-team-member .back h6 {
  color: #fff;
  font-size: 14px;
  margin: 0;
}
.single-team-member .back .image-box {
  display: block;
  margin: 0 auto 35px;
  width: 120px;
  height: 120px;
  overflow: hidden;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  border: 2px solid #fff;
  background: #fff;
}
.single-team-member .back .image-box img {
  width: 100%;
}
.single-team-member .back .social {
  margin: 20px auto 0;
  text-align: center;
}
.single-team-member .back .social li {
  display: inline-block;
}
.single-team-member .back .social li a {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  margin: 0 3px;
  transition: all 0.1s ease-in-out;
}
.single-team-member .back .social li:hover a {
  color: #fff;
}
.single-team-member .back.bg-victoria h6 {
  color: #968ebb;
}
.single-team-member .back.bg-victoria .social li a {
  color: #796eab;
}
.single-team-member .back.bg-victoria .social li a:hover {
  color: #fff;
}
.single-team-member .back.bg-sunshine {
  box-shadow: 0 0 30px rgba(252, 166, 110, 0.85);
}
.single-team-member .back.bg-grass {
  box-shadow: 0 0 30px rgba(164, 235, 153, 0.95);
}
.single-team-member .back.bg-acid {
  box-shadow: 0 0 30px rgba(155, 207, 255, 0.95);
}

/* ==================================
 * REVIEWS CSS
 * ================================ */
.single-review .card-header {
  padding-bottom: 28px;
}
.single-review .card-header h4 {
  font-size: 18px;
  margin: 12px 0 0 0;
}
.single-review .card-header .client-img {
  width: 45px;
  margin-right: 10px;
  height: 45px;
  border-radius: 50px;
  float: left;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.single-review .card-body p {
  padding: 25px 10px 10px;
  position: relative;
  font-style: italic;
  font-size: 16px;
  z-index: 3;
  margin: 0;
}
.single-review .card-body p:before, .single-review .card-body p:after {
  font-family: fontawesome;
  position: absolute;
}
.single-review .card-body p:before {
  content: "";
  font-size: 30px;
  z-index: -1;
  left: -5px;
  top: -5px;
}
.single-review .card-body p:after {
  content: "";
  font-size: 45px;
  bottom: -5px;
  right: 0;
}
.single-review.bgc-sushi .card-header h4,
.single-review.bgc-sushi .card-body p {
  color: #d3fba5;
}
.single-review.bgc-sushi .card-header h4:before, .single-review.bgc-sushi .card-header h4:after,
.single-review.bgc-sushi .card-body p:before,
.single-review.bgc-sushi .card-body p:after {
  color: #81b14b;
}
.single-review.bgc-victoria .card-header h4,
.single-review.bgc-victoria .card-body p {
  color: #9a95b3;
}
.single-review.bgc-victoria .card-header h4:before, .single-review.bgc-victoria .card-header h4:after,
.single-review.bgc-victoria .card-body p:before,
.single-review.bgc-victoria .card-body p:after {
  color: #3d365e;
}
.single-review.bgc-jupiter .card-header h4,
.single-review.bgc-jupiter .card-body p {
  color: #a4c0cd;
}
.single-review.bgc-jupiter .card-header h4:before, .single-review.bgc-jupiter .card-header h4:after,
.single-review.bgc-jupiter .card-body p:before,
.single-review.bgc-jupiter .card-body p:after {
  color: #59717d;
}
.single-review.bgc-smoky .card-header h4,
.single-review.bgc-smoky .card-body p {
  color: #89849a;
}
.single-review.bgc-smoky .card-header h4:before, .single-review.bgc-smoky .card-header h4:after,
.single-review.bgc-smoky .card-body p:before,
.single-review.bgc-smoky .card-body p:after {
  color: #3d3a4a;
}
.single-review.bgc-green .card-header h4,
.single-review.bgc-green .card-body p {
  color: #8bde8e;
}
.single-review.bgc-green .card-header h4:before, .single-review.bgc-green .card-header h4:after,
.single-review.bgc-green .card-body p:before,
.single-review.bgc-green .card-body p:after {
  color: #47a24a;
}
.single-review.bg-damn .card-header h4,
.single-review.bg-damn .card-body p {
  color: #c4b8fb;
}
.single-review.bg-damn .card-header h4:before, .single-review.bg-damn .card-header h4:after,
.single-review.bg-damn .card-body p:before,
.single-review.bg-damn .card-body p:after {
  color: #7e5dd8;
}

.hornbill-swiper-review-box {
  background-color: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 60px 40px;
  position: relative;
  background: transparent url(../img/slide-review-bg.png) no-repeat center center/100% 100%;
}
.hornbill-swiper-review-box .hornbill-swiper-review-box-inner {
  margin-left: 30px;
  margin-right: 30px;
}
.hornbill-swiper-review-box h4 {
  text-transform: uppercase;
  font-size: 20px;
  color: #7f67f3;
}
.hornbill-swiper-review-box h6 {
  font-size: 13px;
  color: #9d9d9d;
  font-style: italic;
}
.hornbill-swiper-review-box .img {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: block;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}
.hornbill-swiper-review-box .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.hornbill-swiper-review-box .review-texts {
  margin: 30px 60px;
}
.hornbill-swiper-review-box .rating li {
  display: inline-block;
  color: #FBE812;
  font-size: 20px;
  margin: 0 2px;
}
.hornbill-swiper-review-box .swiper-pagination {
  left: 47%;
}
.hornbill-swiper-review-box .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  width: 12px;
  height: 12px;
  margin-right: 3px;
}
.hornbill-swiper-review-box .swiper-pagination .swiper-pagination-bullet.active {
  background: #fff;
}
.hornbill-swiper-review-box.style-two {
  background: transparent;
}
.hornbill-swiper-review-box.style-two .img {
  width: 60px;
  height: 60px;
  border: 2px solid #65647b;
  padding: 3px;
  background-color: #bdbdbd;
  overflow: hidden;
}
.hornbill-swiper-review-box.style-two h4 {
  color: #fff;
}
.hornbill-swiper-review-box.style-two h6 {
  font-weight: 300;
}
.hornbill-swiper-review-box.style-two .rating li {
  font-size: 12px;
  margin: 0 1px;
}
.hornbill-swiper-review-box.style-two .review-texts {
  margin: 0 0 45px;
  background: rgba(255, 255, 255, 0.15);
  color: #b6b6c1;
  padding: 15px;
  font-size: 16px;
  border-radius: 6px;
  position: relative;
}
.hornbill-swiper-review-box.style-two .review-texts:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: rgba(255, 255, 255, 0.15);
  border-width: 20px;
  margin-left: -20px;
}

/* ==================================
 * BLOG CSS
 * ================================ */
.single-blog {
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  border: none;
  text-align: center;
}
.single-blog .single-blog-img {
  border-radius: 6px 6px 0 0;
}
.single-blog .card-body {
  position: relative;
  padding-top: 45px;
}
.single-blog .card-body .card-title a {
  font-size: 30px;
  color: #5e5d60;
  font-weight: bold;
  line-height: 40px;
}
.single-blog .btn-category {
  padding: 7px 28px;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0 auto;
  position: absolute;
  text-transform: capitalize;
  top: -15px;
  left: 50%;
  text-align: center;
  margin-left: -45px;
}
.single-blog .card-footer {
  background: #fff;
  border-radius: 0 0 12px 12px;
}
.single-blog .card-footer .author {
  float: left;
  width: 70%;
}
.single-blog .card-footer .author a {
  color: #585858;
  float: left;
}
.single-blog .card-footer .author .author-img {
  width: 30px;
  height: 30px;
  display: block;
  overflow: hidden;
  float: left;
  margin-right: 15px;
  border-radius: 50px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.single-blog .card-footer .comments {
  float: right;
}
.single-blog .card-footer .comments a {
  color: #585858;
}
.single-blog .card-footer .details {
  float: right;
}
.single-blog .card-footer .details a {
  letter-spacing: 2px;
  font-size: 18px;
  display: inline-block;
  color: #333;
  font-weight: 400;
}
.single-blog .card-footer .details a i.fa {
  margin-left: 8px;
}
.single-blog .card-footer .details a:hover {
  color: #7f67f3;
}
.single-blog .card-footer .details a:hover i.fa {
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}
.single-blog:hover {
  margin-top: -10px;
}
.single-blog:hover .card-footer {
  background-color: #F4FBFC;
}
.single-blog.more-radius {
  border-radius: 16px;
  box-shadow: 0 0px 1px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: all 0.1s ease-in-out;
}
.single-blog.more-radius .card-footer {
  border-color: #eee;
}
.single-blog.more-radius .single-blog-img {
  border-radius: 16px 16px 0 0;
}
.single-blog.more-radius:hover {
  margin-top: 0;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.18);
}
.single-blog.more-radius:hover .card-footer {
  background-color: #fff;
}
.single-blog.style-two {
  border: none;
}
.single-blog.style-two .single-blog-img {
  max-height: 100%;
  border-radius: 12px 12px 0 0;
}
.single-blog.style-two .single-blog-img.radius {
  border-radius: 12px;
}
.single-blog.style-two .card-body .card-title {
  margin-bottom: 1em;
}
.single-blog.style-two .card-title a {
  font-size: 26px;
  font-weight: 700;
  color: #757575;
}
.single-blog.style-two .btn-category {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.22);
  border-radius: 50px;
  letter-spacing: 0;
}
.single-blog.style-two.text-white .card-body .card-title a,
.single-blog.style-two.text-white .card-body .card-title a:hover,
.single-blog.style-two.text-white .card-img-overlay .card-title a,
.single-blog.style-two.text-white .card-img-overlay .card-title a:hover {
  color: #fff;
}
.single-blog.style-two.text-white:hover .card-body .card-title a,
.single-blog.style-two.text-white:hover .card-img-overlay .card-title a {
  color: #fff;
}
.single-blog.style-two.text-white .card-title a:hover {
  opacity: 0.9;
}
.single-blog.style-two:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  margin-top: 0;
}
.single-blog.style-two.overlay-victoria:before {
  border-radius: 12px;
}
.single-blog.style-two .card-img-overlay .btn-category {
  position: relative;
  left: auto;
  top: auto;
  margin: 0 auto 22px;
}
.single-blog.style-two.bgc-green .btn-category {
  background: #4CAF50;
}
.single-blog.style-two.bgc-green .info {
  color: #82da85;
}
.single-blog.style-two.bgc-java .btn-category {
  background: #009688;
}
.single-blog.style-two.bgc-java .info {
  color: #82da85;
}
.single-blog.style-two.bgc-victoria .btn-category {
  background: #494076;
}
.single-blog.style-two.bgc-victoria .info {
  color: #6e62a5;
}
.single-blog.style-two.bgc-jupiter .btn-category {
  background: #607D8B;
}
.single-blog.style-two.bgc-jupiter .info {
  color: #8ba6b3;
}
.single-blog.style-two.bgc-sushi .btn-category {
  background: #8bc34a;
}
.single-blog.style-two.bgc-sushi .info {
  color: #bfef89;
}
.single-blog.style-two.bgc-java .btn-category {
  background: #009688;
}
.single-blog.style-two.bgc-java .info {
  color: #77d6cd;
}
.single-blog.style-two.bgc-damn .btn-category {
  background: #7F67F3;
}
.single-blog.style-two.bgc-damn .info {
  color: #8a8794;
}
.single-blog.style-two.bgc-smoky .btn-category {
  background: #464254;
}
.single-blog.style-two.bgc-smoky .info {
  color: #8a8794;
}

/* Single blog post */
.single-post-details .single-post-heading {
  text-align: center;
}
.single-post-details .single-post-heading .btn-cat {
  font-size: 12px;
  padding: 10px 28px;
  border-radius: 16px 0 16px 0;
}
.single-post-details .single-post-heading .blog-big-heading {
  color: #fff;
  font-size: 54px;
  font-weight: 700;
  line-height: 70px;
}
.single-post-details .single-post-heading .blog-big-text {
  color: #fff;
  font-size: 23px;
  line-height: 35px;
  font-style: italic;
}
.single-post-details .single-post-heading .read_more {
  text-transform: capitalize;
  font-size: 20px;
  line-height: 24px;
  text-decoration: underline;
  font-weight: 700;
  color: #fff;
}
.single-post-details .m-top-minus {
  margin-top: -147px;
}
.single-post-details .single-post-contents {
  background-color: #fff;
  border: 1px solid #E3E3E3;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}
.single-post-details .single-post-contents .post-contents-heading .post-infos {
  border-bottom: 1px solid #E3E3E3;
}
.single-post-details .single-post-contents .post-contents-heading .post-infos .info-left {
  float: left;
  width: 25%;
  border-right: 1px solid #E3E3E3;
  padding: 30px;
}
.single-post-details .single-post-contents .post-contents-heading .post-infos .info-left .info-link .icon i {
  float: left;
  display: block;
  margin: 3px 6px 0 0;
}
.single-post-details .single-post-contents .post-contents-heading .post-infos .info-center {
  float: left;
  width: 50%;
  text-align: center;
  margin: 0 auto;
  display: block;
}
.single-post-details .single-post-contents .post-contents-heading .post-infos .info-center .author h4 {
  margin-top: 15px;
  font-size: 20px;
  text-transform: capitalize;
}
.single-post-details .single-post-contents .post-contents-heading .post-infos .info-center .author p {
  font-size: 15px;
}
.single-post-details .single-post-contents .post-contents-heading .post-infos .info-center .author .auth-img {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -40px;
  border-radius: 50px;
  display: block;
  overflow: hidden;
  background: #fff;
  border: 3px solid #fff;
}
.single-post-details .single-post-contents .post-contents-heading .post-infos .info-right {
  float: right;
  width: 25%;
  border-left: 1px solid #E3E3E3;
  padding: 30px;
}
.single-post-details .single-post-contents .post-contents-heading .post-infos .info-right .info-link .icon i {
  float: right;
  display: block;
  margin: 3px 0 0 6px;
}
.single-post-details .single-post-contents .post-contents-heading .post-infos .info-link {
  color: #787878;
  display: block;
}
.single-post-details .single-post-contents .post-contents-heading .post-infos .info-link .icon {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.single-post-details .single-post-contents .post-contents-heading .post-infos .info-link .texts {
  display: block;
}
.single-post-details .single-post-contents .post-contents-heading .post-infos .info-link:hover, .single-post-details .single-post-contents .post-contents-heading .post-infos .info-link:focus {
  color: #212529;
}
.single-post-details .single-post-contents .post-contents-heading .info-more {
  width: 100%;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid #e3e3e3;
}
.single-post-details .single-post-contents .post-contents-heading .info-more li {
  display: inline-block;
  font-size: 16px;
  margin: 0 12px;
}
.single-post-details .single-post-contents .post-content-box {
  margin-left: 12%;
  margin-right: 12%;
}
.single-post-details .single-post-contents .post-contents h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 52px;
  margin: 60px 0 35px;
}
.single-post-details .single-post-contents .post-contents h3 {
  font-weight: 700;
  font-size: 36px;
  margin-top: 40px;
  margin-bottom: 15px;
}
.single-post-details .single-post-contents .post-contents p {
  line-height: 30px;
  font-size: 18px;
}
.single-post-details .single-post-contents .post-contents p span.special {
  font-size: 60px;
  display: inline-block;
  font-weight: 700;
  float: left;
  margin-top: 10px;
  line-height: 45px;
  margin-right: 6px;
  color: #7F67F3;
}
.single-post-details .single-post-contents .post-contents blockquote {
  font-size: 40px;
  line-height: 54px;
  padding: 30px 20px;
  text-align: center;
  font-style: italic;
  margin: 0;
  font-weight: 100;
}
.single-post-details .single-post-contents .post-contents .tags {
  margin-top: 60px;
  margin-bottom: 60px;
}
.single-post-details .single-post-contents .post-contents .tags span.hd {
  font-size: 18px;
  font-weight: 700;
  margin-right: 6px;
}
.single-post-details .single-post-contents .post-contents .tags li {
  display: inline-block;
  margin-bottom: 6px;
}
.single-post-details .single-post-contents .post-contents .tags li a {
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 50px;
}
.single-post-details .single-post-contents .info-more-bottom {
  border-top: 1px solid #E3E3E3;
  text-align: center;
  border-bottom: 1px solid #E3E3E3;
  padding: 0 12%;
}
.single-post-details .single-post-contents .info-more-bottom li {
  width: 33.33%;
  float: left;
  display: block;
}
.single-post-details .single-post-contents .info-more-bottom li a {
  padding: 20px 0;
  color: #585b60;
  display: inline-block;
}
.single-post-details .single-post-contents .info-more-bottom li.like {
  padding: 10px 0 0 0;
  text-align: left;
}
.single-post-details .single-post-contents .info-more-bottom li.like a,
.single-post-details .single-post-contents .info-more-bottom li.like button {
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border: 1px solid #787878;
  border-radius: 50px;
  font-size: 30px;
}
.single-post-details .single-post-contents .info-more-bottom li.like a:hover,
.single-post-details .single-post-contents .info-more-bottom li.like button:hover {
  color: #fff;
  border-color: #766cf4;
  background-color: #766cf4;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.45);
}
.single-post-details .single-post-contents .info-more-bottom li.comments {
  text-align: center;
}
.single-post-details .single-post-contents .info-more-bottom li.comments span {
  font-size: 24px;
  font-weight: 700;
  color: #787878;
  display: block;
  padding: 20px 0;
}
.single-post-details .single-post-contents .info-more-bottom li.share {
  text-align: right;
}
.single-post-details .single-post-contents .comments-list .media .comment-avatar {
  width: 80px;
  height: 80px;
  margin-right: 16px;
  border: 2px solid #fff;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
}
.single-post-details .single-post-contents .comments-list .media .media-body .comment-info h4 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}
.single-post-details .single-post-contents .comments-list .media .media-body .comment-info h4 small {
  font-size: 13px;
  font-weight: 300;
  margin-left: 10px;
}
.single-post-details .single-post-contents .comments-list .media .media-body .comment-reply {
  font-size: 16px;
  color: #9E9E9E;
  font-weight: 400;
  margin: 10px 0 35px;
  display: inline-block;
}
.single-post-details .single-post-contents .comments-list .media .media-body .comment-reply .fa {
  transform: rotate(180deg);
}
.single-post-details .single-post-contents .comments-list .media .media-body .comment-reply:hover {
  color: #7F67F3;
}
.single-post-details .single-post-contents .comments-list .media .media-body .media .comment-avatar {
  width: 60px;
  height: 60px;
}
.single-post-details .single-post-contents .form-respond .heading {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 700;
}
.single-post-details .single-post-contents .form-respond input.form-control {
  border-radius: 50px;
  height: 50px;
  padding: 20px;
  font-size: 18px;
  font-weight: 300;
}
.single-post-details .single-post-contents .form-respond textarea.form-control {
  border-radius: 16px;
  height: 250px;
  font-weight: 300;
  padding: 20px;
  font-size: 18px;
  margin-top: 15px;
}
.single-post-details .single-post-contents .form-respond .btn-respond {
  height: 50px;
  padding: 0 35px;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 15px;
}

/* Pagination */
.page-nav-prev,
.page-nav-next {
  margin: 0;
  padding: 15px 30px;
  font-size: 18px;
  color: #585b60;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
}
.page-nav-prev:hover, .page-nav-prev:focus,
.page-nav-next:hover,
.page-nav-next:focus {
  color: #222;
}

.page-current {
  font-size: 18px;
  font-weight: 400;
}

.page-nav-prev:before {
  content: "";
  font-family: fontawesome;
  position: absolute;
  top: 15px;
  left: 12px;
}

.page-nav-prev:hover:before {
  left: 8px;
}

.page-nav-next:before {
  content: "";
  font-family: fontawesome;
  position: absolute;
  top: 15px;
  right: 12px;
}

.page-nav-next:hover:before {
  right: 8px;
}

.card-columns.column-two {
  -webkit-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 2rem;
  column-gap: 2rem;
}
.card-columns.column-two .card {
  margin-bottom: 35px;
}
.card-columns.column-two .card.single-blog {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.card-columns.column-three {
  -webkit-column-gap: 2rem;
  column-gap: 2rem;
}
.card-columns.column-three .card {
  margin-bottom: 35px;
}
.card-columns.column-three .card.single-blog {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.card-columns.column-three .card .card-footer .details a i.fa {
  margin-left: 5px;
}

/* ==================================
 * CONTACT CSS
 * ================================ */
.contact-section {
  /* background-image: url(../img/bg-map.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
}

#contact .card-group .card {
  border: none;
  border-radius: 0;
}

.map {
  width: 48%;
  float: left;
}
.map .map-inner {
  top: 8%;
  left: 10%;
  width: 80%;
  padding-top: 0;
  height: 100%;
  position: absolute;
}
.map .map-inner .map-info {
  width: 260px;
  background-color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  margin: 0 auto 10px;
  display: block;
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  border: 1px solid #e8e8e8;
}
.map .map-inner .map-info:after, .map .map-inner .map-info:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.map .map-inner .map-info:after {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #FFFFFF;
  border-width: 30px;
  margin-left: -30px;
}
.map .map-inner .map-info:before {
  border-color: rgba(194, 225, 245, 0);
  border-top-color: #e8e8e8;
  border-width: 32px;
  margin-left: -32px;
}
.map .map-inner .map-pin {
  display: block;
  text-align: center;
  position: relative;
  margin: 0 auto;
}
.map .map-inner .map-pin img {
  max-width: 55px;
  margin-top: 50px;
  margin-bottom: 22px;
}
.map.default #google_map {
  height: 100%;
  width: 100%;
}
.map.default .map-inner .map-pin {
  top: 20%;
}
.map.full #google_map {
  height: 800px;
  width: 100%;
}

.map-info-list {
  margin-top: 15px;
  text-align: left;
  margin-left: 10px;
}
.map-info-list li {
  margin-bottom: 7px;
}
.map-info-list li span {
  width: 20px;
  float: left;
  margin-top: 6px;
  margin-right: 12px;
  font-size: 19px;
}
.map-info-list li:nth-child(2) span {
  font-size: 12px;
  margin-top: 10px;
}

.contact {
  width: 52%;
  float: right;
  overflow: hidden;
}
.contact .mini-container {
  max-width: 500px;
  padding-left: 60px;
  position: relative;
}
.contact .hornbill-contact-form {
  position: relative;
  z-index: 3;
}
.contact .hornbill-contact-form .form-group input.form-control {
  height: 50px;
  padding: 0 20px;
}
.contact .hornbill-contact-form .form-group textarea.form-control {
  height: 150px;
  padding: 20px;
  border-radius: 12px;
}
.contact .hornbill-contact-form .form-group .help-block.with-errors {
  font-size: 14px;
  color: #e91e63;
  margin-left: 22px;
  font-weight: 400;
}
.contact .hornbill-contact-form .btn {
  height: 50px;
  padding: 12px 50px;
}
.contact .hornbill-contact-form .btn.disabled {
  cursor: no-drop;
}
.contact:after {
  content: "";
  background-image: url(../img/icons/pattern-zigzag-icon.png);
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  position: absolute;
  background-repeat: no-repeat;
}

.help-block.with-errors {
  font-size: 14px;
  color: #e91e63;
  font-weight: 400;
}

/* style tow */
.contact-section.style-two {
  position: relative;
}

.map.full {
  width: 100%;
  float: none;
  position: relative;
}

.contact-style-two {
  max-width: 780px;
  margin: 0 auto;
  display: block;
  position: relative;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.33);
  border-left: 15px solid #7C69F3;
  margin-top: -350px;
  z-index: 3;
  background-color: #fff;
}
.contact-style-two:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/icons/pattern-zigzag-icon.png);
  background-repeat: no-repeat;
  background-position: right top;
}
.contact-style-two .heading {
  position: relative;
  margin-bottom: 30px;
}
.contact-style-two .heading h2 {
  font-size: 30px;
  text-transform: capitalize;
}
.contact-style-two .heading p {
  font-size: 18px;
}

.hornbill-contact-form-two {
  position: relative;
}
.hornbill-contact-form-two input.form-control,
.hornbill-contact-form-two textarea.form-control {
  border-top: none;
  border-left: none;
  height: 45px;
  padding-left: 0px;
  background: transparent;
  border-right: none;
  border-bottom: 3px solid #E9E5E5;
  border-radius: 0px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
  color: #333;
}
.hornbill-contact-form-two input.form-control:focus,
.hornbill-contact-form-two textarea.form-control:focus {
  border-bottom-color: #7C69F3;
}
.hornbill-contact-form-two textarea.form-control {
  transition: all 0.3s ease-in-out;
}
.hornbill-contact-form-two textarea.form-control:focus {
  height: 120px;
}
.hornbill-contact-form-two .btn {
  padding: 12px 50px;
  margin-top: 10px;
  box-shadow: 0 5px 15px #5b3cda;
}
.hornbill-contact-form-two .btn.disabled {
  cursor: no-drop;
}

/* style three */
.contact-style-three {
  background-color: #fff;
  padding: 45px 45px 45px 0;
  border-radius: 6px;
  position: relative;
}
.contact-style-three .heading h2 {
  text-transform: capitalize;
}
.contact-style-three .left-info {
  color: #fff;
  padding: 45px 30px;
  background-color: #0F3F6F;
  float: left;
  width: 48%;
  left: -20%;
  height: 86%;
  position: absolute;
}
.contact-style-three .left-info .heading h2 {
  margin-bottom: 20px;
}
.contact-style-three .left-info ul.social {
  position: absolute;
  bottom: 10%;
  left: 45px;
}
.contact-style-three .left-info ul.social li {
  display: inline-block;
}
.contact-style-three .left-info ul.social li a {
  font-size: 24px;
  display: block;
  margin-right: 10px;
  color: #6087ae;
}
.contact-style-three .left-info ul.social li a:hover {
  color: #fff;
}
.contact-style-three .right-form {
  float: right;
  width: 63%;
}
.contact-style-three .right-form .hornbill-contact-form-three .form-control {
  height: 50px;
  margin-bottom: 10px;
  padding: 15px;
  background-color: #F8F8F8;
  border: 1px solid #e6e6e6;
}
.contact-style-three .right-form .hornbill-contact-form-three textarea.form-control {
  height: 200px;
  overflow-x: hidden;
}
.contact-style-three .right-form .hornbill-contact-form-three .btn {
  height: 50px;
  padding: 0 45px;
  font-size: 18px;
  font-weight: 700;
}
.contact-style-three .right-form .hornbill-contact-form-three .btn.disabled {
  cursor: no-drop;
}

/* =========================================
 * FOOTER CSS
 * ====================================== */
.footer-widget {
  border-right: 1px solid #E3E3E3;
  text-align: center;
  padding: 0 30px;
}
.footer-widget.no-border, .footer-widget:last-child {
  border: none;
}
.footer-widget h3 {
  margin-bottom: 20px;
}
.footer-widget .footer-logo {
  margin-bottom: 30px;
}
.footer-widget .discount {
  margin-top: -10px;
  margin-bottom: 30px;
}
.footer-widget .widget-subscribe-form .form-control {
  height: 50px;
  background-color: #F8F8F8;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: #888;
}
.footer-widget .widget-subscribe-form .btn {
  height: 50px;
}
.footer-widget .widget-list li {
  display: block;
}
.footer-widget .widget-list li a {
  display: block;
  color: #787878;
  padding: 5px 0;
  font-size: 18px;
}
.footer-widget .widget-list li a:hover, .footer-widget .widget-list li a:focus {
  color: #222;
}

.widget-social li {
  display: inline-block;
}
.widget-social li a {
  width: 45px;
  display: inline-block;
  height: 45px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  text-align: center;
  padding-top: 10px;
  font-size: 18px;
  margin-right: 10px;
  transition: all 0.1s ease-in-out;
}
.widget-social li a:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}
.widget-social li .twitter {
  color: #1CC9E4;
}
.widget-social li .twitter:hover {
  color: #fff;
  background-color: #1CC9E4;
}
.widget-social li .facebook {
  color: #5F6EDC;
}
.widget-social li .facebook:hover {
  color: #fff;
  background-color: #5F6EDC;
}
.widget-social li .google-plus {
  color: #FF4E61;
}
.widget-social li .google-plus:hover {
  color: #fff;
  background-color: #FF4E61;
}

.footer-bottom {
  padding: 15px 0;
  border-top: 1px solid #eee;
  background-color: #ecf2f3;
}
.footer-bottom h6 {
  font-size: 12px;
  color: #888888;
}
.footer-bottom h6 a {
  color: #444;
}
.footer-bottom .heart {
  margin: 0 5px;
}
.footer-bottom .btn-footer-bottom {
  width: 100%;
  max-width: 130px;
  display: block;
  margin: 0 auto;
  color: #888;
  border: none;
  padding: 0;
  background: transparent;
}
.footer-bottom .btn-footer-bottom:hover {
  color: #8967F3;
}
.footer-bottom .btn-footer-bottom .fa {
  display: block;
  font-size: 26px;
  line-height: 14px;
}
.footer-bottom .btn-footer-bottom span {
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.footer-section.bg-dark {
  color: #666;
}
.footer-section.bg-dark p {
  color: #777;
}
.footer-section.bg-dark .footer-widget .widget-list li a:hover,
.footer-section.bg-dark .footer-widget .widget-list li a:focus {
  color: #888;
}
.footer-section.bg-dark .footer-bottom {
  border-color: #2d2c2c;
  background-color: #24282b;
}

/* ==============================
 * SIDEBAR CSS
 * =========================== */
.widget-box {
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0px 1px rgba(0, 0, 0, 0.45);
}
.widget-box:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.widget-heading {
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
}

/* Author widget */
.widget-author {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0px 1px rgba(0, 0, 0, 0.45);
}
.widget-author:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}
.widget-author .author-cover {
  height: 130px;
  border-radius: 16px 16px 0 0;
  background-size: cover;
  background-position: center center;
  background-color: #FB4C7F;
}
.widget-author .auth-avatar {
  border: 4px solid #fff;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #FB4C7F;
  margin: -60px auto 0;
  display: block;
}
.widget-author .auth-avatar a {
  display: block;
}
.widget-author .auth-avatar img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.widget-author .auth-contents {
  padding: 20px 30px 30px;
  text-align: center;
}
.widget-author .auth-contents .auth-title a {
  color: #585b60;
  font-weight: 700;
}
.widget-author .auth-contents .auth-cat {
  font-size: 14px;
}

/* Widget Media */
.widget .media {
  margin-bottom: 25px;
}
.widget .media .media-left {
  width: 80px;
  float: left;
  margin-right: 10px;
}
.widget .media .media-left a {
  font-size: 18px;
}
.widget .media .media-left .media-object {
  border-radius: 3px;
  max-width: 80px;
}
.widget .media .media-body {
  margin-left: 3px;
}
.widget .media .media-body .media-heading a {
  color: #585b60;
  font-size: 16px;
  margin-top: -3px;
  display: block;
  line-height: 20px;
}
.widget .media .media-body .media-heading a:hover {
  color: #7f67f3;
}
.widget .media .media-body .date {
  font-size: 13px;
  display: block;
  margin: 0;
  line-height: 13px;
  color: #333;
}

/* Widget Tweet */
.widget-tweet {
  position: relative;
}

.widget-tweet .tweet-icon {
  position: absolute;
  color: #51BCDA;
  top: 22px;
  font-size: 30px;
  right: 30px;
}

.tweet-box {
  background: #f6f6f6;
  padding: 15px;
  margin-top: 15px;
  position: relative;
  border-radius: 6px;
}

.tweet-box:after {
  top: 100%;
  right: 20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #f6f6f6;
  border-width: 18px;
  margin-right: 0px;
}

.widget-tweet .tweet-box p {
  color: #5e5e5e;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

.widget-tweet .tweet-img {
  margin-top: 35px;
}

.widget-tweet .tweet-img img {
  background: #e3e3e3 none repeat scroll 0 0;
  border-radius: 50%;
  display: block;
  font-size: 0;
  height: 50px;
  margin-right: 12px;
  margin-top: -10px;
  width: 50px;
  float: left;
}

/* Widget Categories */
.cat-list {
  margin: 0;
  padding: 0;
}

.cat-list li {
  display: block;
  position: relative;
  padding-left: 2px;
}

.cat-list li:before {
  content: "";
  font-family: fontawesome;
  position: absolute;
  top: 4px;
  left: 0;
}

.cat-list li:hover:before {
  left: 1px;
  color: #7f67f3;
}

.cat-list li a {
  display: block;
  color: #585b60;
  padding: 4px 15px;
  font-weight: 400;
}
.cat-list li a:hover {
  color: #7f67f3;
}

/* Widget Tags */
.widget-tags a {
  display: inline-block;
  font-size: 13px;
  margin: 3px 1px;
  padding: 8px 16px;
  line-height: 15px;
}

/* =================================================
 * BUTTONS CSS
 * ============================================= */
.btn {
  border: none;
  cursor: pointer;
  padding: 10px 30px;
  transition: all 0.3s ease 0s;
  text-transform: uppercase;
}
.btn.focus, .btn.active.focus {
  outline: none;
  outline-offset: 0;
}

.btn-transparent {
  background: transparent;
  border: 1px solid #bbb;
  color: #fff;
}
.btn-transparent:hover {
  border-color: transparent;
}

.input-circle,
.btn-circle {
  border-radius: 50px;
}

.hornbill-big-btn {
  padding: 10px 30px 10px 20px;
  margin-right: 20px;
  margin-bottom: 15px;
  color: #fff;
}
.hornbill-big-btn:hover {
  color: #fff;
}
.hornbill-big-btn .fa {
  float: left;
  font-size: 43px;
  margin-right: 10px;
  padding: 0;
}
.hornbill-big-btn .normal-txt {
  display: block;
  font-size: 14px;
  font-weight: 300;
  margin-top: 2px;
  padding-left: 40px;
  padding-right: 8px;
  text-transform: capitalize;
}
.hornbill-big-btn .big-txt {
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding-left: 38px;
  text-align: left;
}

.btn-category {
  border-radius: 12px 0px 12px 0px;
}

.hover-glass {
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.hover-glass span {
  z-index: 20;
}
.hover-glass:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}
.hover-glass:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.hover-glass:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* ==========================================
 * GRADIENTS & COLORS CSS
 * ======================================= */
.damn {
  color: #0B5E96;
}

.gray {
  color: #dddddd;
}

.sky {
  color: #66d4f4;
}

.bgc-lighter {
  background-color: #f4fbfc;
}

.bgc-damn {
  background-color: #005ea0;
}

.bgc-splash {
  background-color: #357A92;
}

.bgc-victoria {
  background-color: #453c6e;
}

.bgc-jupiter {
  background-color: #607D8B;
}

.bgc-sushi {
  background-color: #8bc34a;
}

.bgc-green {
  background-color: #4CAF50;
}

.bgc-java {
  background-color: #009687;
}

.bgc-smoky {
  background-color: #464254;
}

.bg-lighter,
.overlay-lighter:before,
.hornbill-navbar.background.bg-lighter {
  background-image: -webkit-linear-gradient(0deg, #ffffff 0, #f4fbfc 100%);
  background-image: linear-gradient(0deg, #f4fbfc 0%, #ffffff 100%);
}

.bg-lighter-reverse {
  background-image: -webkit-linear-gradient(0deg, #f4fbfc 0, #ffffff 100%);
  background-image: linear-gradient(0deg, #ffffff 0%, #f4fbfc 100%);
}

.bg-damn,
.bg-damn:hover,
.bg-damn:focus,
.overlay-damn:before,
.hover-damn:hover,
.hornbill-navbar.background.bg-damn {
  background-image: -webkit-linear-gradient(left bottom, #0099f0 0%, #005ea0 100%);
  background-image: linear-gradient(to right top, #0099f0 0%, #005ea0 100%);
}

.bg-victoria,
.bg-victoria:hover,
.bg-victoria:focus,
.overlay-victoria:before,
.hornbill-navbar.background.bg-victoria {
  background-image: -webkit-linear-gradient(left bottom, #453c6e 0%, #584c8f 100%);
  background-image: linear-gradient(to right top, #453c6e 0%, #584c8f 100%);
}

.bg-sky,
.bg-sky:hover,
.bg-sky:focus,
.overlay-sky:before,
.hornbill-navbar.background.bg-sky {
  background-image: -webkit-linear-gradient(bottom left, #009efd 0%, #2af598 100%);
  background-image: -o-linear-gradient(bottom left, #009efd 0%, #2af598 100%);
  background-image: linear-gradient(to top right, #009efd 0%, #2af598 100%);
}

.bg-acid,
.bg-acid:hover,
.bg-acid:focus,
.overlay-acid:before,
.hornbill-navbar.background.bg-acid {
  background-image: -webkit-linear-gradient(180deg, #caf6ff 20%, #4688ff 100%);
  background-image: linear-gradient(180deg, #caf6ff 20%, #4688ff 100%);
}

.bg-gray,
.bg-gray:hover,
.bg-gray:focus,
.overlay-gray:before,
.hornbill-navbar.background.bg-gray {
  background-image: -webkit-linear-gradient(bottom right, #f5f7fa 20%, #c3cfe2 100%);
  background-image: -o-linear-gradient(bottom right, #f5f7fa 20%, #c3cfe2 100%);
  background-image: linear-gradient(to top left, #f5f7fa 20%, #c3cfe2 100%);
}

.bg-wine,
.bg-wine:hover,
.bg-wine:focus,
.overlay-wine:before,
.hornbill-navbar.background.bg-wine {
  background-image: -webkit-linear-gradient(bottom left, #fb4c7f 0%, #573d7d 100%);
  background-image: -o-linear-gradient(bottom left, #fb4c7f 0%, #573d7d 100%);
  background-image: linear-gradient(to top right, #fb4c7f 0%, #573d7d 100%);
}

.bg-beach,
.bg-beach:hover,
.bg-beach:focus,
.overlay-beach:before,
.hornbill-navbar.background.bg-beach {
  background-image: -webkit-linear-gradient(bottom left, #76c4ff 0%, #77bff8 100%);
  background-image: -o-linear-gradient(bottom left, #76c4ff 0%, #77bff8 100%);
  background-image: linear-gradient(to top right, #76c4ff 0%, #77bff8 100%);
}

.bg-ripe,
.bg-ripe:hover,
.bg-ripe:focus,
.overlay-ripe:before,
.hornbill-navbar.background.bg-ripe {
  background-image: -webkit-linear-gradient(bottom left, #8BC34A 0%, #4CAF50 100%);
  background-image: -o-linear-gradient(bottom left, #8BC34A 0%, #4CAF50 100%);
  background-image: linear-gradient(to top right, #8BC34A 0%, #4CAF50 100%);
}

.bg-splash,
.bg-splash:hover,
.bg-splash:focus,
.overlay-splash:before,
.hornbill-navbar.background.bg-splash {
  background-image: -webkit-linear-gradient(285deg, #13547a 0%, #80d0c7 100%);
  background-image: -o-linear-gradient(285deg, #13547a 0%, #80d0c7 100%);
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
}

.bg-sunshine,
.bg-sunshine:hover,
.bg-sunshine:focus,
.overlay-sunshine:before,
.hornbill-navbar.background.bg-sunshine {
  background-image: -webkit-linear-gradient(left, #fa709a 0%, #fee140 100%);
  background-image: -o-linear-gradient(left, #fa709a 0%, #fee140 100%);
  background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
}

.bg-sharp,
.bg-sharp:hover,
.bg-sharp:focus,
.overlay-sharp:before,
.hornbill-navbar.background.bg-sharp {
  background-image: -webkit-linear-gradient(left, #009688 0%, #3F51B5 100%);
  background-image: -o-linear-gradient(left, #009688 0%, #3F51B5 100%);
  background-image: linear-gradient(to right, #009688 0%, #3F51B5 100%);
}

.bg-grass,
.bg-grass:hover,
.bg-grass:focus,
.overlay-grass:before,
.hornbill-navbar.background.bg-grass {
  background-image: -webkit-linear-gradient(30deg, #d4fc79 0%, #96e6a1 100%);
  background-image: -o-linear-gradient(30deg, #d4fc79 0%, #96e6a1 100%);
  background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
}

.bg-darker,
.bg-darker:hover,
.bg-darker:focus,
.overlay-darker:before,
.hornbill-navbar.background.bg-darker {
  background: -webkit-linear-gradient(to bottom, #323232 0%, #3F3F3F 40%, #1C1C1C 150%), linear-gradient(to top, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.25) 200%);
  background: linear-gradient(to bottom, #323232 0%, #3F3F3F 40%, #1C1C1C 150%), linear-gradient(to top, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.25) 200%);
  background-blend-mode: multiply;
}

/* overlay */
.overlay-lighter,
.overlay-damn,
.overlay-victoria,
.overlay-grass,
.overlay-sky,
.overlay-acid,
.overlay-gray,
.overlay-wine,
.overlay-beach,
.overlay-ripe,
.overlay-splash,
.overlay-sharp,
.overlay-sunshine,
.overlay-darker {
  position: relative;
}
.overlay-lighter:before,
.overlay-damn:before,
.overlay-victoria:before,
.overlay-grass:before,
.overlay-sky:before,
.overlay-acid:before,
.overlay-gray:before,
.overlay-wine:before,
.overlay-beach:before,
.overlay-ripe:before,
.overlay-splash:before,
.overlay-sharp:before,
.overlay-sunshine:before,
.overlay-darker:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.95;
}
.overlay-lighter.light:before,
.overlay-damn.light:before,
.overlay-victoria.light:before,
.overlay-grass.light:before,
.overlay-sky.light:before,
.overlay-acid.light:before,
.overlay-gray.light:before,
.overlay-wine.light:before,
.overlay-beach.light:before,
.overlay-ripe.light:before,
.overlay-splash.light:before,
.overlay-sharp.light:before,
.overlay-sunshine.light:before,
.overlay-darker.light:before {
  opacity: 0.75;
}

.pattern-top,
.pattern-bottom {
  position: relative;
}
.pattern-top:before,
.pattern-bottom:before {
  content: "";
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  position: absolute;
  opacity: 1;
  height: 50%;
  max-height: 400px;
}

.pattern-top:before {
  background-image: url(../img/bg-parallax/bg-pattern-top.png);
  top: -2px;
  left: 0;
}

.pattern-bottom:before {
  background-image: url(../img/bg-parallax/bg-pattern-bottom.png);
  bottom: 0;
  left: 0;
}

.pattern-zigzag {
  position: relative;
  overflow: hidden;
  border: 1px solid #efefef;
}
.pattern-zigzag:before {
  content: "";
  background-image: url(../img/icons/pattern-zigzag-icon.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 100%;
  position: absolute;
  top: -106px;
  right: -6px;
  height: 100%;
  max-height: 330px;
}

.overlay-pattern-icon {
  position: relative;
}
.overlay-pattern-icon:before {
  background-image: url(../img/bg-parallax/bg-victoria-icons.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

/* ----- Global Color Changes ---- */
body.victoria .single-service:hover {
  border-color: #4D427B;
}
body.victoria #faq_accordion {
  border-left: 3px solid #4D437C;
  border-radius: 6px;
}

body.body-splash .single-service:hover,
body.body-splash .features-list .single-feature:hover {
  border-color: #357a92;
}
body.body-splash .section-heading h2,
body.body-splash .heading-lines span.bi,
body.body-splash #faq_accordion .item a,
body.body-splash .features-list .single-feature .feature-icon span.bi,
body.body-splash .more-features-list .more-single-feature .icon,
body.body-splash .single-price .price,
body.body-splash .video .play-video-icon {
  color: #357a92;
}
body.body-splash .features-list.hover-none .single-feature:hover {
  border-color: transparent;
}
body.body-splash .heading-lines span.line {
  background: #357a92;
}
body.body-splash .single-team-member.panel .back {
  box-shadow: 0 0 30px #6dbaba;
}
body.body-splash #faq_accordion .item a.collapsed {
  color: #787878;
}
body.body-splash .section-heading.text-white h2 {
  color: #fff;
}
body.body-victoria .single-service:hover,
body.body-victoria .features-list .single-feature:hover {
  border-color: #4D427B;
}
body.body-victoria .section-heading h2,
body.body-victoria .heading-lines span.bi,
body.body-victoria #faq_accordion .item a,
body.body-victoria .more-features-list .more-single-feature .icon,
body.body-victoria .features-list .single-feature .feature-icon span.bi,
body.body-victoria .video .play-video-icon {
  color: #4D427B;
}
body.body-victoria .heading-lines span.line {
  background: #4D427B;
}
body.body-victoria #faq_accordion .item a.collapsed {
  color: #585b60;
}
body.body-victoria .section-heading.text-white h2 {
  color: #fff;
}
body.body-grass .single-service:hover,
body.body-grass .features-list .single-feature:hover,
body.body-grass .contact-style-two {
  border-color: #8BC34A;
}
body.body-grass .section-heading h2,
body.body-grass .heading-lines span.bi,
body.body-grass #faq_accordion .item a,
body.body-grass .more-features-list .more-single-feature .icon,
body.body-grass .features-list .single-feature .feature-icon span.bi,
body.body-grass .video .play-video-icon {
  color: #8BC34A;
}
body.body-grass .heading-lines span.line {
  background: #8BC34A;
}
body.body-grass #faq_accordion .item a.collapsed {
  color: #585b60;
}
body.body-grass .section-heading.text-white h2 {
  color: #fff;
}
body.body-sharp .single-service:hover,
body.body-sharp .features-list .single-feature:hover,
body.body-sharp .contact-style-two {
  border-color: #215f8a;
}
body.body-sharp .section-heading h2,
body.body-sharp .heading-lines span.bi,
body.body-sharp #faq_accordion .item a,
body.body-sharp .more-features-list .more-single-feature .icon,
body.body-sharp .features-list .single-feature .feature-icon span.bi,
body.body-sharp .video .play-video-icon {
  color: #215f8a;
}
body.body-sharp .heading-lines span.line {
  background: #215f8a;
}
body.body-sharp #faq_accordion .item a.collapsed {
  color: #585b60;
}
body.body-sharp .section-heading.text-white h2 {
  color: #fff;
}
body.body-sky .single-service:hover,
body.body-sky .features-list .single-feature:hover,
body.body-sky .contact-style-two {
  border-color: #00bcd4;
}
body.body-sky .section-heading h2,
body.body-sky .heading-lines span.bi,
body.body-sky #faq_accordion .item a,
body.body-sky .more-features-list .more-single-feature .icon,
body.body-sky .features-list .single-feature .feature-icon span.bi,
body.body-sky .video .play-video-icon {
  color: #00bcd4;
}
body.body-sky .heading-lines span.line,
body.body-sky .map.full .pulse {
  background: #00bcd4;
}
body.body-sky .map.full .pulse:after {
  box-shadow: 0 0 10px 8px #00bcd4;
}
body.body-sky .single-team-member.panel .back {
  box-shadow: 0 0 30px #17ccc8;
}
body.body-sky #faq_accordion .item a.collapsed {
  color: #585b60;
}
body.body-sky .section-heading.text-white h2 {
  color: #fff;
}
body.body-sunshine .single-service:hover,
body.body-sunshine .features-list .single-feature:hover,
body.body-sunshine .contact-style-two {
  border-color: #FB7993;
}
body.body-sunshine .section-heading h2,
body.body-sunshine .heading-lines span.bi,
body.body-sunshine #faq_accordion .item a,
body.body-sunshine .more-features-list .more-single-feature .icon,
body.body-sunshine .features-list .single-feature .feature-icon span.bi,
body.body-sunshine .video .play-video-icon,
body.body-sunshine .single-price .price {
  color: #FB7993;
}
body.body-sunshine .heading-lines span.line,
body.body-sunshine .pulse {
  background: #FB7993;
}
body.body-sunshine .pulse:after {
  box-shadow: 0 0 10px 8px #FB7993;
}
body.body-sunshine #faq_accordion .item a.collapsed {
  color: #585b60;
}
body.body-sunshine .section-heading.text-white h2 {
  color: #fff;
}
body.body-ripe .single-service:hover,
body.body-ripe .features-list .single-feature:hover,
body.body-ripe .contact-style-two {
  border-color: #4CAF50;
}
body.body-ripe .features-list.hover-none .single-feature:hover {
  border-color: transparent;
}
body.body-ripe .section-heading h2,
body.body-ripe .heading-lines span.bi,
body.body-ripe #faq_accordion .item a,
body.body-ripe .more-features-list .more-single-feature .icon,
body.body-ripe .features-list .single-feature .feature-icon span.bi,
body.body-ripe .video .play-video-icon,
body.body-ripe .single-price .price {
  color: #4CAF50;
}
body.body-ripe .heading-lines span.line {
  background: #4CAF50;
}
body.body-ripe #faq_accordion .item a.collapsed {
  color: #585b60;
}
body.body-ripe .section-heading.text-white h2 {
  color: #fff;
}
body.body-gray .single-service:hover,
body.body-gray .features-list .single-feature:hover, body.body-lighter .single-service:hover,
body.body-lighter .features-list .single-feature:hover {
  border-color: #9e9e9e;
}
body.body-gray .section-heading h2,
body.body-gray .heading-lines span.bi,
body.body-gray #faq_accordion .item a,
body.body-gray .more-features-list .more-single-feature .icon,
body.body-gray .features-list .single-feature .feature-icon span.bi,
body.body-gray .video .play-video-icon, body.body-lighter .section-heading h2,
body.body-lighter .heading-lines span.bi,
body.body-lighter #faq_accordion .item a,
body.body-lighter .more-features-list .more-single-feature .icon,
body.body-lighter .features-list .single-feature .feature-icon span.bi,
body.body-lighter .video .play-video-icon {
  color: #585b60;
}
body.body-gray .heading-lines span.line, body.body-lighter .heading-lines span.line {
  background: #585b60;
}
body.body-gray #faq_accordion .item a.collapsed, body.body-lighter #faq_accordion .item a.collapsed {
  color: #585b60;
}
body.body-gray .section-heading.text-white h2, body.body-lighter .section-heading.text-white h2 {
  color: #fff;
}
body.body-gray .features-list.hover-none .single-feature:hover, body.body-lighter .features-list.hover-none .single-feature:hover {
  border-color: transparent;
}
body.body-wine .single-service:hover,
body.body-wine .features-list .single-feature:hover {
  border-color: #89427e;
}
body.body-wine .section-heading h2,
body.body-wine .heading-lines span.bi,
body.body-wine #faq_accordion .item a,
body.body-wine .more-features-list .more-single-feature .icon,
body.body-wine .features-list .single-feature .feature-icon span.bi,
body.body-wine .video .play-video-icon,
body.body-wine .single-price .price {
  color: #89427e;
}
body.body-wine .heading-lines span.line,
body.body-wine .pulse {
  background: #89427e;
}
body.body-wine .pulse:after {
  box-shadow: 0 0 10px 8px #89427e;
}
body.body-wine #faq_accordion .item a.collapsed {
  color: #585b60;
}
body.body-wine .section-heading.text-white h2 {
  color: #fff;
}
body.body-wine .features-list.hover-none .single-feature:hover {
  border-color: transparent;
}

/* =====================================
 * BACKGROUNDS CSS
 * ================================== */
.bg-deep-sky {
  background: url(../img/bg-parallax/bg-deep-sky.jpg) center center/cover no-repeat;
}

.bg-deep-sky-two {
  background: url(../img/bg-parallax/bg-deep-sky-2.jpg) center center/cover no-repeat;
}

.bg-phone-at-hands {
  background: url(../img/bg-parallax/bg-phone-at-hand.jpg) center center/cover no-repeat;
}

.bg-hands {
  background: url(../img/bg-parallax/bg-people-hands.jpg) center center/cover no-repeat;
}

.bg-prisma {
  background: url(../img/bg-parallax/bg-prisma-sky.jpg) center center/cover no-repeat;
}

.bg-mountain {
  background: url(../img/bg-parallax/bg-mountain.jpg) center center/cover no-repeat;
}

.bg-phone-at-ice {
  background: url(../img/bg-parallax/bg-iphone-at-ice.jpg) center center/cover no-repeat;
}

.bg-people {
  background: url(../img/bg-parallax/bg-people.jpg) left top/auto repeat;
}

.bg-ipad {
  background: url(../img/bg-parallax/bg-image-ipad.jpg) center center/cover no-repeat;
}

.bg-laptop {
  background: url(../img/bg-parallax/bg-laptop.jpg) center center/cover no-repeat;
}

.bg-globe {
  background: url(../img/bg-parallax/bg-globe.png) center center/cover no-repeat;
}

.bg-mobile {
  background: url(../img/bg-parallax/bg-mobile.png) bottom right/auto 100% no-repeat fixed;
}

.bg-fixed {
  background-attachment: fixed;
}

/* =====================================
 * ANIMATIONS CSS
 * ===================================== */
.pulse {
  background: #9486ed;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  position: relative;
  margin: 0 auto;
  transform: rotateX(55deg);
}
.pulse:after {
  content: "";
  border-radius: 50%;
  height: 60px;
  width: 60px;
  position: absolute;
  margin: -20px 0 0 -29px;
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;
  opacity: 0;
  box-shadow: 0 0 10px 8px #9789f0;
  animation-delay: 1.1s;
}

.map.full .pulse {
  background: #453C6E;
}
.map.full .pulse:after {
  box-shadow: 0 0 10px 8px #9789f0;
}

.animate-pulse-down {
  animation-name: pulse-down;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.animate-pulse {
  animation-name: pulse;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.color-unlimited {
  color: #f35626;
  background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: hue 60s infinite linear;
}

.animate-cloud {
  overflow-x: hidden;
  max-width: 100%;
}

.animate-cloud-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 500em;
  height: 100%;
  opacity: 1;
  z-index: 1;
  visibility: inherit;
  background: transparent url("../img/cloudwash.png") repeat-x scroll 0 100%;
  -webkit-animation: cloudwash 60s linear infinite;
  -moz-animation: cloudwash 60s linear infinite;
  animation: cloudwash 60s linear infinite;
}

@-webkit-keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
}
@keyframes pulse-down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
}
@-webkit-keyframes pulse {
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(-360deg);
  }
}
@keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(-360deg);
  }
}
@-webkit-keyframes cloudwash {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes cloudwash {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}
/* Global animations */
@-webkit-keyframes smooth-pulse {
  25% {
    transform: scale(0.8, 0.8);
  }
  75% {
    transform: scale(1.1, 1.1);
  }
}
@keyframes smooth-pulse {
  25% {
    transform: scale(0.8, 0.8);
  }
  75% {
    transform: scale(1.1, 1.1);
  }
}
/* ==============================================================
 * RESPONSIVE CSS
 * ========================================================== */
@media (min-width: 992px) {
  .swiper-button-prev {
    left: -40px;
  }

  .swiper-button-next {
    right: -40px;
  }

  .swiper-button-next,
.swiper-button-prev {
    height: 60px;
    margin-top: -30px;
  }
}
/* ------------------------------
 * Tablet landskape
 * -------------------------- */
@media (max-width: 1024px) {
  .download-phones {
    margin: 80px 0 0;
  }

  .more-features-phones .more-features-phone-two {
    padding-right: 0;
  }

  .bg-hands {
    background-size: cover;
  }
}
/* ---------------------------
 * Tablet Portrait
 * -------------------------*/
@media only screen and (max-width: 768px) {
  .card-columns {
    -webkit-column-count: 2;
    column-count: 2;
  }

  .sidebar-left {
    margin-left: -15px;
    margin-right: -15px;
  }

  .hornbill-big-btn {
    margin-right: 0;
  }
  .hornbill-big-btn .fa {
    font-size: 30px;
    margin-right: 5px;
    padding: 0;
  }
  .hornbill-big-btn .normal-txt {
    font-size: 10px;
    padding-left: 30px;
    padding-right: 0;
  }
  .hornbill-big-btn .big-txt {
    font-size: 15px;
    padding-left: 30px;
  }

  .navbar-toggler-icon {
    background: none;
    font-size: 28px;
    margin-top: 4px;
    margin-bottom: 0;
    height: auto;
  }

  .hornbill-navbar,
.hornbill-navbar.background {
    padding: 5px 0;
  }

  .hornbill-navbar.navbar-expand-md .navbar-nav .nav-link {
    color: #fff;
  }

  .hornbill-navbar .container {
    max-width: 100%;
  }

  .hornbill-navbar .hornbill-nav {
    background-color: #836EF2;
    margin-top: 5px;
    box-shadow: -1px 0 3px rgba(0, 0, 0, 0.15) inset;
  }
  .hornbill-navbar .hornbill-nav li a {
    color: #fff;
  }
  .hornbill-navbar.bg-victoria .hornbill-nav {
    background-color: #514683;
  }
  .hornbill-navbar.bg-wine .hornbill-nav {
    background-color: #81407d;
  }
  .hornbill-navbar.bg-gray .hornbill-nav {
    background-color: #dbe2ed;
  }
  .hornbill-navbar.bg-sharp .hornbill-nav {
    background-color: #276ca4;
  }
  .hornbill-navbar.bg-splash .hornbill-nav {
    background-color: #5aa5ac;
  }

  .out-on {
    display: none;
  }

  .hornbill-navbar.background .hornbill-nav {
    background: transparent;
  }

  body.victoria .hornbill-nav {
    background-color: #534886;
    margin-top: 5px;
  }

  .hornbill-navbar .navbar-brand {
    max-width: 120px;
    margin-left: 10px;
    margin-top: 10px;
  }

  .hornbill-navbar .hornbill-nav li a {
    padding: 12px;
  }

  .bg-hands,
.bg-deep-sky {
    background-size: cover;
  }

  .pattern-top:before,
.pattern-bottom:before {
    max-height: 200px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .animate-cloud-effects {
    max-width: 100%;
  }

  .download-phones {
    margin-right: 0;
  }

  .banner-one {
    padding-bottom: 60px;
    padding-top: 120px;
  }
  .banner-one:after {
    height: 45px;
  }
  .banner-one .banner-one-gadgets {
    margin-top: 70px;
  }
  .banner-one .banner-one-phone-black {
    max-width: 260px;
    display: block;
    margin: 0 auto;
  }
  .banner-one .banner-one-iwatch {
    position: absolute;
    right: 20%;
    bottom: 0;
    max-width: 240px;
  }

  .banner-left {
    text-align: center;
  }
  .banner-left .banner-heading {
    font-size: 42px;
    line-height: 52px;
  }
  .banner-left .banner-heading .mid {
    font-size: 50px;
    line-height: 58px;
  }
  .banner-left .banner-search-form {
    padding: 0 30px;
    margin: 30px auto;
    max-width: 500px;
  }

  .banner-four-gadgets .img-bubbles {
    top: auto;
    bottom: 3%;
    right: 12%;
  }
  .banner-four-gadgets .img-phone-hands {
    right: auto;
    left: auto;
    bottom: auto;
    top: auto;
    margin: 0 auto;
    display: block;
    position: relative;
  }

  .hornbill-contact-form .btn {
    width: 100%;
  }

  .banner-ten:before {
    bottom: -1px;
  }

  .banner-fourteen .features-list .single-feature {
    width: 50%;
    float: left;
    text-align: center;
  }
  .banner-fourteen .features-list .single-feature .feature-icon span.bi-support {
    margin-left: auto;
    margin-right: auto;
  }

  .big-brand-logo img {
    max-width: 260px;
  }

  .faq-heading h4 {
    font-size: 20px;
    margin-top: 10px;
  }

  ul.features-list,
.features-list.right {
    clear: both;
    overflow: hidden;
    margin-top: 0;
    margin-top: 45px;
  }
  ul.features-list li.single-feature,
.features-list.right li.single-feature {
    width: 33.33%;
    float: left;
    text-align: center;
  }
  ul.features-list li.single-feature .feature-icon span.bi,
.features-list.right li.single-feature .feature-icon span.bi {
    float: none;
    margin: 0 auto 30px;
    display: block;
  }
  ul.features-list.hover-none li.single-feature,
.features-list.right.hover-none li.single-feature {
    width: 50%;
    text-align: center;
  }

  .banner-eight-form {
    margin: 0 auto;
    position: relative;
    display: block;
  }

  .feature-phone {
    margin-bottom: 0;
    margin-top: 40px;
  }

  .more-feature-section {
    padding-top: 0px;
  }

  .more-features-phones .more-features-phone-two {
    display: none;
  }
  .more-features-phones .phone-slide {
    position: relative;
    left: auto;
    top: auto;
    display: block;
    max-width: 320px;
    margin-top: 45px;
    margin-left: 0;
  }

  .feature-phone img {
    max-width: 100%;
  }

  .capability-phone {
    margin: 0 auto 30px;
    display: block;
  }

  .fun-factor-section {
    padding-bottom: 80px;
  }

  .faq-phones {
    margin-top: 100px;
  }
  .faq-phones .phone-left,
.faq-phones .phone-right {
    width: 50%;
    text-align: center;
  }
  .faq-phones .phone-center {
    left: 22%;
    max-width: 58%;
    text-align: center;
  }

  .promo-heading h2 {
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: 0;
  }

  .promo-subscribe h2 {
    font-size: 30px;
  }

  .circle-progress-list {
    text-align: center;
  }
  .circle-progress-list li {
    width: 31%;
    float: none;
    display: inline-block;
    overflow: hidden;
    margin-bottom: 30px;
    text-align: center;
  }

  .download-phones .download-device-mobile {
    bottom: -18px;
    left: 115px;
    max-width: 80px;
  }
  .download-phones .download-device-tab {
    bottom: -14px;
    left: 26px;
    max-width: 130px;
  }

  .promo-phones .promo-device-mobile {
    max-width: 150px;
    right: 6%;
  }
  .promo-phones .promo-device-tab {
    width: 100%;
    max-width: 235px;
    left: 6%;
    position: relative;
  }

  .more-features-list .more-single-feature .icon {
    margin-bottom: 80px;
  }

  .promo-subscribe .subscribe-form {
    padding: 0 30px;
  }
  .promo-subscribe .subscribe-form .btn-subscribe {
    position: relative;
    right: auto;
    height: 50px;
    top: auto;
    width: 100%;
    margin-top: 8px;
  }
  .promo-subscribe .subscribe-form .form-control {
    text-align: center;
  }

  .single-price.middle {
    box-shadow: none;
  }

  .single-price,
.single-price.middle {
    margin: 0 auto 20px;
  }

  .video-section .card-group {
    display: block;
  }

  .video,
.about-video,
.map,
.contact {
    float: none;
    width: 100%;
  }

  .video {
    height: 400px;
  }

  .about-video {
    padding: 80px 15px;
  }
  .about-video .promo-heading {
    padding: 0 60px;
    text-align: center;
  }
  .about-video .features-list {
    margin: 60px 0 0;
  }
  .about-video .features-list .single-feature {
    width: 50%;
    float: left;
    padding: 0 60px;
  }
  .about-video .features-list .single-feature .feature-icon .bi, .about-video .features-list .single-feature:nth-child(2) .feature-icon .bi {
    margin: 0 auto 30px;
  }
  .about-video .features-list.right .single-feature {
    text-align: left;
  }
  .about-video .features-list.right .single-feature .feature-icon span.bi {
    float: left;
    margin-right: 15px;
    margin-left: 0;
  }

  .team-member-special {
    padding: 0;
  }
  .team-member-special .section-heading {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 40px;
    text-align: center;
  }
  .team-member-special .section-heading .heading-lines {
    margin: 15px auto;
  }
  .team-member-special .team-members-list {
    margin: 180px 35px 0 100px;
  }
  .team-member-special .team-members-list .single-member:nth-child(1) {
    z-index: 4;
  }
  .team-member-special .team-members-list .single-member:nth-child(3) {
    top: 15%;
    left: 15%;
    z-index: 4;
  }
  .team-member-special .team-members-list .single-member:nth-child(4) {
    top: 28%;
    left: 30%;
  }
  .team-member-special .team-members-list .single-member:nth-child(5) {
    top: -15%;
    left: 30%;
  }
  .team-member-special .team-members-list .single-member:nth-child(8) {
    top: -25%;
    left: 4%;
  }
  .team-member-special .team-members-list .single-member:nth-child(10) {
    z-index: 7;
  }
  .team-member-special .team-members-list .single-member:nth-child(12) {
    top: -24%;
    left: 75%;
  }
  .team-member-special .team-members-list .single-member:nth-child(13) {
    top: 52%;
    left: 80%;
  }

  .contact .mini-container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-style-two {
    margin-top: -200px;
  }

  .contact-style-three {
    background-color: #fff;
    padding: 0;
    border-radius: 6px;
    position: relative;
  }
  .contact-style-three .heading h2 {
    text-transform: capitalize;
  }
  .contact-style-three .left-info {
    color: #fff;
    border-radius: 6px 6px 0 0;
    padding: 45px 30px;
    background-color: #0F3F6F;
    float: none;
    width: 100%;
    left: auto;
    height: auto;
    position: relative;
  }
  .contact-style-three .left-info ul.social {
    position: relative;
    bottom: auto;
    left: auto;
  }
  .contact-style-three .right-form {
    float: none;
    width: 100%;
    padding: 30px 15px;
  }
  .contact-style-three .right-form .hornbill-contact-form-three .btn {
    width: 100%;
  }

  .promo-download-texts {
    padding: 0;
  }

  .promo-phones .promo-device-mobile {
    bottom: 18%;
  }

  .single-team-member {
    height: auto;
  }

  .single-team-member .front {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
  }

  .single-team-member.panel .back {
    padding-top: 20%;
  }

  .footer-widget {
    margin-bottom: 45px;
  }
  .footer-widget h3 {
    margin-bottom: 0;
  }
  .footer-widget .discount {
    margin-top: 0;
    margin-bottom: 25px;
  }
  .footer-widget .footer-logo {
    margin-bottom: 20px;
  }
  .footer-widget .widget-subscribe-form .form-group {
    margin-bottom: 8px;
  }

  .footer-bottom {
    text-align: center;
  }
  .footer-bottom .btn-footer-bottom {
    margin: 15px auto 7px;
  }
}
/* End media */
@media only screen and (max-width: 767px) {
  .hide-sm {
    display: none;
    opacity: 0;
  }

  .swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    display: none;
  }

  .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    display: none;
  }

  .card-columns {
    -webkit-column-count: 1;
    column-count: 1;
  }
  .card-columns.column-two {
    -webkit-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0rem;
    column-gap: 0rem;
  }

  .hornbill-big-btn {
    margin-right: 0;
  }

  .promo-subscribe .subscribe-form .btn-subscribe {
    position: relative;
  }

  .banner-one {
    padding-top: 60px;
  }
  .banner-one .banner-one-iwatch {
    right: 10%;
  }

  /* banner threee */
  .banner-three {
    padding-bottom: 150px;
  }
  .banner-three:after {
    height: 60px;
    bottom: -1px;
  }

  .banner-section .carousel-control-next,
.banner-section .carousel-control-prev {
    width: 15%;
  }

  .banner-four-gadgets .img-bubbles {
    top: auto;
    bottom: 6%;
    right: 0;
    max-width: 100%;
  }
  .banner-four-gadgets .img-phone-hands {
    max-width: 76%;
  }

  .banner-fourteen .features-list .single-feature {
    width: 100%;
    float: none;
    text-align: center;
  }

  ul.features-list li.single-feature,
ul.features-list.hover-none li.single-feature,
ul.features-list.right li.single-feature,
.about-video .features-list .single-feature {
    width: 100%;
    float: none;
  }

  .banner-left .heading-light {
    font-size: 40px;
    line-height: 52px;
  }
  .banner-left .banner-heading.mid {
    font-size: 42px;
    line-height: 50px;
  }

  .more-features-phones .phone-slide {
    margin: 0 auto;
  }

  .video {
    height: 250px;
  }

  .about-video .promo-heading {
    padding: 0 15px;
  }
  .about-video .features-list .single-feature {
    margin-bottom: 45px;
    padding: 0 30px;
  }

  .banner-six {
    padding-bottom: 100px;
  }
  .banner-six:after {
    height: 100px;
  }

  .banner-seven {
    padding-bottom: 120px;
  }
  .banner-seven:after {
    height: 40px;
    bottom: -2px;
  }

  .banner-eight-form {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    bottom: auto;
    height: auto;
    width: 100%;
  }

  .banner-nine .carousel.smart .carousel-indicators {
    display: none;
  }
  .banner-nine .carousel.smart .carousel-shares {
    left: 15px;
    bottom: 6px;
  }
  .banner-nine .carousel.smart .smart-carousel-style.prev {
    right: 53px;
  }
  .banner-nine .carousel.smart .smart-carousel-style.next {
    right: 15px;
  }
  .banner-nine .carousel.smart .banner-left .banner-heading.big {
    font-size: 50px;
    line-height: 60px;
  }

  .banner-ten {
    margin-bottom: 0;
    padding-bottom: 70px;
  }
  .banner-ten:before {
    height: 50px;
  }

  .banner-twelve .img-twelve-bubbles {
    top: auto;
    width: 100%;
    bottom: 15%;
  }

  .promo-download-phone {
    display: none;
  }

  .promo-download-texts {
    padding: 60px 0;
  }

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

  .promo-phones .promo-device-mobile {
    bottom: -80px;
  }

  .circle-progress-list li {
    width: 100%;
    float: none;
  }

  .team-member-special {
    padding-left: 0;
  }
  .team-member-special .section-heading {
    text-align: center;
    max-width: 100%;
    padding: 0 30px;
  }
  .team-member-special .section-heading .heading-lines {
    margin: 15px auto 20px;
  }
  .team-member-special .team-members-list {
    position: relative;
    height: auto;
    margin: 0 auto;
    padding: 30px 10% 60px;
    text-align: center;
  }
  .team-member-special .team-members-list li.single-member,
.team-member-special .team-members-list li.single-member:nth-child(1),
.team-member-special .team-members-list li.single-member:nth-child(2),
.team-member-special .team-members-list li.single-member:nth-child(3),
.team-member-special .team-members-list li.single-member:nth-child(4),
.team-member-special .team-members-list li.single-member:nth-child(5),
.team-member-special .team-members-list li.single-member:nth-child(6),
.team-member-special .team-members-list li.single-member:nth-child(7),
.team-member-special .team-members-list li.single-member:nth-child(8),
.team-member-special .team-members-list li.single-member:nth-child(9),
.team-member-special .team-members-list li.single-member:nth-child(10),
.team-member-special .team-members-list li.single-member:nth-child(11),
.team-member-special .team-members-list li.single-member:nth-child(12),
.team-member-special .team-members-list li.single-member:nth-child(13),
.team-member-special .team-members-list li.single-member:nth-child(14) {
    width: 80px;
    height: 80px;
    top: auto;
    left: auto;
    z-index: 99;
    margin: 15px;
    display: inline-block;
    right: auto;
    position: relative;
  }
  .team-member-special .team-members-list li.single-member:nth-child(2):hover .member-hover,
.team-member-special .team-members-list li.single-member:nth-child(5):hover .member-hover,
.team-member-special .team-members-list li.single-member:nth-child(6):hover .member-hover,
.team-member-special .team-members-list li.single-member:nth-child(8):hover .member-hover {
    left: -77px;
  }

  .map.default #google_map {
    height: 350px;
  }
  .map.default .map-inner .map-pin {
    top: 0;
  }

  .creative-buttons li {
    display: block;
    margin-bottom: 6px;
  }

  .hornbill-swiper-review-box {
    padding: 45px 0;
  }
  .hornbill-swiper-review-box .review-texts {
    margin: 25px 0;
  }

  .card.single-blog.style-two {
    margin-bottom: 20px;
  }

  .contact-style-two {
    margin-top: -300px;
  }

  .animate-cloud-effects {
    display: none;
  }

  .carousel.smart .smart-caption {
    bottom: 25%;
    left: 15px;
    margin-right: 15px;
  }
  .carousel.smart .smart-carousel-style {
    bottom: 10px;
    width: 38px;
    height: 28px;
    font-size: 26px;
  }
  .carousel.smart .smart-carousel-style.prev {
    left: 15px;
  }
  .carousel.smart .smart-carousel-style.next {
    left: 53px;
  }

  .more-feature-section {
    padding-top: 100px;
  }

  .single-post-details .single-post-contents .post-content-box {
    margin-left: 15px;
    margin-right: 15px;
  }
  .single-post-details .single-post-contents .post-contents-heading .post-infos .info-center {
    float: none;
    width: 100%;
  }
  .single-post-details .single-post-contents .post-contents h2 {
    font-size: 33px;
    line-height: 40px;
    text-align: center;
  }
  .single-post-details .single-post-contents .post-contents h3 {
    font-size: 28px;
  }
  .single-post-details .single-post-contents .info-more-bottom {
    padding: 0 20px;
  }
  .single-post-details .single-post-contents .info-more-bottom li.comments span {
    font-size: 17px;
  }
  .single-post-details .single-post-contents .comments-list .media .comment-avatar {
    width: 50px;
    height: 50px;
  }
  .single-post-details .single-post-contents .comments-list .media .media-body .media {
    margin-left: -65px;
  }
  .single-post-details .single-post-contents .comments-list .media .media-body .media .comment-avatar {
    width: 50px;
    height: 50px;
  }
  .single-post-details .single-post-contents .form-respond textarea.form-control {
    margin: 0;
  }
  .single-post-details .single-post-contents .form-respond .btn-respond {
    margin: 0;
    width: 100%;
  }
}
/* End media (767px) */

/*# sourceMappingURL=style.css.map */
