/* Animated Title Border */
/*@import url("https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i");
.animate-border {
  position: relative;
  display: block;
  width: 115px;
  height: 3px;
  background: #1877f2;
}*/



.animate-border:after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  left: 0;
  bottom: 0;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
  -webkit-animation: animborder 2s linear infinite;
  animation: animborder 2s linear infinite;
}

@-webkit-keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px);
  }
}

@keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px);
  }
}

.animate-border.border-white:after {
  border-color: #fff;
}

.animate-border.border-yellow:after {
  border-color: #F5B02E;
}

.animate-border.border-orange:after {
  border-right-color: #1877f2;
  border-left-color: #1877f2;
}

.animate-border.border-ash:after {
  border-right-color: #EEF0EF;
  border-left-color: #EEF0EF;
}

.animate-border.border-offwhite:after {
  border-right-color: #F7F9F8;
  border-left-color: #F7F9F8;
}

/* Animated heading border */
@keyframes primary-short {
  0% {
    width: 15%;
  }
  50% {
    width: 90%;
  }
  100% {
    width: 10%;
  }
}

@keyframes primary-long {
  0% {
    width: 80%;
  }
  50% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}

/*
  Version: 1.0
*/
/* Table of Content
=================================================
1. Typography
2. Header
3. Global Style (body, link color, gap, ul, section-title, overlay etc)
4. Hero Area
5. Slider Area
6. Features Area
7. Analysis Area
8. Intro Area
9. Fun Facts
10. Service
11. Case Study
12. Working Process
13. Testimonial
14. Pricing Table
15. Blog
16. Clients
17. Footer
18. Contact
19. Sub Pages
20. Banner
21. News Post
22. Right News side Bar
23. News Single Pages
24. About us
25. About Us version 2
26. Timeline V2
27. Pricing
28. Map
30. Contact us Form
31. Testimonial
32. Single Service
33. Service
34. Case
35. Single Case Study

*/
/* Typography
================================================== */
body {
  background: #fff;
  color: #757575;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 25px;
}


.modal-contenido{
  background-color:aqua;
  width:300px;
  padding: 10px 20px;
  margin: 20% auto;
  position: relative;
}
.modal{
  background-color: rgba(0,0,0,.8);
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;  
}



p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 28px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2f2c2c;
}

h1,
h2 {
  font-weight: 800;
}

h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1 {
  font-size: 60px;
}

h4 {
  font-size: 18px;
}

/* Global styles
================================================== */
html {
  overflow-x: hidden !important;
}

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

a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0 solid;
}

a:hover {
  color: #1877f2;
}

button:focus,
.btn:focus {
  outline: 0 solid;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button:hover {
  cursor: pointer;
}

.tw-readmore {
  color: #1877f2;
  font-weight: 800;
  display: inline-block;
}

.tw-readmore:hover {
  color: #1877f2;
}

.tw-readmore i {
  padding-left: 5px;
}

/* Margin Top */
.tw-mt-140 {
  margin-top: 140px !important;
}

.tw-mt-80 {
  margin-top: 80px !important;
}

.tw-mt-70 {
  margin-top: 70px !important;
}

.tw-mt-65 {
  margin-top: 65px !important;
}

.tw-mt-60 {
  margin-top: 60px !important;
}

.tw-mt-40 {
  margin-top: 40px !important;
}

.tw-mt-30 {
  margin-top: 30px !important;
}

.tw-mt-20 {
  margin-top: 20px !important;
}

.tw-mt-15 {
  margin-top: 15px !important;
}

/* Margin Bottom */
.tw-mb-165 {
  margin-bottom: 165px;
}

.tw-mb-105 {
  margin-bottom: 105px;
}

.tw-mb-80 {
  margin-bottom: 80px;
}

.tw-mb-70 {
  margin-bottom: 70px;
}

.tw-mb-65 {
  margin-bottom: 65px;
}

.tw-mb-60 {
  margin-bottom: 60px;
}

.tw-mb-40 {
  margin-bottom: 40px;
}

.tw-mb-35 {
  margin-bottom: 35px;
}

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

/* Background Color */
.bg-white {
  background: #ffffff !important;
}

.bg-green {
  background: #32CC73 !important;
}

.bg-orange {
  background: #1877f2 !important;
}

.bg-blue {
  background: #478FFF !important;
}

.bg-yellow {
  background: #FFB72F !important;
}

.bg-ash {
  background: #EEF0EF !important;
}

.bg-offwhite {
  background: #F7F9F8 !important;
}

.bg-shrock {
  background: #2BC2A7 !important;
}

.bg-darkBlue {
  background: #2f57c9 !important;
}

.bg-pink {
  background: #f6576e !important;
}

.bg-violet {
  background: #BA01FF !important;
}

/* Background Overlay */
.bg-overlay {
  position: relative;
}

.bg-overlay .container {
  position: relative;
  z-index: 1;
}

.bg-overlay:after {
  background-color: rgba(32, 32, 32, 0.8);
  z-index: 0;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Input Form */
.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control::-webkit-input-placeholder, .form-control::-moz-placeholder, .form-control:-ms-input-placeholder, .form-control:-moz-placeholder {
  color: #b2b2b2;
  font-size: 15px;
}

/* Section Padding */
section {
  padding: 0px 25px;
    padding-top: 25px;
    padding-right: 0px;
    padding-bottom: 25px;
    padding-left: 0px;
  position: relative;
}

/* Section Heading */
.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  color: #2f2c2c;
  font-size: 44px;
}

.section-heading h2 small {
  color: #636262;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
  margin-bottom: 14px;
}

.section-heading h2 span {
  color: #1877f2;
}

.section-heading.light h2 {
  font-weight: 600;
}

.section-heading.white h2 {
  color: #fff;
}

.section-heading.white h2 small {
  color: #fff;
}

/* Section Title */
.section-title {
  color: #2f2c2c;
  font-size: 44px;
}

/* Column Title */
.column-title {
  font-size: 36px;
  display: block;
}

.column-title small {
  font-size: 14px;
  text-transform: uppercase;
  color: #b4b4b4;
  margin-bottom: 20px;
  display: block;
}

.column-title span {
  color: #1877f2;
}

.column-title.light {
  font-weight: 600;
  margin-bottom: 20px;
}

/* Animated Title Border */
.animate-border {
  position: relative;
  display: block;
  width: 115px;
  height: 3px;
  background: #1877f2;
}

.animate-border:after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  left: 5%;
  bottom: 0;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
}

.animate-border.border-white:after {
  border-color: #fff;
}

.animate-border.border-yellow:after {
  border-color: #F5B02E;
}

.animate-border.border-orange:after {
  border-right-color: #1877f2;
  border-left-color: #1877f2;
}

.animate-border.border-ash:after {
  border-right-color: #EEF0EF;
  border-left-color: #EEF0EF;
}

.animate-border.border-offwhite:after {
  border-right-color: #F7F9F8;
  border-left-color: #F7F9F8;
}

.animate-border.border-black:after {
  border-right-color: #151414;
  border-left-color: #151414;
}

.animate-border.border-green:after {
  border-right-color: #28BBA1;
  border-left-color: #28BBA1;
}

@-webkit-keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px);
  }
}

@keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px);
  }
}

/* Animated heading border */
@-webkit-keyframes primary-short {
  0% {
    width: 15%;
  }
  50% {
    width: 90%;
  }
  100% {
    width: 10%;
  }
}

@keyframes primary-short {
  0% {
    width: 15%;
  }
  50% {
    width: 90%;
  }
  100% {
    width: 10%;
  }
}

@-webkit-keyframes primary-long {
  0% {
    width: 80%;
  }
  50% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}

@keyframes primary-long {
  0% {
    width: 80%;
  }
  50% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}

/* Bottom Border */
.bottom-border {
  width: 50px;
  height: 3px;
  display: block;
  position: relative;
}

.bottom-border:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  content: "";
  background-color: #1877f2;
}

.bottom-border:after {
  width: 80%;
  height: 100%;
  top: 0;
  right: 0;
  content: "";
  position: absolute;
  background-color: #1877f2;
}

.bottom-border.bottom-border-green:before, .bottom-border.bottom-border-green:after {
  background-color: #32CC73;
}

.bottom-border.bottom-border-yellow:before, .bottom-border.bottom-border-yellow:after {
  background-color: #FFB72F;
}

/* Text Color */
.text-orange {
  color: #1877f2 !important;
}

.text-shamrock {
  color: #2BC2A7 !important;
}

.text-yellow {
  color: #FFB72F !important;
}

.text-black {
  color: #2f2c2c !important;
}

/* Font Weight */
.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

/* No padding */
.no-padding {
  padding: 0;
}

/* Button */
.btn {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  position: relative;
  z-index: 99;
}

.btn-lg {
  padding: 16px 45px;
}

.btn-primary {
  border: 1px solid #1877f2;
  background: #1877f2;
}

.btn-primary:hover {
  background: #029AED;
  border-color: #029AED;
}

.btn-secondary {
  background-color: #f9057c;
  border-color: #f9057c;
}

.btn-secondary:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.btn-dark {
  background: #2E2C2D;
  border-color: #2E2C2D;
}

.btn-dark:hover {
  background: #FFB72F;
  border-color: #FFB72F;
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
}

.btn-white:hover {
  background-color: #fff;
  border-color: #fff;
}

.owl-carousel {
  z-index: auto;
}

.owl-carousel img {
  width: auto !important;
}

/* Carousel Black Dots */
.carousel-black-dots .owl-dots button.owl-dot {
  background: #92908E !important;
}

.carousel-black-dots .owl-dots button.owl-dot.active {
  background: #362F2D !important;
}

/* No Border */
.no-border {
  border: none !important;
}

/* Testimonial */
.testimonial-bg {
  position: absolute;
  bottom: 40px;
  left: 60px;
  width: 72px;
  height: 65px;
  border-radius: 8px;
  display: table;
}

.testimonial-bg-orange {
  background-color: #1877f2;
}

.testimonial-bg-orange:after {
  border-color: #1877f2 transparent transparent #1877f2;
}

.testimonial-bg-green {
  background-color: #32CC73;
}

.testimonial-bg-green:after {
  border-color: #32CC73 transparent transparent #32CC73;
}

.testimonial-bg-yellow {
  background-color: #FFB72F;
}

.testimonial-bg-yellow:after {
  border-color: #FFB72F transparent transparent #FFB72F;
}

.testimonial-icon {
  display: table-cell;
  vertical-align: middle;
}

.testimonial-icon img {
  display: block;
  margin: 0 auto;
}

/* ************************* Header  ****************************/
/*************************** Nav ********************************/
.tw-header {
  background: #fff;
  -webkit-box-shadow: 0px 7px 8px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 7px 8px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
}

.tw-head {

  background: #fff;
  -webkit-box-shadow: 0 7px 8px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0 7px 8px 0px rgba(0, 0, 0, 0.06);
 z-index: 2;
 /* position: relative;
  z-index: 2;*/
  
    /*-webkit-box-shadow: none;*/
/*  box-shadow: none;
  background: #fff;*/
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.navbar {
  padding: 0;
}

ul.navbar-nav li.nav-item > a {
  padding: 18px 10px;
}

nav.navbar {
  position: relative;
  z-index: 1;
  padding: 0;
}

.tw-nav-brand {
  position: relative;
  z-index: 2;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, .9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-light .navbar-toggler {
  border-color: #1877f2;
  background-color: #1877f2;
}

.navbar-light .navbar-toggler:hover {
  cursor: pointer;
}

ul.navbar-nav li {
  margin: 0 0;
}

ul.navbar-nav a {
  display: block;
  position: relative;
  border-radius: 50px;
}

ul.navbar-nav > li.nav-item.active > a {
  color: #1877f2 !important;
}

ul.navbar-nav > li.nav-item.active > a:after {
  opacity: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: #1877f2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  visibility: visible;
}

ul.navbar-nav > li.nav-item.active:hover > a {
  color: #1877f2;
}

ul.navbar-nav > li.nav-item:hover > a:after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

ul.navbar-nav > li.nav-item > a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;
  height: 3px;
  content: "";
  background: #1877f2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

ul.navbar-nav > li.nav-item > a.nav-link {
  position: relative;
  z-index: 2;
}

/* ==========================

               Navbar Link

      =============================*/
.navbar-light .navbar-nav .nav-link {
  color: #2e2c2d;
  font-weight: 600;
  font-size: 17px;
  margin-right: 12px;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: #1877f2;
}

span.tw-indicator:after {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.tw-social-links {
  position: relative;
}

.tw-social-links ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.tw-social-links li {
  display: inline-block;
  padding-left: 20px;
}

.tw-social-links a {
  display: block;
  font-size: 14px;
  color: #2f2c2c;
}

.tw-social-links a:hover {
  color: #1877f2;
}

/* ==========================

            Dropdown Menu

      =============================*/
.dropdown-menu.show {
  display: none;
}

li.dropdown:hover ul.tw-dropdown-menu {
  -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.08);
}

ul.tw-dropdown-menu {
  width: 285px;
  padding: 16px 30px 33px;
  margin: 0;
  border: none;
  border-radius: 0;
  z-index: -1;
}

ul.tw-dropdown-menu li {
  display: block;
  padding: 7px 0;
}

ul.tw-dropdown-menu li a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #757575;
}

ul.tw-dropdown-menu li a:hover {
  color: #1877f2;
}

ul.tw-dropdown-menu li.active a {
  color: #1877f2;
}


/* Mega Menu
=================================== */
.tw-megamenu-wrapper {
  position: static;
  z-index: 1;
}

.tw-mega-menu {
  position: absolute;
  border: none;
  width: 100%;
  margin-top: 0px;
  overflow: hidden;
  z-index: -1;
  padding: 37px 18px 27px 40px;
  -webkit-box-shadow: 2px 0px 5px 0px rgba(0, 0, 0, 0.03), 0px 15px 20px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 2px 0px 5px 0px rgba(0, 0, 0, 0.03), 0px 15px 20px 0px rgba(0, 0, 0, 0.08);
  border-radius: 0;
}

.tw-mega-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.tw-mega-menu a {
  color: #757575;
  font-weight: 600;
}

.tw-mega-menu a:hover {
  color: #1877f2;
}

.tw-mega-menu p {
  color: #757575;
}

.tw-mega-menu:after {
  position: absolute;
  right: -50px;
  content: "";
  bottom: -220px;
  height: 100%;
  width: 100%;
  background: url("../images/mega_menu/mega_menu.png");
  background-repeat: no-repeat;
  background-position: center right;
  z-index: -1;
}

.tw-megamenu-title h3 {
  font-size: 20px;
  color: #2e2c2d;
  font-weight: 700;
  padding-bottom: 3px;
}

.tw-mega-menu ul li {
  padding-bottom: 19px;
}

li.dropdown:hover .tw-mega-menu {
  display: block;
}

/* ==========================

         Search / offcanvas Menu Bar

      =============================*/
.search-bar-fixed {
  position: absolute;
  top: 10%;
  left: 50%;
  margin-left: -25%;
  width: 100%;
}

.search-bar-fixed input[type="text"] {
  padding: 15px 0px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #00000080;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 700;
  width: 50%;
  color: #000;
}

.search-bar-fixed input[type="text"]::-webkit-input-placeholder, .search-bar-fixed input[type="text"]::-moz-placeholder, .search-bar-fixed input[type="text"]:-ms-input-placeholder, .search-bar-fixed input[type="text"]::-ms-input-placeholder, .search-bar-fixed input[type="text"]::-webkit-input-placeholder {
  color: #fff;
}

.search-bar-fixed input[type="text"]::-webkit-input-placeholder, .search-bar-fixed input[type="text"]::-moz-placeholder, .search-bar-fixed input[type="text"]:-ms-input-placeholder, .search-bar-fixed input[type="text"]::-ms-input-placeholder, .search-bar-fixed input[type="text"]::placeholder {
  color: #fff;
}

.search-bar-fixed input:focus {
  outline: none;
}

.search-bar-fixed button[type="submit"] {
  background: transparent;
  border: none;
  color: #000;
  position: relative;
  right: 30px;
}

.search-bar-fixed button[type="submit"]:hover {
  cursor: pointer;
}

.search-bar {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  z-index: 101;
  background: #fff;
  content: "";
  -webkit-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  opacity: 1.1;
  visibility: hidden;
}

.search-bar.active {
  left: 0;
  visibility: visible;
}

.search-bar i.fa-close {
  color: #000;
  position: absolute;
  right: 50px;
  top: 40px;
}

.search-bar i.fa-close:hover {
  cursor: pointer;
}

.offcanvas-menu {
  position: relative;
  z-index: 101;
}

.offcanvas-menu:hover:before {
  cursor: pointer;
}

.offcanvas-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  content: "";
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  visibility: hidden;
}

.offcanvas-menu-overlay.menu-show {
  background: rgba(0, 0, 0, 0.9);
  visibility: visible;
}

.offcanvas-menu-overlay.menu-show:hover {
  cursor: pointer;
}

.offcanvas-wrapper {
  position: fixed;
  width: 400px;
  right: -100%;
  z-index: 3;
  background: #fff;
  padding: 60px 30px;
  height: 100%;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.offcanvas-wrapper .menu-close-btn {
  position: absolute;
  top: 50px;
  right: 40px;
  background: none;
  border: none;
}

.offcanvas-wrapper .menu-close-btn:hover {
  cursor: pointer;
}

.offcanvas-wrapper.active {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.offcanvas-inner > p {
  margin-bottom: 25px;
}

.offcanvas-inner .contact-us {
  margin-top: 0;
}

.offcanvas-inner .contact-us .contact-icon i {
  top: 20px;
}

.offcanvas-inner .logo {
  display: inline-block;
  margin-bottom: 45px;
}

.offcanvas-inner .contact-info {
  margin-top: 35px;
  color: #000;
}

.offcanvas-inner .contact-info h3 {
  color: #000;
}

.offcanvas-inner .contact-info p {
  margin: 0;
}

.offcanvas-inner .footer-social-link {
  margin-top: 60px;
  margin-bottom: 65px;
}

.offcanvas-inner .footer-social-link ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.offcanvas-inner .footer-social-link li {
  display: inline-block;
}

.offcanvas-inner .footer-social-link li a {
  display: block;
  margin-right: 10px;
}

.offcanvas-inner .footer-social-link li a i {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid inherit;
  border-radius: 50%;
  background: #000;
  color: #fff;
}

.offcanvas-inner .footer-social-link li a i.fa-facebook {
  background-color: #1877f2;
}

.offcanvas-inner .footer-social-link li a i.fa-twitter {
  background-color: #55ACEE;
}

.offcanvas-inner .footer-social-link li a i.fa-google-plus {
  background-color: #DD4B39;
}

.offcanvas-inner .footer-social-link li a i.fa-linkedin {
  background-color: #0976B4;
}

.offcanvas-inner .footer-social-link li a i.fa-instagram {
  background-color: #B7242A;
}

.menu-subscribe h3 .noanimate-border {
  top: 15px;
  position: relative;
  display: block;
  width: 55px;
  height: 3px;
  background: #1877f2;
  border-color: #f7f9f8;
}

.menu-subscribe h3 .noanimate-border:after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  left: 10px;
  bottom: 0;
  border-left: 5px solid #fff;
  border-color: #f7f9f8;
}

.menu-subscribe form {
  margin-top: 45px;
}

.tw-off-search {
  background: #2e2c2d;
  /*width: 125px;*/
  width: 80px;
  height: 50px;
  color: #fff;
  border-radius: 25px;
  position: relative;
  z-index: 3;
  right: 0;
  top: 0;
}

.tw-search i {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
}

.tw-search i:hover {
  cursor: pointer;
}

.tw-search:after {
  position: absolute;
  top: 25%;
  left: 48%;
  width: 1px;
  height: 50%;
  background: #4D4B4C;
  content: "";
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.tw-menu-bar {
  width: 30px;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -9px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  text-align: center;
}

.tw-menu-bar span {
  display: block;
  background: #fff;
  height: 2px;
  width: 20px;
  margin: 0 auto;
}

.tw-menu-bar span:nth-child(2) {
  margin: 5px 0;
  width: 30px;
}

.tw-menu-bar:hover {
  cursor: pointer;
}

/*===========================

        Hero area

      ===========================*/
.tw-hero-area {
  text-align: center;
  padding: 100px 0 0;
  position: relative;
  z-index: -1;
  background: #F7F9F8;
}

.tw-hero-area:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  margin-top: -45px;
  z-index: -2;
}

.tw-slider-bg-1 {
  background-size: 100%;
}

.tw-slider-bg-1:after {
  background-image: url("../images/slider/slider_bg_1.jpg");
}

.tw-slider-subtitle {
  color: #757575;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.tw-slider-title {
  color: #2f2c2c;
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 36px;
}

.tw-slider-title span {
  color: #1877f2;
}

/*========================

            Slider area

      ========================*/
.tw-hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: 100%;
}

.tw-hero-slider .owl-nav button {
  position: absolute;
  left: 30px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.tw-hero-slider .owl-nav button:hover {
  left: 35px;
}

.tw-hero-slider .owl-nav button.owl-next {
  left: auto;
  right: 30px;
}

.tw-hero-slider .owl-nav button.owl-next:hover {
  right: 35px;
}

.tw-hero-slider .owl-nav button:focus {
  outline: none;
}

.tw-hero-slider .owl-nav button i {
  font-size: 50px;
  color: #000;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.tw-hero-slider .owl-item .slider-1 .tw-slider-title {
  font-size: 48px;
  margin-bottom: 35px;
}

.tw-hero-slider .owl-item .slider-1 img {
  margin-bottom: 42px;
  margin-left: auto;
  margin-right: auto;
}

.tw-hero-slider .active h1,
.tw-hero-slider .active h4,
.tw-hero-slider .active a {
  -webkit-animation: fadeInDown 300ms both;
  animation: fadeInDown 300ms both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}

.tw-hero-slider .active img {
  -webkit-animation: fadeInUp 300ms both;
  animation: fadeInUp 300ms both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}

.tw-hero-slider .active .slider-1 img {
  -webkit-animation: fadeInDown 300ms both;
  animation: fadeInDown 300ms both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}

.tw-hero-slider .active .slider-1 h1,
.tw-hero-slider .active .slider-1 h4,
.tw-hero-slider .active .slider-1 a {
  -webkit-animation: fadeInUp 300ms both;
  animation: fadeInUp 300ms both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}

.tw-hero-slider .slider-arrow img {
  width: auto;
}

.slider-arrow img {
  position: absolute;
  top: 0;
  left: 0;
  background-size: 100%;
  background-position: center;
  content: "";
}

.slider-arrow img:nth-child(1) {
  left: 30px;
}

.slider-arrow img:nth-child(2) {
  top: auto;
  bottom: 0;
}

.slider-arrow img:nth-child(3) {
  left: auto;
  right: 0;
  bottom: 0;
  top: auto;
}

.slider-1 {
  background: url("../images/slider/slider_bg_1.jpg");
  background-repeat: contain;
  background-position: center;
  background-color: #f7f9f8;
  position: relative;
}

.slider-1.slider-map-pattern {
  background: url("../images/slider/slide_map_pattern.png");
  background-repeat: no-repeat;
  background-position: center 80px;
  background-color: #f7f9f8;
}

.slider-1 .slider-content {
  padding-left: 15px;
  margin-top: 0px;
  padding-top: 80px;
}

.slider-1 .slider-content h1 {
  color: #2f2c2c;
}

.slider-1 .slider-content h1 span {
  color: #1877f2;
}

.slider-1 .slider-content p {
  color: #757575;
}

.slider-2 {
  background-color: #F26744;
  position: relative;
}

.slider-2 .slider-content {
  padding-right: 43px;
}

.slider-3 {
  background-color: #2BC2A7;
  position: relative;
}

.slider-3 .slider-content {
  padding-left: 40px;
}

.slider-wrapper {
  width: 100%;
  height: 750px;
}

.slider-inner {
  vertical-align: middle;
}

.slider-content {
  margin-top: 50px;
}

.slider-content h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 26px;
}

.slider-content h1 span {
  color: #2e2c2d;
}

.slider-content p {
  margin-bottom: 40px;
  color: #757575;
  font-size: 20px;
  line-height: 32px;
}

.slider-img {
  width: 100%;
}

/*==========================

            Features area

      ==========================*/
.tw-features-area {
  z-index: 1;
}

.tw-features-area .column-title {
  margin-right: -32px;
  margin-top: -4px;
}

.tw-features-area:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  content: "";
  background-image: url("../images/features/wave.png");
  z-index: -1;
}

.features-text {
  position: relative;
}

.features-text:after {
  position: absolute;
  left: -48px;
  top: 0;
  width: 2px;
  height: 100%;
  content: "";
  background: #1877f2;
}

.features-box {
  text-align: center;
  background: #fff;
  padding: 32px 44px 32px;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.03);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.03);
  min-height: 315px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.features-box .features-icon {
  margin-bottom: 26px;
  width: 100%;
  height: 50px;
}

.features-box .features-icon-inner {
  vertical-align: middle;
}

.features-box h3 {
  font-size: 24px;
  color: #2f2c2c;
  margin-bottom: 16px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.features-box p {
  margin-bottom: 5px;
}

.features-box a {
  margin-top: 10px;
}

.features-box:hover {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

/*========================

            Analysis area

      ========================*/
input.round-btn {
  font-size: 14px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  background: #1877f2;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.tw-analysis-area {
  background-color: #1877f2;
  z-index: 1;
  overflow: hidden;
  position: relative;
}

.tw-analysis-area .column-title {
  margin-top: -7px;
}

.tw-analysis-area:before {
  position: absolute;
  top: 50%;
  left: -50%;
  width: 150%;
  height: 100px;
  content: "";
  background: rgba(255, 255, 255, 0.541);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
  opacity: 0;
  visibility: hidden;
}

.tw-analysis-area:after {
  position: absolute;
  top: 50%;
  left: -50%;
  width: 150%;
  height: 100px;
  content: "";
  background: rgba(255, 255, 255, 0.541);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
  opacity: 0;
  visibility: hidden;
  left: auto;
  right: -50%;
}

.tw-analysis-area:hover:before {
  left: 100%;
  visibility: visible;
  opacity: 1;
}

.tw-analysis-area:hover:after {
  right: 100%;
  visibility: visible;
  opacity: 1;
}

.analysis-bg-pattern img {
  position: absolute;
  top: 0;
  left: 0;
}

.analysis-bg-pattern img:nth-child(1) {
  top: 15px;
  left: 10px;
}

.analysis-bg-pattern img:nth-child(2) {
  left: auto;
  top: 80px;
  right: 5px;
}

.analysis-bg-pattern img:nth-child(3) {
  top: auto;
  bottom: -55px;
  left: 0;
}

.analysis-bg-pattern img:nth-child(4) {
  top: auto;
  left: auto;
  bottom: -35px;
  right: 295px;
}

.analysis-form {
  margin-top: 37px;
  margin-bottom: -15px;
}

.analysis-form input[type=url], .analysis-form input[type=email] {
  border-radius: 50px;
  padding: 15px 30px;
  border: none;
}

.analysis-form input[type=url]:focus {
  outline: solid 0;
}

.analysis-form input[type=email] {
  position: relative;
}

.analysis-form input[type=email]:focus {
  outline: solid 0;
}

.analysis-form input[type=submit] {
  font-size: 14px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  background: #2f2c2c;
  color: #fff;
  padding: 13px 37px;
  border-radius: 50px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  border: none;
  position: relative;
  z-index: 2;
}

.analysis-form input[type=submit]:hover {
  cursor: pointer;
}

.analysis-form:focus {
  outline: solid 0;
}

.tw-form-round-shape {
  position: relative;
  z-index: 1;
  margin: 0 -45px 0 0;
  right: -43px;
}

.tw-form-round-shape:after {
  position: absolute;
  top: -2px;
  right: -5px;
  width: 58px;
  height: 58px;
  background: #1877f2;
  display: block;
  content: "";
  border-radius: 100%;
}

/*=======================

            Intro area

      =======================*/
.tw-intro-area {
  background-color: #fff;
  color: #757575;
}

.tw-intro-area h2 {
  margin-bottom: 25px;
}

.tw-intro-area p {
  line-height: 28px;
  margin-bottom: 30px;
}

.tw-intro-area .btn {
  margin-top: 36px;
  margin-right: 20px;
}

.tw-intro-area img {
  margin-top: 20px;
}

.tw-ellipse-pattern img {
  position: absolute;
  top: -110px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 545px;
  height: 255px;
}

.intro-list {
  margin-bottom: 40px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.intro-list li {
  display: block;
  margin-bottom: 12px;
}

.intro-list li:before {
  font-family: fontAwesome;
  content: "\f00c";
  color: #FA704D;
  margin-right: 20px;
}

.intro-list li:last-child {
  margin-bottom: 0;
}

/* ==========================

               FuncFacts

      =============================*/
.tw-facts {
  background-color: #f7f9f8;
  z-index: 2;
  padding: 80px 0;
}

.facts-bg-pattern img {
  position: absolute;
  left: 17px;
  bottom: 47px;
  background-position: left center;
  background-repeat: no-repeat;
  z-index: -1;
}

.facts-bg-pattern img:nth-child(2) {
  left: auto;
  right: 0;
  bottom: 36px;
}

.facts-title {
  margin: 25px 0;
}

.facts-content {
  color: #1877f2;
}

.facts-content span {
  font-size: 48px;
  font-weight: 700;
}

.facts-content sup {
  top: -17px;
  left: -4px;
  font-size: 30px;
  font-weight: 600;
}

/* ==========================

               Service Area

      =============================*/
.service-icon-bg-1 {
  background: url("../images/services/service_bg1.png");
}

.service-icon-bg-2 {
  background: url("../images/services/service_bg2.png");
}

.service-icon-bg-3 {
  background: url("../images/services/service_bg3.png");
}

.service-icon-bg-4 {
  background: url("../images/services/service_bg4.png");
}

.service-icon-bg-5 {
  background: url("../images/services/service_bg5.png");
}

.service-icon-bg-6 {
  background: url("../images/services/service_bg6.png");
}

.service-icon {
  width: 100%;
  position: relative;
  z-index: 2;
  height: 126px;
  margin-bottom: 25px;
  background-repeat: no-repeat;
  background-position: center;
}

.service-icon-inner {
  vertical-align: middle;
}

.tw-service-box:hover .service-content h3 {
  color: #1877f2;
}

.service-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.service-content p {
  max-width: 250px;
  margin: 0 auto 10px;
}

/* ==========================

            Case Study

      =============================*/
.tw-case {
  background: #f7f9f8;
}

.tw-case .btn-lg {
  padding: 16px 55px;
}

.study-bg-1 {
  background: #1877f2;
}

.study-bg-2 {
  background: #2bc2a7;
}

.study-bg-3 {
  background: #ffb72f;
}

.tw-case-study-box:hover .casestudy-content {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.06);
}

.tw-case-study-box:hover .casestudy-content h4 {
  color: #1877f2;
}

.casestudy-content {
  background: #fff;
  padding: 21px 49px 6px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.casestudy-content h4 {
  font-size: 20px;
  margin-bottom: 3px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.casestudy-content p {
  color: #b4b4b4;
}

/* ==========================

          Working Process

      =============================*/
.work-process {
  z-index: 2;
}

.work-process [class*="col"]:nth-child(even) .process-wrapper {
  margin-top: 65px;
}

.work-bg-pattern {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  z-index: -1;
  margin-top: -50px;
  background-position: left center;
}

.tw-work-process {
  text-align: center;
}

.tw-work-process p {
  font-weight: 700;
  color: #2f2c2c;
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 23px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.process-wrapper {
  width: 225px;
  background-color: #32cc73;
  height: 225px;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.process-wrapper:hover {
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.12);
}

.process-inner {
  vertical-align: middle;
  text-align: center;
}

/* ==========================

    Testimonial

=============================*/
.tw-testimonial {
  background: url("../images/testimonial/testimonialbg1.jpg");
  background-size: cover;
  background-position: center;
}

.testimonial-bg-pattern {
  background: url("../images/testimonial/testimonial_white.jpg");
}

.testimonial-default-bg {
  background: url("../images/testimonial/testimonial.jpg") !important;
  background-size: cover;
  background-position: center;
}

.tw-testimonial-content h2 {
  font-weight: 700;
  color: #fff;
}

.tw-testimonial-content p {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 27px;
  max-width: 435px;
}

.tw-testimonial-carousel .owl-stage-outer {
  padding: 50px 0;
}

.tw-testimonial-carousel .owl-item img {
  width: auto;
}

.tw-testimonial-carousel .owl-dots {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  bottom: -30px;
}

.tw-testimonial-carousel .owl-dots button.owl-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #362F2D;
  margin: 4px;
  border-radius: 50%;
}

.tw-testimonial-carousel .owl-dots button.owl-dot.active {
  width: 11px;
  height: 11px;
  background: #fff;
}

.tw-testimonial-carousel:before {
  position: absolute;
  top: 130px;
  left: 23px;
  width: 98%;
  height: 52%;
  content: "";
  background: #f46540;
  -webkit-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  transform: rotate(-6deg);
}

.tw-testimonial-carousel .testimonial-meta {
  margin-left: 90px;
}

.tw-testimonial-wrapper {
  background-color: #362f2d;
  position: relative;
  z-index: 2;
  padding: 55px 60px 40px;
}

.testimonial-text p {
  font-size: 18px;
  color: #fff;
  font-style: italic;
  padding: 10px 0;
}

.testimonial-meta {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.testimonial-meta h4 {
  color: #ffb72f;
  font-weight: 600;
  font-size: 20px;
}

.testimonial-meta h4 small {
  display: block;
  font-size: 14px;
  color: #C3C1C0;
  font-weight: 400;
  margin-top: 5px;
}

.testimonial-meta i {
  position: absolute;
  right: 0px;
  bottom: 0;
  color: #663d32;
  font-size: 50px;
}

/* ==========================

    Pricing Table

=============================*/
.tw-pricing ul.nav {
  width: 350px;
  margin: 0 auto;
  border: 1px solid #e9e9e9;
  border-radius: 50px;
}

.tw-pricing ul.nav .nav-item {
  width: 50%;
  text-align: center;
  border-radius: 50%;
}

.tw-pricing ul.nav .nav-item a {
  padding: 12px 0;
  display: block;
  color: #2f2c2c;
  font-weight: 700;
  border-radius: 50px;
}

.tw-pricing ul.nav .nav-item a.active {
  background: #1877f2;
  border-radius: 50px;
  color: #fff;
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1);
}

.tw-pricing .pricing-featured {
  margin: 0 -30px;
  padding: 0;
  margin-top: -10px;
  padding-bottom: 5px;
  padding-top: 40px;
  position: relative;
  z-index: 2;
  border-radius: 10px;
}

.tw-pricing .pricing-featured .pricing-price,
.tw-pricing .pricing-featured .pricing-feaures {
  margin-top: 35px;
}

.tw-pricing .pricing-featured .btn {
  margin-top: 12px;
}

.pricing-tab ul.nav {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tw-tab-content {
  margin-top: 90px;
}

.tw-pricing-box {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding-top: 28px;
  margin-top: 35px;
  text-align: center;
}

.tw-pricing-box .btn {
  margin-bottom: 36px;
}

.tw-pricing-box:hover {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.tw-pricing-box:hover .pricing-feaures h3 {
  color: #1877f2;
}

.tw-pricing-box:hover .pricing-price sup,
.tw-pricing-box:hover .pricing-price strong {
  color: #1877f2;
}

.tw-pricing-box:hover .btn {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #1877f2;
  border-color: #1877f2;
}

.border-left-radius {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.border-right-radius {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.price-icon-bg {
  height: 227px;
  display: table;
  width: 100%;
  /*background: url("../images/pricing/pricing_icon_bg.png");*/
  background-position: left;
  background-repeat: no-repeat;
}

.price-icon-bg .price-icon {
  text-align: left;
  display: table-cell;
  vertical-align: middle;
}

.pricing-feaures {
  text-align: left;
  margin-top: 15px;
}

.pricing-feaures h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 22px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.pricing-feaures ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-feaures ul li {
  display: block;
  margin-bottom: 5px;
}

.pricing-price {
  margin: 30px 0 25px;
  text-align: left;
}

.pricing-price sup {
  color: #2f2c2c;
  top: -21px;
  left: 1px;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.pricing-price strong {
  font-size: 48px;
  color: #2f2c2c;
  font-weight: 700;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* ==========================

    Blog

=============================*/
.tw-blog {
  background-color: #F7F9F8;
}

.tw-latest-post {
  background: #fff;
  padding-bottom: 20px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.tw-latest-post:hover {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.tw-latest-post:hover .tw-latest-post .post-title a,
.tw-latest-post:hover .post-info .post-title a {
  color: #1877f2;
}

.latest-post-media {
  margin-bottom: 20px;
}

.post-body {
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

.post-item-date {
  position: absolute;
  height: 100%;
}

.post-item-date:before {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  background: #DCDCDC;
  width: 1px;
  height: 100%;
}

.post-item-date:after {
  position: absolute;
  bottom: 0;
  width: 14px;
  height: 14px;
  content: "";
  background: #F76641;
  left: 50%;
  margin-left: -7px;
  border-radius: 50%;
  border: 2px solid #DCDCDC;
}

.post-date {
  width: 60px;
  height: 60px;
  background: #F76641;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 3;
  font-weight: 800;
  font-size: 20px;
  padding-top: 10px;
}

.post-date .month {
  display: block;
  font-weight: 300;
  font-size: 14px;
  margin-top: -10px;
}

.post-info {
  margin-left: 80px;
}

.post-info .post-title {
  padding-bottom: 7px;
  font-size: 20px;
}

.post-info .post-title a {
  color: #2f2c2c;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.post-info .entry-content p {
  font-size: 15px;
  padding-right: 10px;
}

.post-meta {
  padding-top: 20px;
  padding-bottom: 7px;
}

.post-meta a {
  color: #2f2c2c;
}

/* ==========================

    Clietns

=============================*/
.tw-client {
  padding-bottom: 190px;
}

.clients-carousel {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.clients-carousel .owl-item img {
  width: auto;
  margin: 0 auto;
}

.clients-carousel .owl-dots {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 110px;
}

.clients-carousel .owl-dots button.owl-dot {
  display: inline-block;
  background: #CDCBCA;
  width: 7px;
  height: 7px;
  margin: 4px;
  border-radius: 50%;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.clients-carousel .owl-dots button.owl-dot.active {
  width: 11px;
  height: 11px;
  background: #362F2D;
}

.client-logo-wrapper {
  width: 100%;
}

.client-logo {
  text-align: center;
  vertical-align: middle;
}

/* ==========================

    Footer

=============================*/
.tw-footer {
  padding: 75px 0 0;
  background-color: #151414;
  position: relative;
  z-index: 2;
}

.tw-footer .contact-us {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 80px;
}

.tw-footer .contact-us .contact-info {
  margin-left: 50px;
}

.tw-footer .contact-us.contact-us-last {
  margin-left: -80px;
}

.tw-footer .contact-icon i {
  font-size: 24px;
  top: -15px;
  position: relative;
  color: #1877f2;
}

.tw-footer-info-box {
  position: absolute;
  top: -122px;
  background: #202020;
  padding: 40px;
  z-index: 2;
}

.tw-footer-info-box .footer-social-link h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 25px;
}

.tw-footer-info-box .footer-social-link ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.tw-footer-info-box .footer-social-link li {
  display: inline-block;
}

.tw-footer-info-box .footer-social-link a i {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  background: #000;
  margin-right: 5px;
  color: #fff;
}

.tw-footer-info-box .footer-social-link a i.fa-facebook {
  background-color: #1877f2;
}

.tw-footer-info-box .footer-social-link a i.fa-twitter {
  background-color: #55ACEE;
}

.tw-footer-info-box .footer-social-link a i.fa-google-plus {
  background-color: #DD4B39;
}

.tw-footer-info-box .footer-social-link a i.fa-linkedin {
  background-color: #0976B4;
}

.tw-footer-info-box .footer-social-link a i.fa-instagram {
  background-color: #B7242A;
}

.footer-awarad {
  margin-top: 285px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-awarad p {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-left: 20px;
  padding-top: 15px;
}

.footer-info-text {
  margin: 26px 0 32px;
}

.footer-left-widget {
  padding-left: 80px;
}

.footer-widget .section-heading {
  margin-bottom: 35px;
}

.footer-widget h3 {
  font-size: 24px;
  color: #fff;
  position: relative;
  margin-bottom: 15px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.footer-widget ul {
  width: 50%;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-widget li {
  margin-bottom: 18px;
}

.footer-widget p {
  margin-bottom: 27px;
}

.footer-widget a {
  color: #878787;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer-widget a:hover {
  color: #1877f2;
}

.footer-widget:after {
  content: "";
  display: block;
  clear: both;
}

.tw-footer-form {
  position: relative;
}

.tw-footer-form input[type=email] {
  padding: 14px 28px;
  border-radius: 50px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
}

.tw-footer-form input::-webkit-input-placeholder, .tw-footer-form input::-moz-placeholder, .tw-footer-form input:-ms-input-placeholder, .tw-footer-form input::-ms-input-placeholder, .tw-footer-form input::-webkit-input-placeholder {
  color: #878787;
  font-size: 14px;
}

.tw-footer-form input::-webkit-input-placeholder, .tw-footer-form input::-moz-placeholder, .tw-footer-form input:-ms-input-placeholder, .tw-footer-form input::-ms-input-placeholder, .tw-footer-form input::placeholder {
  color: #878787;
  font-size: 14px;
}

.tw-footer-form button[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 24px 12px 17px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border: 1px solid #1877f2;
  background: #1877f2;
  color: #fff;
}

.tw-footer-form button:hover {
  cursor: pointer;
}

/* ==========================

    Contact

=============================*/
.contact-us {
  position: relative;
  z-index: 2;
  margin-top: 65px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-icon {
  position: absolute;
}

.contact-icon i {
  font-size: 36px;
  top: -5px;
  position: relative;
  color: #1877f2;
}

.contact-info {
  margin-left: 75px;
  color: #fff;
}

.contact-info h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
}

.copyright {
  padding: 28px 0;
  margin-top: 80px;
  background-color: #202020;
}

.copyright span,
.copyright a {
  color: #878787;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.copyright a:hover {
  color: #1877f2;
}

.copyright-menu ul {
  text-align: right;
  margin: 0;
}

.copyright-menu li {
  display: inline-block;
  padding-left: 20px;
}

.back-to-top {
  position: relative;
  z-index: 2;
}

.back-to-top .btn-dark {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2e2e2e;
  border-color: #2e2e2e;
  display: none;
  z-index: 999;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.back-to-top .btn-dark:hover {
  cursor: pointer;
  background: #1877f2;
  border-color: #1877f2;
}

/* Sub Pages
================================================== */
/*-- Banner --*/
.banner-area {
  position: relative;
  color: #fff;
  background-position: 50% 50%;
  background-size: cover;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.banner-area .container {
  position: relative;
}

.banner-title {
  color: #1877f2;
  font-size: 60px;
  font-weight: 800;
}

.banner-heading {
  width: 100%;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  min-height: 350px;
}

.breadcrumb {
  background: transparent;
}

.breadcrumb li a {
  color: #fff;
  font-weight: 600;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.breadcrumb li a:hover {
  color: #FFB72F;
}

.breadcrumb li:last-child:before {
  color: #fff;
  content: "/\00a0";
  padding: 0 5px;
}

/* News Post */
.tw-news-post {
  background: #fff;
  padding-bottom: 30px;
  border-bottom: 1px solid #E4E4E4;
  margin-bottom: 50px;
}

.tw-news-post .entry-content {
  margin-left: 80px;
  margin-bottom: 25px;
}

.entry-header {
  margin-left: 80px;
}

.entry-header .entry-title {
  font-size: 30px;
  font-weight: 600;
  margin: 25px 0;
}

.entry-header .entry-title a {
  color: #2f2c2c;
}

.entry-header .post-meta span {
  color: #b4b4b4;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.entry-header .post-meta a {
  color: #b4b4b4;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.entry-header .post-meta a:hover {
  color: #1877f2;
}

.post-media {
  margin-bottom: 20px;
}

.post-meta span {
  margin-right: 40px;
}

.post-meta span i {
  padding-right: 10px;
  color: #b4b4b4;
}

.post-footer {
  margin-left: 80px;
}

.post-footer .btn {
  font-size: 14px;
  padding: 11px 30px;
}

.post-footer .btn i {
  padding-left: 10px;
  font-weight: 700;
}

.post-media.post-video {
  position: relative;
  z-index: 2;
}

.post-media.post-video:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #202020;
  content: "";
  opacity: 0.8;
}

.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -35px;
  margin-top: -35px;
}

.video-icon i {
  font-size: 70px;
  color: #1877f2;
}

.pagination li a {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #F7F7F7;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 8px;
  color: #757575;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.pagination li a i {
  font-weight: 700;
}

.pagination li a:hover {
  background-color: #1877f2;
  color: #fff;
}

.pagination li.active a {
  background-color: #1877f2;
  color: #fff;
}

/* Right News side Bar */
/* Widgets Title */
.widget .widget-title {
  font-weight: 700;
  color: #2f2c2c;
  position: relative;
  z-index: 2;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.widget .noanimate-border {
  top: 15px;
  position: relative;
  display: block;
  width: 55px;
  height: 3px;
  background: #1877f2;
  border-color: #f7f9f8;
}

.widget .noanimate-border:after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  left: 10px;
  bottom: 0;
  border-left: 5px solid #fff;
  border-color: #f7f9f8;
}

/* Search */
.sidebar-right .widget {
  padding: 40px;
  margin-bottom: 30px;
}

.sidebar-right .widget.widget-search {
  padding: 0;
}

.sidebar-right .widget.widget-search .input-group input {
  background-color: #f7f9f8;
  border-radius: 50px;
  padding: 16px 25px;
  position: relative;
  z-index: 2;
  border: none;
}

.sidebar-right .widget.widget-search .input-group input:focus {
  border-color: transparent;
}

.sidebar-right .widget.widget-search .input-group input::-webkit-input-placeholder {
  color: #757575;
  font-weight: 600;
  font-size: 16px;
}

.sidebar-right .widget.widget-search .input-group input:-ms-input-placeholder {
  color: #757575;
  font-weight: 600;
  font-size: 16px;
}

.sidebar-right .widget.widget-search .input-group input::-ms-input-placeholder {
  color: #757575;
  font-weight: 600;
  font-size: 16px;
}

.sidebar-right .widget.widget-search .input-group input::placeholder {
  color: #757575;
  font-weight: 600;
  font-size: 16px;
}

.sidebar-right .widget.widget-search .input-group span i {
  position: absolute;
  right: 25px;
  font-size: 20px;
  z-index: 3;
  top: 50%;
  margin-top: -10px;
}

.sidebar-right .widget-adds {
  padding: 0;
}

.sidebar-right .widget-adds img {
  width: 100%;
}

.sidebar-left .widget {
  padding: 40px;
  margin-bottom: 30px;
}

.sidebar-left .widget.widget-search {
  padding: 0;
}

.sidebar-left .widget.widget-search .input-group input {
  background-color: #f7f9f8;
  border-radius: 50px;
  padding: 16px 25px;
  position: relative;
  z-index: 2;
  border: none;
}

.sidebar-left .widget.widget-search .input-group input:focus {
  border-color: transparent;
}

.sidebar-left .widget.widget-search .input-group input::-webkit-input-placeholder {
  color: #757575;
  font-weight: 600;
  font-size: 16px;
}

.sidebar-left .widget.widget-search .input-group input:-ms-input-placeholder {
  color: #757575;
  font-weight: 600;
  font-size: 16px;
}

.sidebar-left .widget.widget-search .input-group input::-ms-input-placeholder {
  color: #757575;
  font-weight: 600;
  font-size: 16px;
}

.sidebar-left .widget.widget-search .input-group input::placeholder {
  color: #757575;
  font-weight: 600;
  font-size: 16px;
}

.sidebar-left .widget.widget-search .input-group span i {
  position: absolute;
  right: 25px;
  font-size: 20px;
  z-index: 3;
  top: 50%;
  margin-top: -10px;
}

.sidebar-left .widget-adds {
  padding: 0;
}

.sidebar-left .widget-adds img {
  width: 100%;
}

/* Widget Ads */
.sidebar-right .widget-adds,
.sidebar-left .widget-adds {
  padding: 0;
}

.sidebar-right .widget-adds img,
.sidebar-left .widget-adds img {
  width: 100%;
}

/* Recent Posts */
.widget {
  background-color: #f7f9f8;
}

.widget ul.widget-list {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.widget ul.widget-list li {
  display: block;
  border-bottom: 1px dashed #ddd;
  padding: 16px 0;
  position: relative;
}

.widget ul.widget-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.widget ul.widget-list li a {
  color: #757575;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.widget ul.widget-list li span {
  position: absolute;
  top: 16px;
  right: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.widget ul.widget-list li:hover a,
.widget ul.widget-list li:hover span {
  color: #1877f2;
}

.widget.recent-posts .unstyled {
  margin: 35px 0 0 -40px;
  padding-top: 20px;
}

.widget.recent-posts .unstyled .media {
  margin-bottom: 15px;
  border-bottom: 1px dashed #DADADA;
  padding-bottom: 15px;
}

.widget.recent-posts .unstyled .media:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.widget.recent-posts .media-left img {
  width: 75px;
  height: 60px;
  border-radius: 3px;
}

.widget.recent-posts .entry-title {
  padding-left: 20px;
  margin-bottom: 0;
  line-height: normal;
}

.widget.recent-posts .entry-title a {
  font-size: 16px;
  color: #757575;
  font-weight: 400;
  line-height: 1.6;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.widget.recent-posts .entry-title a:hover {
  color: #1877f2;
}

.widget.recent-posts .media-middle {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

/* Widget tags */
.sidebar .widget-tags {
  margin-top: 40px;
}

.sidebar .widget-tags ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 50px;
}

.sidebar .widget-tags ul > li {
  float: left;
  margin: 3px;
}

.sidebar .widget-tags ul > li a {
  border: 1px solid #E2E2E2;
  color: #757575;
  display: inline-block;
  font-size: 14px;
  padding: 10px 20px;
  margin: 0 3px 3px 0;
  border-radius: 25px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.sidebar .widget-tags ul > li a:hover {
  background: #1877f2;
  color: #fff;
  border: 1px solid transparent;
}

/* News Single Pages
================================================== */
/* Post Single */
.post-single .entry-header {
  margin-left: 0;
}

.post-single .entry-header .post-meta span {
  margin-right: 20px;
}

.post-single .entry-header .post-meta span .day {
  margin: 0;
}

.post-single .entry-header .post-meta span i {
  padding-right: 5px;
}

.post-single .entry-header .post-meta .post-author a {
  color: #2f2c2c;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.post-single .post-body {
  padding-left: 0;
}

.post-single .entry-content blockquote {
  background: #f5f5f5;
  padding: 80px 30px 30px 45px;
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

.post-single .entry-content blockquote p {
  font-size: 18px;
  color: #2f2c2c;
  line-height: 1.6;
  padding-top: 8px;
  padding-bottom: 20px;
}

.post-single .entry-content blockquote cite {
  position: absolute;
  right: 25px;
  bottom: 25px;
  font-style: normal;
  color: #1877f2;
  font-weight: 700;
  font-size: 16px;
}

.post-single .entry-content blockquote:after {
  position: absolute;
  top: 30px;
  left: 40px;
  content: "\e937";
  font-family: iconfont;
  font-size: 60px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.post-single .entry-content h3 {
  font-size: 24px;
  padding: 20px 0;
}

.post-single .entry-content ul.list-round {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  border-bottom: 1px solid #8F8C8C;
}

.post-single .entry-content ul.list-round li {
  padding-bottom: 15px;
}

.post-single .entry-content ul.list-round li:before {
  font-family: fontAwesome;
  content: "\f111";
  font-size: 8px;
  color: #222222;
  vertical-align: middle;
  margin-right: 15px;
}

.post-single .post-footer {
  margin-left: 0;
  padding: 30px 0;
}

.post-single .post-footer strong {
  color: #2f2c2c;
  font-weight: 700;
  margin-right: 10px;
}

.post-single .post-footer .post-tags a {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #F1F1F1;
  border-radius: 50px;
  color: #757575;
  font-size: 14px;
  margin-right: 10px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.post-single .post-footer .post-tags a:hover {
  background: #1877f2;
  color: #fff;
}

.post-single .post-footer .post-social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-single .post-footer .post-social-icons li {
  display: inline-block;
}

.post-single .post-footer .post-social-icons a i {
  margin-right: 8px;
  height: 30px;
  width: 30px;
  border-radius: 3px;
  background: #000;
  display: block;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
}

.post-single .post-footer .post-social-icons a i.fa-facebook {
  background-color: #1877f2;
}

.post-single .post-footer .post-social-icons a i.fa-twitter {
  background-color: #55ACEE;
}

.post-single .post-footer .post-social-icons a i.fa-google-plus {
  background-color: #DD4B39;
}

.post-single .post-footer .post-social-icons a i.fa-linkedin {
  background-color: #0976B4;
}

.post-single .post-footer .post-social-icons a i.fa-instagram {
  background-color: #B7242A;
}

/* Author Box */
.author-box {
  border: 1px solid #F1F1F1;
  padding: 40px;
}

.author-box .author-img {
  float: left;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.author-box .author-info {
  margin-left: 100px;
}

.author-box .author-info h3 {
  font-size: 20px;
  font-weight: 700;
}

.author-box .author-info .author-url a {
  color: #cacaca;
  font-size: 14px;
}

/* Post Navigation */
.post-navigation {
  border-bottom: 1px solid #F1F1F1;
  padding: 35px 0;
}

.post-navigation .post-previous,
.post-navigation .post-next {
  padding: 0 40px;
  width: 50%;
  border-left: 1px solid #F1F1F1;
  border-right: 1px solid #F1F1F1;
  display: table-cell;
  position: relative;
  vertical-align: middle;
}

.post-navigation .post-previous {
  text-align: left;
  float: left;
  border-left: 0 none;
  border-right: 0 none;
  padding: 0 40px 0 0;
}

.post-navigation .post-next {
  text-align: right;
  float: left;
  border-right: 0 none;
  padding: 0 0 0 40px;
}

.post-navigation i {
  margin: 0 5px;
}

.post-navigation span {
  font-size: 14px;
  margin-bottom: 10px;
  color: #757575;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: inline-block;
  margin-top: 5px;
}

.post-navigation span:hover {
  color: #1877f2;
}

.post-navigation h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 8px 0 0;
}

/* Comments And Reply*/
.comments-list {
  list-style: none;
}

.comments-list .comments-reply {
  list-style: none;
}

.comment {
  overflow: hidden;
  margin-bottom: 30px;
}

.comment .comment-avatar {
  float: left;
}

.comment .meta-data span {
  display: block;
}

.comment:not(:first-child) {
  border-top: 1px solid #F1F1F1;
  padding-top: 30px;
}

h3.comments-heading {
  font-size: 24px;
  padding: 35px 0;
}

.comment-body {
  margin-left: 100px;
}

.meta-data {
  margin-bottom: 10px;
}

.meta-data span {
  display: block;
}

.meta-data .comment-author {
  color: #2f2c2c;
  font-weight: 700;
}

.meta-data .comment-date {
  font-size: 14px;
  color: #757575;
  margin-top: 5px;
}

.meta-data a.comment-reply {
  font-size: 14px;
  color: #757575;
}

ul {
  margin-bottom: 20px;
}

ul.comments-reply .comment-body {
  background: #f7f9f8;
  padding: 30px 30px 20px;
}

/* Comments Form */
.comment-border {
  border-top: 1px solid #F1F1F1;
}

.title-normal {
  padding: 40px 0 35px;
  font-size: 24px;
}

.comments-form input {
  padding: 16px 30px;
  border-radius: 50px;
}

.comments-form textarea {
  border-radius: 25px;
  resize: none;
  padding: 30px;
  border: 1px solid #F1F1F1;
}

.comments-form input {
  border: 1px solid #F1F1F1;
}

.comments-form textarea::-webkit-input-placeholder,
.comments-form input::-webkit-input-placeholder,
.comments-form textarea::-moz-placeholder,
.comments-form input::-moz-placeholder,
.comments-form textarea:-ms-input-placeholder,
.comments-form input:-ms-input-placeholder,
.comments-form textarea::-ms-input-placeholder,
.comments-form input::-ms-input-placeholder,
.comments-form textarea::-webkit-input-placeholder,
.comments-form input::-webkit-input-placeholder {
  color: #6d6d6d;
}

.comments-form textarea::-webkit-input-placeholder,
.comments-form input::-webkit-input-placeholder,
.comments-form textarea::-moz-placeholder,
.comments-form input::-moz-placeholder,
.comments-form textarea:-ms-input-placeholder,
.comments-form input:-ms-input-placeholder,
.comments-form textarea::-ms-input-placeholder,
.comments-form input::-ms-input-placeholder,
.comments-form textarea::placeholder,
.comments-form input::placeholder {
  color: #6d6d6d;
}

.comments-form textarea:focus,
.comments-form input:focus {
  outline: 0;
  border-color: #F1F1F1;
}

.comments-form button {
  margin-top: 20px;
}

.comments-form button:hover {
  cursor: pointer;
}

/* About us
============================== */
/* TimeLine */
.tw-timeline-tab {
  padding-top: 0;
}

.timeline-tab .tw-tab-content {
  margin-top: 70px;
}

.timeline-tab ul {
  border-bottom: 1px dashed #F1F1F1;
  position: relative;
  z-index: 2;
  padding-bottom: 25px;
}

.timeline-tab ul li {
  float: left;
  width: 25%;
  text-align: center;
}

.timeline-tab ul li a {
  position: relative;
  padding-bottom: 27px;
  color: #b4b4b4;
  font-weight: 700;
  font-size: 22px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.timeline-tab ul li a:after {
  position: absolute;
  content: "";
  background: #CBCBCB;
  width: 15px;
  height: 15px;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.timeline-tab ul li a.active {
  color: #2f2c2c;
}

.timeline-tab ul li a.active:after {
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  border: 8px solid #1877f2;
  background: #fff;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(247, 102, 65, 0.4);
  box-shadow: 0px 10px 20px 0px rgba(247, 102, 65, 0.4);
}

.timeline-tab ul:after {
  content: "";
  display: block;
  clear: both;
}

.timeline-tab .tab-content h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.timeline-tab .tab-content p {
  line-height: 1.75;
}

/* Mission */
.mission-carousel .row {
  margin-bottom: 60px;
}

.mission-carousel .owl-dots {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mission-carousel .owl-dots button.owl-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #FCB3A0;
  margin: 0 3px;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.mission-carousel .owl-dots button.owl-dot.active {
  width: 11px;
  height: 11px;
  background: #fff;
}

.mission-body {
  padding-left: 20px;
}

.mission-body p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 470px;
}

.tw-mission {
  background: #1877f2;
  color: #fff;
}

.mission-title h2 {
  color: #fff;
  font-size: 32px;
}

/* Our Team */
.tw-team-box:hover .team-name {
  color: #1877f2;
}

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

.team-img img {
  width: 225px;
  height: 225px;
  border-radius: 50%;
}

.team-info {
  text-align: center;
  margin-top: 25px;
}

.team-info .team-name {
  font-size: 24px;
  color: #000000;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.team-info .team-designation {
  color: #b4b4b4;
  margin-bottom: 16px;
}

.team-info .team-social-links a i {
  display: inline-block;
  margin: 0 10px;
  font-size: 20px;
}

.team-info .team-social-links a i.fa-facebook {
  color: #1877f2;
}

.team-info .team-social-links a i.fa-twitter {
  color: #55ACEE;
}

.team-info .team-social-links a i.fa-instagram {
  color: #B7242A;
}

.team-info .team-social-links a i.fa-linkedin {
  color: #0976B4;
}

/* testimonial */
.about-testimonial-content p {
  color: #757575;
}

.about-testimonial .owl-dots button.owl-dot {
  background: #92908E;
}

.about-testimonial .owl-dots button.owl-dot.active {
  background: #362F2D;
}

/* About Us version 2
============================*/
.tw-about-award {
  padding-top: 0;
}

.tw-award-box {
  text-align: center;
  max-width: 215px;
  margin: 0 auto;
}

.tw-award-box .award-icon {
  text-align: center;
}

.tw-award-box h3 {
  font-size: 18px;
  margin-top: 25px;
  line-height: 1.3;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tw-award-box:hover h3 {
  color: #1877f2;
}

/* Timeline V2 */
.timeline-item {
  margin-bottom: 30px;
}

.left-part .timeline-badge {
  left: 100%;
}

.left-part .timeline-panel {
  float: right;
  text-align: right;
  margin-right: 45px;
}

.left-part .timeline-panel:before {
  left: inherit;
  right: -27px;
  top: 15px;
  border-color: #ddd transparent transparent #ddd;
  border-right-width: 25px;
  border-top-width: 15px;
  border-bottom-width: 2px;
}

.left-part .timeline-panel:after {
  top: 16px;
  left: auto;
  right: -23px;
  width: 0;
  height: 0;
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-right-width: 26px;
  border-bottom-width: 1px;
  border-top-width: 16px;
}

.left-part .timeline-date.left-part {
  text-align: left;
}

.timeline-badge {
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  background: #CBCBCB;
  margin-left: -8px;
  border-radius: 50%;
  z-index: 2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.timeline-badge.active {
  width: 28px;
  height: 28px;
  margin-left: -13px;
  border: 8px solid #1877f2;
  background: #fff;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(247, 102, 65, 0.4);
  box-shadow: 0px 10px 20px 0px rgba(247, 102, 65, 0.4);
}

.timeline-wrapper {
  position: relative;
  z-index: 2;
}

.timeline-wrapper .details {
  font-size: 16px;
  color: #757575;
  line-height: 1.75;
  border: 1px solid #E5E5E5;
  padding: 30px;
}

.timeline-wrapper:after {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 95%;
  content: "";
  border: 1px dashed #CBCBCB;
}

.timeline-panel {
  max-width: 420px;
  position: relative;
  z-index: 2;
  background: #fff;
  margin-left: 45px;
}

.timeline-panel:before {
  content: "";
  position: absolute;
  top: 10px;
  left: -27px;
  width: 0;
  height: 0;
  border-style: solid;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-color: #ddd #ddd transparent transparent;
  border-style: solid;
  transition: all 0.3s;
  border-right-width: 25px;
  border-bottom-width: 15px;
}

.timeline-panel:after {
  content: "";
  position: absolute;
  top: 11px;
  left: -24px;
  width: 0;
  height: 0;
  border-style: solid;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-color: #ffffff #fff transparent transparent;
  border-style: solid;
  transition: all 0.3s;
  border-right-width: 25px;
  border-top-width: 3px;
  border-bottom-width: 15px;
}

.timeline-date {
  text-align: right;
  padding-right: 20px;
}

.timeline-date .title,
.timeline-date .tagline {
  padding-left: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.timeline-date .title {
  font-size: 22px;
  color: #2f2c2c;
  margin-bottom: 0;
  font-weight: 700;
}

.timeline-date .tagline {
  color: #757575;
  font-size: 22px;
}

.timeline-date.left-part {
  text-align: left;
}

.timeline-date.active .title,
.timeline-date.active .tagline {
  color: #1877f2;
}

/* Pricing
====================== */
.tw-price-box {
  padding: 30px 0 50px;
  color: #fff;
  text-align: center;
}

.tw-price-box .pricing-price strong {
  color: #fff;
}

.tw-price-box .pricing-price sup {
  color: #fff;
  font-weight: 800;
  font-size: 30px;
}

.tw-price-box .pricing-price small {
  font-size: 20px;
}

.tw-price-box .pricing-icon-wrapper {
  width: 100%;
  height: 120px;
}

.tw-price-box .price-icon {
  vertical-align: middle;
}

/* Contact Us
============ */
.tw-contact-us {
  padding-bottom: 50px;
}

.tw-contact-box {
  background-color: #F7F9F8;
  border-radius: 3px;
  padding: 30px 40px 40px 50px;
}

.tw-contact-box .contact-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.tw-contact-box .contact-heading h3 {
  margin-bottom: 0;
  font-size: 30px;
  margin-left: 15px;
}

.contact-info-box-content:after {
  content: "";
  display: block;
  clear: both;
}

.contact-info-box-content i {
  float: left;
  margin-top: 2px;
}

.contact-info-box-content p {
  margin-left: 35px;
  color: #2f2c2c;
}

/* Map */
.map {
  height: 450px;
  margin-top: 50px;
}

/* Contact us Form */
.alert-success.fade.in {
  opacity: 1;
}

.contact-us-form input[type=text], .contact-us-form input[type=phone], .contact-us-form input[type=email] {
  padding: 16px 30px;
  border-radius: 50px;
  border: 1px solid #8F8C8C;
}

.contact-us-form textarea {
  padding: 16px 30px;
  border-radius: 25px;
  border: 1px solid #8F8C8C;
  resize: none;
}

.contact-us-form textarea:focus, .contact-us-form textarea:active {
  border: 1px solid #8F8C8C;
}

/* Contact Testimonial */
.tw-contact-us-testimonial {
  padding-bottom: 135px;
}

.testimonial-slider .testimonial-meta {
  margin-bottom: 30px;
  margin-top: 0px;
}

.testimonial-slider .testimonial-meta h4 {
  color: #1877f2;
}

.testimonial-slider .testimonial-meta i {
  font-size: 60px;
  color: #FCCCC0;
}

.testimonial-slider .testimonial-text p {
  color: #757575;
}

.testimonial-slider .owl-dots {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  bottom: -30px;
}

.testimonial-slider .owl-dots button.owl-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #CDCBCA;
  margin: 4px;
  border-radius: 50%;
}

.testimonial-slider .owl-dots button.owl-dot.active {
  width: 11px;
  height: 11px;
  background: #362F2D;
}

/* Testimonial
========================== */
.tw-testimonial-no-bg {
  background: #fff;
}

.testimonial-slider .owl-item img {
  width: auto;
}

.testimonial-image {
  margin-bottom: 20px;
}

.testimonial-image img {
  margin: 0 auto;
  border-radius: 100%;
  height: 80px;
}

/* Testimonial variation 2 */
.testimonial-box-carousel .owl-dots {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  bottom: -75px;
}

.testimonial-box-carousel .owl-dots button.owl-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #C3C3C1;
  margin: 4px;
  border-radius: 50%;
}

.testimonial-box-carousel .owl-dots button.owl-dot.active {
  width: 11px;
  height: 11px;
  background: #362F2D;
}

.tw-testimonial-bg {
  background: #F3F5F4;
  padding-bottom: 150px;
}

.tw-testimonial-box {
  position: relative;
  background: #fff;
  padding: 30px;
}

.tw-testimonial-box .testimonial-meta {
  margin-top: 10px;
  margin-left: 100px;
}

.tw-testimonial-box .testimonial-bg {
  left: 30px;
  right: auto;
  top: 30px;
}

.tw-testimonial-box .testimonial-text {
  margin-top: 40px;
}

.tw-testimonial-box .testimonial-text p {
  color: #757575;
  font-size: 16px;
  font-weight: 400;
}

.tw-testimonial-box .testimonial-text i {
  font-size: 25px;
  float: right;
  margin-top: -35px;
}

[class*="col"]:nth-child(1) .tw-testimonial-box .testimonial-meta h4 {
  color: #1877f2;
}

[class*="col"]:nth-child(1) .tw-testimonial-box .testimonial-text i {
  color: #FBB2A0;
}

[class*="col"]:nth-child(2) .tw-testimonial-box .testimonial-meta h4,
[class*="col"]:nth-child(2) .tw-testimonial-box .testimonial-text i {
  color: #32CC73;
}

/* Testimonial variation 3 */
.testimonial-carousel-gray .owl-stage-outer {
  padding-top: 50px;
}

.testimonial-carousel-gray .tw-testimonial-wrapper {
  background: #F3F5F4;
}

.testimonial-carousel-gray .testimonial-bg {
  border-radius: 100%;
}

.testimonial-carousel-gray .testimonial-bg:after {
  left: 10px;
  bottom: -13px;
  -webkit-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  transform: rotate(10deg);
}

.testimonial-gray .testimonial-text p {
  color: #757575;
  font-size: 20px;
}

.testimonial-gray .testimonial-meta {
  padding-left: 100px;
}

.testimonial-gray .testimonial-meta h4,
.testimonial-gray .testimonial-meta i {
  color: #1877f2;
}

/* ===========================

      / * Single Service

   =========================== */
/* Web Analytics */
.tw-web-analytics [class*="row"]:last-child .analytics-img,
.tw-web-analytics [class*="row"]:last-child .tw-web-analytics-content {
  margin-bottom: 0;
}

.tw-web-analytics-content h3 {
  font-size: 30px;
  font-weight: 800;
}

.tw-web-analytics-content p {
  line-height: 1.75;
}

.analytics-img {
  margin-bottom: 100px;
}

.tw-web-analytics-content {
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.tw-web-analytics-content i {
  position: absolute;
  top: -50px;
  left: 0;
  font-size: 100px;
  z-index: -1;
  color: #F4F4F4;
}

/* Chart */
[class*="col"]:nth-child(3) .percent-area > p {
  color: #32CC73;
}

[class*="col"]:nth-child(4) .percent-area > p {
  color: #FFB72F;
}

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

.percent-area > p {
  margin-top: 30px;
  font-weight: 700;
  color: #1877f2;
  font-size: 20px;
}

.percent-area .chart {
  position: relative;
  width: 195px;
  height: 195px;
  padding: 69px 0;
  margin: 0 auto;
}

.percent-area .chart p {
  color: #000;
  font-size: 36px;
  margin-bottom: -5px;
}

.percent-area .chart small {
  font-style: italic;
  color: #b4b4b4;
  display: block;
}

.percent-area .chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

/* Case Study */
.tw-service-case-study:hover .casestudy-content {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.tw-service-case-study .casestudy-content {
  background-color: #f7f9f8;
}

/* Call to Action */
.tw-call-to-action .btn-lg {
  padding: 16px 60px;
}

.call-action-bg-pattern {
  position: relative;
}

.call-action-bg-pattern img {
  position: absolute;
  left: 0;
  z-index: -1;
}

.call-action-bg-pattern img:nth-child(1) {
  top: -50px;
  left: -200px;
}

.call-action-bg-pattern img:nth-child(2) {
  left: auto;
  right: -235px;
  top: -65px;
}

/* Service
============================ */
/* Service List */
.service-list-carousel .owl-nav {
  position: absolute;
  left: -34.5%;
  bottom: 0;
}

.service-list-carousel .owl-nav button.owl-next, .service-list-carousel .owl-nav button.owl-prev {
  display: inline-block;
  background-color: #F7F9F8;
  width: 45px;
  height: 45px;
  color: #1877f2;
}

.service-list-carousel .owl-nav button i {
  font-size: 20px;
  font-weight: 700;
  line-height: 45px;
}

.service-list-carousel .owl-nav button:hover {
  background: #1877f2;
  color: #fff;
}

.tw-service-box-list {
  border: 1px solid #EDEDED;
  border-radius: 3px;
  padding: 40px 25px 10px;
}

.tw-service-box-list h3 {
  font-size: 20px;
  margin: 35px 0 20px;
}

.tw-service-box-list p {
  font-size: 14px;
}

.service-list-bg-1 {
  background: url("../images/services/service_bg1.png");
}

.service-list-bg-2 {
  background: url("../images/services/service_bg2.png");
}

.service-list-bg-3 {
  background: url("../images/services/service_bg3.png");
}

.service-list-bg {
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 126px;
}

.service-list-icon {
  vertical-align: middle;
}

.service-list-icon img {
  margin: 0 auto;
}

/* Service Features */
[class*="col"]:last-child .tw-service-features-box:after {
  display: none;
}

.tw-service-features-box {
  position: relative;
  padding: 0 30px 0;
}

.tw-service-features-box h3 {
  font-size: 24px;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 18px;
}

.tw-service-features-box p {
  margin-bottom: 22px;
}

.tw-service-features-box:after {
  position: absolute;
  width: 1px;
  height: 50%;
  background: #EEEEEE;
  content: "";
  top: 50%;
  left: 100%;
  margin-top: -25%;
  margin-left: 14px;
}

.service-bg-icon-1 {
  background: url("../images/services/service_bg1.png") no-repeat top center;
  height: 127px;
}

.service-feature-icon-bg {
  width: 100%;
}

.service-feature-icon img {
  padding-top: 15px;
}

/* Service Contact form */
.tw-features-contact .section-heading {
  margin-bottom: 0;
}

.tw-features-contact-info > p {
  font-weight: 600;
  line-height: 1.75;
  padding-right: 75px;
}

.tw-features-contact-info .contact-us {
  margin-top: 25px;
}

.tw-features-contact-info .contact-info h3 {
  color: #2f2c2c;
  font-size: 18px;
}

.tw-features-contact-info .contact-info p {
  font-size: 14px;
  color: #2f2c2c;
}

.service-contact-form input::-webkit-input-placeholder,
.service-contact-form textarea::-webkit-input-placeholder,
.service-contact-form input::-moz-placeholder,
.service-contact-form textarea::-moz-placeholder,
.service-contact-form input:-ms-input-placeholder,
.service-contact-form textarea:-ms-input-placeholder,
.service-contact-form input::-ms-input-placeholder,
.service-contact-form textarea::-ms-input-placeholder,
.service-contact-form input::-webkit-input-placeholder,
.service-contact-form textarea::-webkit-input-placeholder {
  color: #6d6d6d;
  font-weight: 600;
}

.service-contact-form input::-webkit-input-placeholder,
.service-contact-form textarea::-webkit-input-placeholder,
.service-contact-form input::-moz-placeholder,
.service-contact-form textarea::-moz-placeholder,
.service-contact-form input:-ms-input-placeholder,
.service-contact-form textarea:-ms-input-placeholder,
.service-contact-form input::-ms-input-placeholder,
.service-contact-form textarea::-ms-input-placeholder,
.service-contact-form input::placeholder,
.service-contact-form textarea::placeholder {
  color: #6d6d6d;
  font-weight: 600;
}

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

/* Single Case Study
======================== */
/* Banner Area */
.case-bg-overlay:after {
  background-color: rgba(32, 32, 32, 0);
}

.banner-heading.case-banner-heading {
  min-height: 550px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.banner-heading .banner-case-title {
  color: #fff;
  font-weight: 700;
}

.banner-heading .banner-case-title span {
  color: #1877f2;
  font-weight: 800;
}

/* Challange Area */
.tw-case-challange .section-heading p {
  padding: 0 80px;
}

.tw-challange-content {
  max-width: 420px;
  text-align: center;
}

.tw-challange-content h3 {
  font-size: 24px;
  margin-top: 40px;
}

.tw-challange-content.challange-left-content {
  margin-left: auto;
}

.challange-bg-pattern {
  position: relative;
  z-index: 2;
}

.challange-bg-pattern:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 50%;
  margin-top: -50px;
  left: 50%;
  margin-left: -50%;
  background: url("../images/cases/single_case_arrow.png") no-repeat top center;
}

/* Case Workign Process */
.tw-case-working-box h3 {
  font-size: 18px;
  color: #2f2c2c;
  margin-top: 25px;
}

.working-icon-wrapper {
  width: 225px;
  height: 225px;
  border-radius: 100%;
  border: 1.8px dashed #B1B1B1;
  display: table;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 10px;
}

.working-icon {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  position: relative;
  border-radius: 50%;
  background: #ffffff;
  background: -webkit-radial-gradient(center, ellipse, #ffffff 0%, #eff3f1 50%);
  background: -o-radial-gradient(center, ellipse, #ffffff 0%, #eff3f1 50%);
  background: radial-gradient(ellipse at center, #ffffff 0%, #eff3f1 50%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eff3f1', GradientType=1);
}

.case-process-number {
  position: absolute;
  right: 5px;
  top: -5px;
  background: #1877f2;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  border-radius: 100%;
  font-size: 20px;
  font-weight: 700;
}

/* Final Result */
.tw-final-result .section-heading {
  margin-bottom: 0;
}

.results-trafiic .traffic-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.results-trafiic span {
  font-size: 18px;
  font-weight: 700;
  color: #2f2c2c;
  padding-top: 5px;
  padding-left: 20px;
}

.result-bg {
  position: relative;
}

.result-bg img {
  position: absolute;
  left: -105%;
  z-index: -1;
}

/* Traffic Result */
.traffic-bg-1 {
  background: url("../images/cases/result_bg1.png") no-repeat top center;
}

.traffic-bg-2 {
  background: url("../images/cases/result_bg2.png") no-repeat top center;
}

.traffic-bg-3 {
  background: url("../images/cases/result_bg3.png") no-repeat top center;
}

.traffic-bg-4 {
  background: url("../images/cases/result_bg4.png") no-repeat top center;
}

.traffic-icon-bg {
  height: 126px;
}

.traffic-icon-bg img {
  padding-top: 25px;
}

.tw-traffic-counter {
  margin-top: 110px;
}

.tw-traffic-counter h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 12px;
}

.tw-traffic-counter p {
  color: #1877f2;
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 0;
}

/* Case
================== */
/* Case Complete */
.tw-cases {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cases-img {
  background: #1877f2;
  -webkit-flex-basis: 23.1%;
  -ms-flex-preferred-size: 23.1%;
  flex-basis: 23.1%;
  margin: 10px;
  border-radius: 5px;
  padding: 5px;
}

.cases-img h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
}

.cases-img span {
  font-size: 14px;
  color: #fff;
}

.cases-img:nth-of-type(even) {
  position: relative;
  top: 90px;
}

.cases-img img {
  padding-bottom: 20px;
}

.tw-case-complete .btn {
  margin-top: 155px;
}

/* Clients */
.tw-clients {
  padding-bottom: 120px;
}

/* Home Variations */
/* Home variation 1 */
.tw-top-bar {
  padding: 5px 0;
  border-bottom: 1px solid #F2F2F2;
}

.tw-top-bar .text-left .top-contact-info span {
  padding-left: 0;
  padding-right: 40px;
}

.tw-top-bar-angle {
  padding: 5px 0;
  border-bottom: 1px solid #F2F2F2;
  position: relative;
  z-index: 2;
}

.tw-top-bar-angle:before {
  position: absolute;
  top: 0px;
  left: 0;
  width: 50%;
  height: 100%;
  content: "";
  background: #2f2c2c;
}

.tw-top-bar-angle:after {
  position: absolute;
  top: 0px;
  left: 50%;
  content: "";
  border-right: 30px solid transparent;
  border-bottom: 10px solid transparent;
  border-top: 38px solid #2f2c2c;
}

.top-bar-angle-info i {
  color: #fff;
  font-size: 14px;
  margin-right: 5px;
}

.top-bar-angle-info span {
  color: #fff;
  font-size: 14px;
  padding-right: 20px;
}

.top-social-links a {
  padding-left: 20px;
}

.top-social-links a i {
  display: inline-block;
  font-size: 14px;
  color: #2f2c2c;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.top-social-links a i:hover {
  color: #1877f2;
}

.top-social-links span {
  color: #2f2c2c;
}

.top-contact-info span {
  font-size: 14px;
  color: #2f2c2c;
  padding-left: 60px;
}

.top-contact-info span i {
  padding-right: 10px;
}

.tw-top-bar-angle .top-contact-info span {
  color: #fff;
  padding-left: 0;
  padding-right: 40px;
}

/* Inline Offcanvas menu */
.inline-menu {
  position: relative;
  top: 0px;
}

.inline-menu span {
  background: #000;
  width: 10px;
}

.tw-offcanvas-menu i {
  padding-right: 25px;
  border-right: 1px solid #E0E0E0;
  margin-right: 30px;
  color: #2f2c2c;
}

.tw-offcanvas-menu i:hover {
  cursor: pointer;
}

.inline-menu span:nth-child(2) {
  width: 20px;
  margin: 3px auto;
}

/* Home variation 3 */
.header-absolute {
  position: relative;
  margin-bottom: -35px;
}

.header-absolute .tw-header {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.tw-header.tw-dark-head {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.dark-nav {
  background: #2f2c2c;
  border-radius: 4px;
}

.dark-nav .tw-nav-brand {
  padding-left: 30px;
  margin-right: 0;
}

.dark-nav > .nav-link {
  padding: 31px 0;
}

.dark-nav .navbar-nav .nav-link {
  color: #fff;
}

.dark-nav button.navbar-toggler {
  right: 15px;
}

.dark-nav .tw-nav-brand {
  position: relative;
}

.dark-nav .navbar-nav {
  padding: 0 0;
}

.dark-nav .navbar-nav .active > .nav-link {
  color: #fff;
}

.dark-nav .navbar-nav li {
  margin: 0 10px;
}

.dark-nav .navbar-nav li.nav-item > a {
  padding: 25px 0;
}

.dark-nav .tw-dropdown-menu {
  background: #2f2c2c;
}

.dark-nav .tw-dropdown-menu li a {
  color: #fff;
}

.dark-nav .tw-mega-menu {
  background: #2f2c2c;
}

.dark-nav .tw-mega-menu li a {
  color: #fff;
}

.dark-nav .tw-mega-menu li a:hover {
  color: #1877f2;
}

.dark-nav .tw-mega-menu .tw-megamenu-title h3,
.dark-nav .tw-mega-menu p {
  color: #fff;
}

.offcanvas-dark-menu {
  right: -10px;
}

.offcanvas-dark-menu i {
  color: #fff;
  border-right-color: #4E4B4B;
}

.offcanvas-dark-menu .inline-menu span {
  background: #fff;
}

/* Header Variation 4 */
.header-absolute.header-lite {
  margin-bottom: -30px;
}

.logo-area .top-contact-info.top-contact span {
  padding-left: 0;
}

.logo-area .top-info {
  margin-bottom: 20px;
  padding-top: 10px;
}

.top-info {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  float: right;
}

.top-info li {
  display: inline-block;
}

.top-info li .info-wrapper p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: normal;
  color: #2e2c2d;
}

.top-info .info-icon {
  font-size: 24px;
  display: inline-block;
  top: -8px;
  position: relative;
  margin-right: 0;
}

.top-info .info-wrapper {
  display: inline-block;
  margin-right: 30px;
  position: relative;
}

.top-info .info-wrapper p.info-subtitle {
  line-height: normal;
  font-size: 14px;
  font-weight: 400;
  color: #2e2c2d;
  margin-bottom: 3px;
}

.top-contact-info.top-contact span {
  padding-left: 0;
}

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

.nav-lite ul.navbar-nav {
  width: 100%;
}

.nav-lite ul.navbar-nav li {
  margin-left: 17px;
  padding-right: 17px;
}

.nav-lite ul.navbar-nav li.nav-item > a {
  padding: 20px 0;
}

.nav-lite .navbar-nav .nav-link {
  margin-right: 0;
}

.nav-thin ul.navbar-nav {
  width: 100%;
}

.nav-thin ul.navbar-nav li {
  margin-left: 17px;
  padding-right: 17px;
}

.nav-thin ul.navbar-nav li.nav-item > a {
  padding: 20px 0;
}

.nav-thin .navbar-nav .nav-link {
  margin-right: 0;
}

.tw-offcanvas-menu.offcanvas-menu-lite i {
  color: #fff;
  border-right-color: #4E4B4B;
}

.tw-offcanvas-menu.offcanvas-menu-lite .inline-menu span {
  background: #fff;
}

/* Home Variation 4 */
.header-lite .tw-nav-brand {
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-area .tw-nav-brand {
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Home Variation 5 */
.nav-transparent .megamenu-dark .tw-mega-menu {
  top: 63px;
}

.nav-transparent .tw-nav-brand {
  top: 5px;
}

.nav-transparent .navbar-nav li.nav-item > a {
  padding: 13px 0;
}

.navbar-fixed.header-dark {
  background-color: #363435;
}

.top-bar-lite .top-social-links {
  color: #2f2c2c;
}

.top-bar-lite .top-social-links i {
  color: #2f2c2c;
}

.top-bar-lite .top-contact-info {
  text-align: right;
}

.top-bar-lite .top-contact-info span {
  padding-left: 5px;
  color: #2f2c2c;
}

.top-bar-lite .top-contact-info i {
  font-size: 12px;
  margin-left: 5px;
  color: #2f2c2c;
}

.header-transparent.header-absolute {
  position: absolute;
  width: 100%;
}

.nav-transparent {
  background: transparent;
}

.slider-3.tw-slider-bg-dark,
.slider-2.tw-slider-bg-dark {
  background: none;
}

.tw-slider-bg-dark {
  position: relative;
  z-index: 2;
}

.tw-slider-bg-dark .slider-wrapper {
  height: 814px;
}

.tw-slider-bg-dark:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: url("../images/slider/slider-banner-2.jpg");
  background-size: cover;
  background-position: right center;
}

.slider-bg-dark,
.slider-dark {
  z-index: auto;
}

.slider-bg-dark.tw-hero-slider .owl-nav button i,
.slider-dark.tw-hero-slider .owl-nav button i {
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.slider-bg-dark.tw-hero-slider .owl-nav button i:hover {
  color: #1877f2;
}

.slider-dark.tw-hero-slider .owl-nav button i:hover {
  color: #1877f2;
}

.slider-dark .tw-slider-bg-dark:after {
  background: url("../images/slider/slider-banner-1.jpg");
}

.slider-content-dark h1 span {
  color: #1877f2;
}

.offcanvas-menu-dark i {
  color: #fff;
}

.offcanvas-menu-dark span {
  background: #fff;
}

/* home Variation 6 */
.top-bar-dark {
  background: #1b1b21;
}

.top-bar-dark .top-social-links {
  color: #1877f2;
}

.top-bar-dark .top-social-links i {
  color: #fff;
}

.top-bar-dark .top-contact-info span {
  color: #fff;
}

.top-bar-dark .top-contact-info i {
  color: #fff;
}

/* Home Variation 7 */
.top-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.top-menu ul li {
  display: inline-block;
}

.top-menu ul li a {
  display: block;
  padding-right: 30px;
  color: inherit;
}

.logo-area.top-contact span {
  padding-right: 0;
  padding-left: 50px;
}

.logo-area.top-contact i {
  margin-left: 10px;
  color: #1877f2;
}

.full-width-nav {
  background: #2f2c2c;
}

.nav-full-width ul.navbar-nav li {
  padding-left: 0;
  padding-right: 30px;
}

.nav-full-width .navbar-nav li {
  padding-left: 0;
}

.nav-full-width .navbar-nav .active > .nav-link,
.nav-full-width .navbar-nav .nav-link {
  color: #fff;
}

.nav-full-width .tw-mega-menu {
  background: #2f2c2c;
}

.nav-full-width .tw-mega-menu h3,
.nav-full-width .tw-mega-menu p,
.nav-full-width .tw-mega-menu li a {
  color: #fff;
}

.nav-full-width .tw-dropdown-menu {
  background: #2f2c2c;
}

.nav-full-width .tw-dropdown-menu li a {
  color: #fff;
}

.full-width-offcanvas-menu {
  width: 100%;
  position: relative;
  text-align: left;
  padding-bottom: 0;
  padding: 15px 0;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.full-width-offcanvas-menu i {
  color: #fff;
  border-color: #4D4B4C;
}

.full-width-offcanvas-menu span {
  background: #fff;
}

/* Home Variation 7 */
.main-header {
  position: absolute;
  width: 100%;
  z-index: 3;
}

.offcanvas-menu-lite.bg-orange {
  height: 68px;
  line-height: 68px;
  padding: 0 15px;
  border-left: 8px solid #F7F9F8;
  width: 165px;
  text-align: center;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.offcanvas-menu-lite.bg-orange .inline-menu {
  right: -10px;
}

.offcanvas-menu-lite.bg-orange i {
  padding-right: 25px;
  margin-right: 5px;
  color: #fff;
  border-right-color: rgba(255, 255, 255, 0.5);
}

.slider-abosulte .slider-content h1 {
  color: #2f2c2c;
}

.slider-abosulte .slider-content h1 span {
  color: #1877f2;
}

.slider-abosulte .slider-content p {
  color: #757575;
}

/* Faq
======================== */
.faq-right .widget-adds {
  margin-top: -40px;
}

.faq-right .tw-testimonial-box {
  background: #f7f9f8;
}

.card-header {
  background: none;
  border: none;
  padding: 0;
}

.card-header h4 {
  margin: 0;
  padding-left: 0;
}

.card-header h4 a {
  color: #2f2c2c;
  font-size: 16px;
}

.card-header h4 a i {
  color: #1877f2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.card-header:hover {
  cursor: pointer;
}

.faq-indicator {
  float: right;
}

.card {
  margin-bottom: 15px;
  padding: 15px 30px;
  border-radius: 0;
}

.card-block {
  padding-top: 20px;
}

/* Team
================ */
.tw-expert {
  padding-top: 100px;
}

.tw-expert.solid-bg {
  background: #f7f7f7;
}

.expert-team img {
  border-radius: 0;
}

.navbar-fixed {
  z-index: 100;
  position: fixed;
  opacity: 1;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-animation: fadeInDown 800ms;
  animation: fadeInDown 800ms;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.off-canvas,
.tw-head,
.tw-header {
  -webkit-transition: all 800ms;
  -o-transition: all 800ms;
  transition: all 800ms;
}

.off-canvas ~ .tw-hero-slider {
  position: relative;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.tw-hero-slider {
  position: relative;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

/* Error page
================================================== */
.error-page .error-code {
  display: block;
  font-size: 150px;
  line-height: 150px;
  color: #333;
  margin-bottom: 20px;
  text-shadow: 5px 5px 1px rgba(0, 0, 0, 0.1);
}

.error-page .error-body .btn {
  margin-top: 30px;
  font-weight: 700;
}

/*------- home variation 9  varsion 6 --------*/
.tw-head.tw-transparent {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

/*===========================

    tw-hero

    ================================*/
.tw-hero {
  background: url(../images/slider/home-10-banner.png) no-repeat 50% 50%/contain;
  min-height: 920px;
  position: relative;
  background-position: bottom;
  padding-top: 200px;
}

.tw-hero:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-image: -moz-linear-gradient(90deg, #bfceff 0%, #e1e8ff 80%, #f9faff 100%);
  background-image: -webkit-linear-gradient(90deg, #bfceff 0%, #e1e8ff 80%, #f9faff 100%);
  background-image: -ms-linear-gradient(90deg, #bfceff 0%, #e1e8ff 80%, #f9faff 100%);
  z-index: -1;
}

/*-------------------------------
                tw-featured
    ----------------------------------*/
.tw-featured {
  position: relative;
}

.tw-featured:after {
  background: url(../images/features/wave_color.png);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  content: "";
  z-index: -1;
}

.tw-featured .features-box {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.tw-featured .features-box h3 {
  font-weight: 600;
}

.tw-featured .bar {
  width: 100%;
  height: 1px;
  background: #ececec;
}

/*-------------------------------
    tw-intro-item
    -------------------------------*/
.tw-inro-item {
  padding-top: 100px;
  position: relative;
}

.tw-inro-item.bar1 {
  position: relative;
}

.tw-inro-item.bar1::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 90%;
  height: 1px;
  background: #ddd;
  content: '';
  right: 0;
  margin: auto;
}

.tw-inro-item p {
  margin-bottom: 32px;
}

/*-------------------------------
    tw service item
    -------------------------------*/
.tw-mb-100 {
  margin-bottom: 100px;
}

.tw-service-item {
  padding-top: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#f1f4ff), color-stop(80%, rgba(225, 232, 255, 0.5)), to(white));
  background-image: -webkit-linear-gradient(left, #f1f4ff 0%, rgba(225, 232, 255, 0.5) 80%, white 100%);
  background-image: -o-linear-gradient(left, #f1f4ff 0%, rgba(225, 232, 255, 0.5) 80%, white 100%);
  background-image: linear-gradient(90deg, #f1f4ff 0%, rgba(225, 232, 255, 0.5) 80%, white 100%);
  background-image: -webkit-linear-gradient(90deg, #f1f4ff 0%, rgba(225, 232, 255, 0.5) 80%, white 100%);
  background-image: -ms-linear-gradient(90deg, #f1f4ff 0%, rgba(225, 232, 255, 0.5) 80%, white 100%);
}

.tw-service-item .service-icon {
  height: auto;
}

.tw-service-item .service-content h3 {
  font-weight: 600;
}

.tw-service-item .service-content p {
  margin: 0;
  max-width: 270px;
}

/*----------------------------------
    blog
    -----------------------------*/
.tw-blog.transparent {
  background: #fff;
}

/*-------------------------------------
     home variation 10
    --------------------*/
.tw-header-top .top-contact-info span {
  padding-left: 45px;
}

.tw-header-top .top-contact-info span:first-child {
  padding-left: 0;
}

.tw-header-top .top-contact-info span i {
  color: #1877f2;
}

.tw-header-top .analist-btn {
  margin-left: 20px;
  text-align: center;
  background: #1877f2;
  margin: -5px 0 -5px 40px;
  display: inline-block;
  color: #fff;
  line-height: 39px;
  font-size: 14px;
  padding: 0 21px;
  text-transform: uppercase;
  font-weight: 700;
}

/*-------------------------
    tw-banner
    -----------------------*/
.tw-banner {
  background: url(../images/check-seo/check-seo-banner-big.png);
  min-height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 100px 0 0;
  position: relative;
}

.tw-banner:before {
  background-color: rgba(39, 75, 195, 0.95);
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.tw-seo-check-content h2 {
  font-size: 54px;
  color: #fff;
  margin-bottom: 20px;
}

.tw-seo-check-content p {
  color: #fff;
}

.tw-seo-check-content .analysis-form {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 77px;
  padding: 19px 0;
}

.tw-seo-check-content .analysis-form .form-group {
  margin-bottom: 0;
}

.tw-seo-check-content .analysis-form .tw-form-round-shape:after {
  position: absolute;
  top: 0;
  right: 45px;
  width: 2px;
  height: 54px;
  background: #243f9a;
  display: block;
  content: "";
  border-radius: 0;
  z-index: 1;
}

.tw-seo-check-content .analysis-form input[type=submit] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.seo-banner-img {
  position: relative;
  margin-top: 64px;
  margin-bottom: -15px;
}

/*------------------------------
    tw-services-item
    ------------------------------------*/
.tw-services-item .service-icon {
  height: auto;
}

.tw-services-item .service-content p {
  margin: auto;
  max-width: inherit;
  padding: 0 20px;
}

/*------------------------------
    tw-facts-item
    ------------------------------------*/
.tw-facts-item {
  background-image: url(../images/funfacts/working-process-dark-bg.jpg) no-repeat center center/cover;
}

/*------------------------------
    tw-inro-item-2
    ------------------------------------*/
.tw-inro-item-2 .column-title {
  margin-bottom: 20px;
}

/*--------------------
    working process
    ------------------------*/
.work-process-item {
  background: #343434;
}

.work-process-item .tw-case-working-box h3 {
  color: #fff;
}

/*--------------------
   pricing item
    ------------------------*/
.tw-pricing-item {
  background: url(../images/pricing/pricing_dollar_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
}

.tw-pricing-item:before {
  background-color: rgba(39, 75, 195, 0.95);
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.tw-list-style {
  list-style: none;
  padding-left: 0;
}

.tw-list-style li {
  list-style: none;
  margin-bottom: 20px;
  font-weight: 700;
  color: #2f2c2c;
  font-size: 18px;
}

.tw-list-style li img {
  margin-right: 15px;
}

.tw-list-style li:last-child {
  margin-bottom: 0;
}

.whatsapp {
  position:fixed;
  width:45px;
  height:45px;
      bottom: 66px;
    right: 15px;

  background-color:#25d366;
  color:#fff;
  border-radius:50%;
  text-align:center;
  font-size:45px;
  z-index:100;
}

.whatsapp-icon {
  margin-top:15px;
}
/* =========================================================
   HEADER BUCKAPI
   ========================================================= */

:root {
   --buckapi-header-height: 84px;
   --buckapi-header-bg: rgba(16, 19, 28, 0.96);
   --buckapi-header-border: rgba(255, 255, 255, 0.08);
   --buckapi-header-text: #ffffff;
   --buckapi-header-muted: rgba(255, 255, 255, 0.72);
   --buckapi-primary: #1877f2;
   --buckapi-primary-hover: #17a2b8;
}


/* Evita que el header fijo tape el contenido */
html {
   scroll-behavior: smooth;
   scroll-padding-top: calc(var(--buckapi-header-height) + 20px);
}

body {
   padding-top: var(--buckapi-header-height);
}


/* Header fijo */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   width: 100%;
   min-height: var(--buckapi-header-height);
   z-index: 1050;

   display: flex;
   align-items: center;

  /*  background: var(--buckapi-header-bg); */
   border-bottom: 1px solid var(--buckapi-header-border);
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);

   -webkit-backdrop-filter: blur(14px);
   backdrop-filter: blur(14px);

   transition:
      background-color 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.3s ease;
}


/* Navbar */
.buckapi-navbar {
   min-height: var(--buckapi-header-height);
   width: 100%;
   padding: 8px 0;
}


/* Logo */
.buckapi-brand {
   display: inline-flex;
   align-items: center;
   justify-content: center;

   padding: 0;
   margin-right: 30px;

   line-height: 1;
}

.buckapi-brand img {
   display: block;
   width: 64px;
   height: 64px;
   max-width: 64px;
   object-fit: contain;

   transition:
      transform 0.3s ease,
      filter 0.3s ease;
}

.buckapi-brand:hover img {
   transform: scale(1.05);
   filter: brightness(1.08);
}


/* Navegación */
.buckapi-navbar .navbar-nav {
   gap: 4px;
}

.buckapi-navbar .nav-item {
   display: flex;
   align-items: center;
}

.buckapi-navbar .nav-link {
   position: relative;
   display: inline-flex;
   align-items: center;
   justify-content: center;

   min-height: 44px;
   padding: 10px 12px !important;

   color: #000 !important;
   font-size: 14px;
   font-weight: 600;
   line-height: 1.2;
   text-decoration: none;
   white-space: nowrap;

   border-radius: 8px;

   transition:
      color 0.25s ease,
      background-color 0.25s ease,
      transform 0.25s ease;
}


/* Línea animada debajo de cada enlace */
.buckapi-navbar .nav-link::after {
   content: "";
   position: absolute;
   left: 50%;
   bottom: 4px;

   width: 0;
   height: 2px;

   background: var(--buckapi-primary);
   border-radius: 999px;

   transform: translateX(-50%);
   transition: width 0.25s ease;
}

.buckapi-navbar .nav-link:hover,
.buckapi-navbar .nav-link:focus {
   color: #000 !important;
   background: rgba(255, 255, 255, 0.06);
   outline: none;
}

.buckapi-navbar .nav-link:hover::after,
.buckapi-navbar .nav-link:focus::after,
.buckapi-navbar .nav-item.active > .nav-link::after {
   width: calc(100% - 24px);
}

.buckapi-navbar .nav-item.active > .nav-link {
   color: #000 !important;
}


/* CTA WhatsApp */
.nav-item-cta {
   margin-left: 12px;
}

.buckapi-header-cta {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;

   min-height: 44px;
   padding: 10px 17px;

   color: #ffffff !important;
   background: #1876ef;
   border: 1px solid #1876ef;
   border-radius: 10px;

   font-size: 14px;
   font-weight: 700;
   line-height: 1.2;
   white-space: nowrap;
   text-decoration: none !important;

   box-shadow: 0 8px 22px rgba(255, 90, 95, 0.25);

   transition:
      background-color 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease,
      box-shadow 0.25s ease;
}

.buckapi-header-cta:hover,
.buckapi-header-cta:focus {
   color: #ffffff !important;
   background: var(--buckapi-primary-hover);
   border-color: var(--buckapi-primary-hover);

   transform: translateY(-2px);
   box-shadow: 0 12px 26px rgba(255, 90, 95, 0.34);

   outline: none;
}

.buckapi-header-cta:active {
   transform: translateY(0);
}

.buckapi-header-cta .fa-whatsapp {
   font-size: 18px;
}


/* Botón móvil */
.buckapi-toggler {
   width: 46px;
   height: 44px;
   padding: 8px;

   border: 1px solid rgba(255, 255, 255, 0.2) !important;
   border-radius: 9px;

   background-color: rgb(19 103 212);

   transition:
      background-color 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
}

.buckapi-toggler:hover,
.buckapi-toggler:focus {
   background-color: rgb(24 118 239);
   border-color: rgba(255, 255, 255, 0.35) !important;
   outline: none;
   box-shadow: none;
}

.buckapi-toggler:active {
   transform: scale(0.96);
}


/* Asegura que el icono sea visible */
.buckapi-toggler .navbar-toggler-icon {
   width: 24px;
   height: 24px;

   background-image:
      url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,0.95)' stroke-width='2.2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* =========================================================
   TABLET Y MÓVIL
   ========================================================= */

@media (max-width: 991.98px) {
   :root {
      --buckapi-header-height: 76px;
   }

   .site-header {
      min-height: var(--buckapi-header-height);
   }

   .buckapi-navbar {
      min-height: var(--buckapi-header-height);
      padding: 6px 0;
   }

   .buckapi-brand img {
      width: 58px;
      height: 58px;
      max-width: 58px;
   }

   .buckapi-navbar .navbar-collapse {
      position: absolute;
      top: calc(100% + 1px);
      left: 15px;
      right: 15px;

      max-height: calc(100vh - var(--buckapi-header-height) - 20px);
      overflow-y: auto;

      padding: 16px;

      background: #0f172a4a;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0 0 14px 14px;

      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);

      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
   }

   .buckapi-navbar .navbar-nav {
      width: 100%;
      gap: 3px;
      align-items: stretch !important;
   }

   .buckapi-navbar .nav-item {
      width: 100%;
      display: block;
   }

   .buckapi-navbar .nav-link {
      width: 100%;
      justify-content: flex-start;

      padding: 12px 14px !important;
      min-height: 46px;

      font-size: 15px;
      border-radius: 8px;
   }

   .buckapi-navbar .nav-link::after {
      display: none;
   }

   .buckapi-navbar .nav-link:hover,
   .buckapi-navbar .nav-link:focus,
   .buckapi-navbar .nav-item.active > .nav-link {
      color: #ffffff !important;
      background: rgba(255, 255, 255, 0.08);
   }

   .nav-item-cta {
      margin-top: 10px;
      margin-left: 0;
   }

   .buckapi-header-cta {
      width: 100%;
      min-height: 48px;
      padding: 12px 16px;
   }
}


/* Móviles pequeños */
@media (max-width: 575.98px) {
   .site-header .container {
      padding-left: 15px;
      padding-right: 15px;
   }

   .buckapi-navbar .navbar-collapse {
      left: 0;
      right: 0;
      border-radius: 0 0 12px 12px;
   }

   .buckapi-brand img {
      width: 54px;
      height: 54px;
      max-width: 54px;
   }

   .buckapi-toggler {
      width: 44px;
      height: 42px;
   }
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

.buckapi-navbar a:focus-visible,
.buckapi-toggler:focus-visible {
   outline: 3px solid rgba(255, 90, 95, 0.45);
   outline-offset: 3px;
}


/* Reduce animaciones cuando el usuario lo solicita */
@media (prefers-reduced-motion: reduce) {
   html {
      scroll-behavior: auto;
   }

   .site-header,
   .buckapi-brand img,
   .buckapi-navbar .nav-link,
   .buckapi-navbar .nav-link::after,
   .buckapi-header-cta,
   .buckapi-toggler {
      transition: none !important;
   }
}
/* =========================================================
   HERO PRINCIPAL BUCKAPI
   Owl Carousel responsive con scroll vertical seguro
   ========================================================= */

:root {
   --buckapi-hero-primary: #1876ef;
   --buckapi-hero-primary-dark: #1167d6;
   --buckapi-hero-secondary: #1f2533;
   --buckapi-hero-text: #1f2533;
   --buckapi-hero-muted: #646b79;
   --buckapi-hero-light: #ffffff;
   --buckapi-hero-background: #f8f9fc;
   --buckapi-hero-border: rgba(24, 28, 39, 0.1);
   --buckapi-fixed-header-height: 84px;
}


/* =========================================================
   CONTENEDOR Y ESTRUCTURA OWL
   ========================================================= */

.buckapi-hero-slider {
   position: relative;
   display: block;
   width: 100%;
   height: auto;
   min-height: 0;
   padding: 0;

   overflow-x: hidden;
   overflow-y: visible;

   background: var(--buckapi-hero-background);

   touch-action: pan-y pinch-zoom;
   overscroll-behavior-x: contain;
   isolation: isolate;
}

.buckapi-hero-slider.owl-carousel:not(.owl-loaded) {
   display: block;
}

.buckapi-hero-slider:not(.owl-loaded) .buckapi-hero-slide {
   display: none;
}

.buckapi-hero-slider:not(.owl-loaded) .buckapi-hero-slide:first-of-type {
   display: block;
}

/* Elementos generados por Owl Carousel */
.buckapi-hero-slider .owl-stage-outer {
   position: relative;
   width: 100%;
   height: auto;
   min-height: 0;

   overflow-x: hidden;
   overflow-y: visible;

   touch-action: pan-y pinch-zoom;
}

.buckapi-hero-slider .owl-stage {
   display: flex;
   align-items: stretch;
   height: auto;

   touch-action: pan-y pinch-zoom;
   will-change: transform;
}

.buckapi-hero-slider .owl-item {
   display: flex;
   flex: 0 0 auto;
   align-items: stretch;
   height: auto;
   min-height: 0;

   touch-action: pan-y pinch-zoom;
}

.buckapi-hero-slider .owl-item > .buckapi-hero-slide {
   width: 100%;
}


/* =========================================================
   CADA SLIDE
   ========================================================= */

.buckapi-hero-slide {
   position: relative;
   display: block;
   width: 100%;
   height: auto;
   min-height: min(680px, calc(100svh - var(--buckapi-fixed-header-height)));
   padding: 0;

   overflow-x: hidden;
   overflow-y: visible;

   isolation: isolate;
   touch-action: pan-y pinch-zoom;
}

/* Compatibilidad con navegadores sin svh */
@supports not (height: 100svh) {
   .buckapi-hero-slide {
      min-height: min(680px, calc(100vh - var(--buckapi-fixed-header-height)));
   }
}

.buckapi-hero-slide .slider-wrapper {
   display: table;
   width: 100%;
   height: auto;
   min-height: min(680px, calc(100svh - var(--buckapi-fixed-header-height)));
}

@supports not (height: 100svh) {
   .buckapi-hero-slide .slider-wrapper {
      min-height: min(680px, calc(100vh - var(--buckapi-fixed-header-height)));
   }
}

.buckapi-hero-slide .slider-inner {
   display: table-cell;
   width: 100%;
   height: auto;
   padding: 34px 0 42px;

   vertical-align: middle;
}


/* =========================================================
   FONDOS DECORATIVOS
   ========================================================= */

.buckapi-hero-slide::before {
   content: "";
   position: absolute;
   top: -220px;
   right: -160px;

   width: 560px;
   height: 560px;

   background:
      radial-gradient(
         circle,
         rgba(24, 118, 239, 0.18) 0%,
         rgba(24, 118, 239, 0.04) 46%,
         transparent 72%
      );

   border-radius: 50%;
   pointer-events: none;
   z-index: -1;
}

.buckapi-hero-slide::after {
   content: "";
   position: absolute;
   bottom: -260px;
   left: -220px;

   width: 540px;
   height: 540px;

   background:
      radial-gradient(
         circle,
         rgba(80, 100, 230, 0.1) 0%,
         transparent 70%
      );

   border-radius: 50%;
   pointer-events: none;
   z-index: -1;
}

.buckapi-hero-slide-primary {
   background:
      linear-gradient(
         135deg,
         #ffffff 0%,
         #f8f9fc 55%,
         #f1f6ff 100%
      );
}

.buckapi-hero-slide-light {
   background:
      linear-gradient(
         135deg,
         #f9fbff 0%,
         #ffffff 50%,
         #f4f6ff 100%
      );
}

.buckapi-hero-slide-commerce {
   background:
      linear-gradient(
         135deg,
         #ffffff 0%,
         #f8fbff 52%,
         #f6f4ff 100%
      );
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.buckapi-hero-content {
   position: relative;
   z-index: 3;

   width: 100%;
   min-width: 0;
   max-width: 650px;
}

.buckapi-hero-eyebrow,
.buckapi-hero-title,
.buckapi-hero-description {
   max-width: 100%;
}

.buckapi-hero-eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 10px;

   width: fit-content;
   margin-bottom: 20px;
   padding: 8px 13px;

   color: var(--buckapi-hero-primary-dark);
   background: rgba(24, 119, 242, 0.09);
   border: 1px solid rgba(24, 118, 239, 0.45);
   border-radius: 999px;

   font-size: 12px;
   font-weight: 700;
   line-height: 1.35;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   white-space: normal;
}

.buckapi-hero-eyebrow-dot {
   display: block;
   flex: 0 0 8px;
   width: 8px;
   height: 8px;

   background: var(--buckapi-hero-primary);
   border-radius: 50%;
   box-shadow: 0 0 0 5px rgba(24, 118, 239, 0.12);
}

.buckapi-hero-title {
   max-width: 680px;
   margin: 0 0 12px;

   color: var(--buckapi-hero-text);

   font-size: clamp(2.35rem, 3vw, 4.4rem);
   font-weight: 700;
   line-height: 1.06;
   letter-spacing: -0.045em;

   overflow-wrap: normal;
   word-break: normal;
   hyphens: none;
}

.buckapi-hero-title strong {
   display: inline;
   color: var(--buckapi-hero-primary);
   font-weight: 800;
}

.buckapi-hero-description {
   max-width: 600px;
   margin: 0 0 28px;

   color: var(--buckapi-hero-muted);

   font-size: 18px;
   font-weight: 400;
   line-height: 1.75;
   overflow-wrap: break-word;
}


/* =========================================================
   BOTONES
   ========================================================= */

.buckapi-hero-actions {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 12px;

   margin-top: 28px;
}

.buckapi-hero-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 9px;

   min-height: 52px;
   padding: 13px 22px;

   border-radius: 11px;

   font-size: 15px;
   font-weight: 700;
   line-height: 1.2;
   text-decoration: none !important;

   transition:
      color 0.25s ease,
      background-color 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease,
      transform 0.25s ease;
}

.buckapi-hero-btn-primary {
   color: #ffffff !important;
   background: var(--buckapi-hero-primary);
   border: 1px solid var(--buckapi-hero-primary);

   box-shadow: 0 12px 26px rgba(24, 118, 239, 0.25);
}

.buckapi-hero-btn-primary:hover,
.buckapi-hero-btn-primary:focus {
   color: #ffffff !important;
   background: var(--buckapi-hero-primary-dark);
   border-color: var(--buckapi-hero-primary-dark);

   transform: translateY(-2px);
   box-shadow: 0 16px 32px rgba(24, 118, 239, 0.32);
}

.buckapi-hero-btn-secondary {
   color: var(--buckapi-hero-secondary) !important;
   background: rgba(255, 255, 255, 0.72);
   border: 1px solid rgba(31, 37, 51, 0.16);
}

.buckapi-hero-btn-secondary:hover,
.buckapi-hero-btn-secondary:focus {
   color: var(--buckapi-hero-primary-dark) !important;
   background: #ffffff;
   border-color: rgba(24, 118, 239, 0.38);

   transform: translateY(-2px);
   box-shadow: 0 12px 24px rgba(31, 37, 51, 0.09);
}


/* =========================================================
   ESTADÍSTICAS, BENEFICIOS Y ETIQUETAS
   ========================================================= */

.buckapi-hero-stats {
   display: flex;
   align-items: stretch;
   gap: 0;

   max-width: 590px;
   margin-top: 42px;
   padding-top: 25px;

   border-top: 1px solid var(--buckapi-hero-border);
}

.buckapi-hero-stat {
   display: flex;
   flex: 1;
   flex-direction: column;
   gap: 3px;

   min-width: 0;
   padding: 0 22px;

   border-right: 1px solid var(--buckapi-hero-border);
}

.buckapi-hero-stat:first-child {
   padding-left: 0;
}

.buckapi-hero-stat:last-child {
   padding-right: 0;
   border-right: none;
}

.buckapi-hero-stat strong {
   color: var(--buckapi-hero-text);
   font-size: 25px;
   font-weight: 800;
   line-height: 1.1;
}

.buckapi-hero-stat span {
   color: var(--buckapi-hero-muted);
   font-size: 12px;
   font-weight: 600;
   line-height: 1.35;
}

.buckapi-hero-benefits {
   display: grid;
   gap: 12px;

   margin: 25px 0 0;
   padding: 0;

   list-style: none;
}

.buckapi-hero-benefits li {
   display: flex;
   align-items: center;
   gap: 11px;

   color: var(--buckapi-hero-secondary);
   font-size: 15px;
   font-weight: 600;
}

.buckapi-hero-benefits i {
   display: inline-flex;
   align-items: center;
   justify-content: center;

   flex: 0 0 25px;
   width: 25px;
   height: 25px;

   color: #ffffff;
   background: var(--buckapi-hero-primary);
   border-radius: 50%;

   font-size: 11px;
}

.buckapi-commerce-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;

   margin-top: 25px;
}

.buckapi-commerce-tags span {
   display: inline-flex;
   align-items: center;

   padding: 7px 12px;

   color: var(--buckapi-hero-secondary);
   background: rgba(255, 255, 255, 0.7);
   border: 1px solid rgba(31, 37, 51, 0.1);
   border-radius: 999px;

   font-size: 12px;
   font-weight: 700;
}


/* =========================================================
   VISUAL, IMAGEN Y TARJETAS FLOTANTES
   ========================================================= */

.buckapi-hero-visual {
   position: relative;

   display: flex;
   align-items: center;
   justify-content: center;

   width: 100%;
   min-height: 430px;
   padding: 12px 26px;
}

.buckapi-hero-glow {
   position: absolute;
   top: 50%;
   left: 50%;

   width: 78%;
   height: 78%;

   background:
      radial-gradient(
         circle,
         rgba(24, 118, 239, 0.18) 0%,
         rgba(24, 118, 239, 0.05) 46%,
         transparent 72%
      );

   border-radius: 50%;
   filter: blur(15px);
   transform: translate(-50%, -50%);
   pointer-events: none;
}

.buckapi-hero-image-card {
   position: relative;
   z-index: 2;

   display: flex;
   align-items: center;
   justify-content: center;

   width: min(100%, 530px);
   min-height: 340px;
   padding: 20px;

   background:
      linear-gradient(
         145deg,
         rgba(255, 255, 255, 0.94),
         rgba(255, 255, 255, 0.72)
      );

   border: 1px solid rgba(255, 255, 255, 0.9);
   border-radius: 30px;

   box-shadow:
      0 30px 70px rgba(31, 37, 51, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);

   -webkit-backdrop-filter: blur(16px);
   backdrop-filter: blur(16px);

   animation: buckapiHeroFloat 5s ease-in-out infinite;
}

.buckapi-hero-image {
   display: block;
   width: 100% !important;
   max-width: 470px;
   max-height: 315px;
   margin: 0 !important;

   object-fit: contain;

   -webkit-user-select: none;
   user-select: none;
   -webkit-user-drag: none;
   pointer-events: none;
}

.buckapi-floating-card {
   position: absolute;
   z-index: 4;

   display: flex;
   align-items: center;
   gap: 12px;

   min-width: 210px;
   padding: 13px 16px;

   background: rgba(255, 255, 255, 0.94);
   border: 1px solid rgba(31, 37, 51, 0.08);
   border-radius: 14px;

   box-shadow: 0 18px 38px rgba(31, 37, 51, 0.14);

   -webkit-backdrop-filter: blur(12px);
   backdrop-filter: blur(12px);
}

.buckapi-floating-card-main {
   left: 0;
   bottom: 28px;

   animation: buckapiHeroFloatSecondary 4.8s ease-in-out infinite;
}

.buckapi-floating-card-secondary {
   top: 28px;
   right: 2%;

   animation: buckapiHeroFloatSecondary 5.4s ease-in-out infinite reverse;
}

.buckapi-floating-card strong {
   display: block;
   margin-bottom: 2px;

   color: var(--buckapi-hero-text);
   font-size: 13px;
   font-weight: 800;
   line-height: 1.25;
}

.buckapi-floating-card small {
   display: block;

   color: var(--buckapi-hero-muted);
   font-size: 10px;
   font-weight: 600;
   line-height: 1.3;
}

.buckapi-floating-icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;

   flex: 0 0 42px;
   width: 42px;
   height: 42px;

   color: #ffffff;
   background:
      linear-gradient(
         135deg,
         var(--buckapi-hero-primary),
         #5e95f5
      );

   border-radius: 12px;
   box-shadow: 0 8px 18px rgba(24, 118, 239, 0.25);

   font-size: 18px;
}

.buckapi-floating-status {
   position: relative;

   flex: 0 0 13px;
   width: 13px;
   height: 13px;

   background: #2ecc71;
   border-radius: 50%;

   box-shadow: 0 0 0 6px rgba(46, 204, 113, 0.13);
}


/* =========================================================
   ANIMACIONES
   ========================================================= */

@keyframes buckapiHeroFloat {
   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-10px);
   }
}

@keyframes buckapiHeroFloatSecondary {
   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-7px);
   }
}


/* =========================================================
   CONTROLES OWL CAROUSEL
   ========================================================= */

.buckapi-hero-slider .owl-dots {
   position: absolute;
   left: 50%;
   bottom: 12px;
   z-index: 8;

   display: flex;
   align-items: center;
   justify-content: center;
   gap: 7px;

   margin: 0 !important;
   transform: translateX(-50%);
}

.buckapi-hero-slider .owl-dot {
   outline: none;
}

.buckapi-hero-slider .owl-dot span {
   display: block;

   width: 9px;
   height: 9px;
   margin: 0 !important;

   background: rgba(31, 37, 51, 0.2) !important;
   border-radius: 999px;

   transition:
      width 0.3s ease,
      background-color 0.3s ease;
}

.buckapi-hero-slider .owl-dot.active span {
   width: 28px;
   background: var(--buckapi-hero-primary) !important;
}

.buckapi-hero-slider .owl-nav {
   position: static;
   width: auto;
   margin: 0;
}

.buckapi-hero-slider .owl-prev,
.buckapi-hero-slider .owl-next {
   position: absolute;
   top: 50%;
   z-index: 8;

   display: inline-flex !important;
   align-items: center;
   justify-content: center;

   width: 46px;
   height: 46px;
   margin: 0 !important;

   color: var(--buckapi-hero-secondary) !important;
   background: rgba(255, 255, 255, 0.92) !important;
   border: 1px solid rgba(31, 37, 51, 0.1) !important;
   border-radius: 50% !important;

   box-shadow: 0 12px 26px rgba(31, 37, 51, 0.12);

   transform: translateY(-50%);
   transition:
      color 0.25s ease,
      background-color 0.25s ease,
      transform 0.25s ease;
}

.buckapi-hero-slider .owl-prev {
   left: 18px;
}

.buckapi-hero-slider .owl-next {
   right: 18px;
}

.buckapi-hero-slider .owl-prev:hover,
.buckapi-hero-slider .owl-next:hover {
   color: #ffffff !important;
   background: var(--buckapi-hero-primary) !important;
}

.buckapi-hero-slider .owl-prev:focus-visible,
.buckapi-hero-slider .owl-next:focus-visible,
.buckapi-hero-btn:focus-visible {
   outline: 3px solid rgba(24, 118, 239, 0.4);
   outline-offset: 3px;
}


/* =========================================================
   PROTECCIÓN DEL SCROLL VERTICAL
   ========================================================= */

.buckapi-hero-slider,
.buckapi-hero-slider *,
.buckapi-hero-slider .owl-stage-outer,
.buckapi-hero-slider .owl-stage,
.buckapi-hero-slider .owl-item,
.buckapi-hero-slide {
   touch-action: pan-y pinch-zoom;
}

.buckapi-hero-slider * {
   -webkit-user-drag: none;
}

.buckapi-hero-slider a,
.buckapi-hero-slider button {
   pointer-events: auto;
}


/* =========================================================
   ESCRITORIO: HERO COMPACTO EN UNA SOLA VISTA
   ========================================================= */

@media (min-width: 1200px) {
   .buckapi-hero-slide,
   .buckapi-hero-slide .slider-wrapper {
      min-height: min(680px, calc(100svh - var(--buckapi-fixed-header-height)));
   }

   .buckapi-hero-slide .slider-inner {
      padding-top: 30px;
      padding-bottom: 38px;
   }

   .buckapi-hero-title {
      font-size: clamp(2.55rem, 3vw, 3.75rem);
      margin-bottom: 10px;
   }

   .buckapi-hero-description {
      margin-bottom: 20px;
      font-size: 16px;
      line-height: 1.62;
   }

   .buckapi-hero-actions {
      margin-top: 20px;
   }

   .buckapi-hero-stats {
      margin-top: 28px;
      padding-top: 18px;
   }

   .buckapi-hero-visual {
      min-height: 410px;
   }

   .buckapi-hero-image-card {
      min-height: 325px;
   }

   .buckapi-hero-image {
      max-height: 300px;
   }
}


/* =========================================================
   ESCRITORIO MEDIANO
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {
   .buckapi-hero-slide,
   .buckapi-hero-slide .slider-wrapper {
      min-height: 650px;
   }

   .buckapi-hero-slide .slider-inner {
      padding: 68px 0 62px;
   }

   .buckapi-hero-title {
      font-size: clamp(2.45rem, 3.7vw, 3.5rem);
   }

   .buckapi-hero-description {
      font-size: 16px;
      line-height: 1.65;
   }

   .buckapi-hero-eyebrow {
      font-size: 10px;
      letter-spacing: 0.055em;
   }

   .buckapi-hero-visual {
      min-height: 470px;
      padding: 20px;
   }

   .buckapi-hero-image-card {
      min-height: 370px;
   }

   .buckapi-floating-card-main {
      left: 5px;
   }
}


/* =========================================================
   TABLET Y TABLET VERTICAL
   ========================================================= */

@media (max-width: 991.98px) {
   :root {
      --buckapi-fixed-header-height: 76px;
   }

   .buckapi-hero-slider .owl-stage {
      align-items: flex-start;
   }

   .buckapi-hero-slide,
   .buckapi-hero-slide .slider-wrapper {
      height: auto;
      min-height: 0;
   }

   .buckapi-hero-slide .slider-inner {
      display: block;
      height: auto;
      padding: 52px 0 78px;
   }

   .buckapi-hero-content {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
   }

   .buckapi-hero-eyebrow {
      margin-left: auto;
      margin-right: auto;
   }

   .buckapi-hero-description {
      margin-left: auto;
      margin-right: auto;
   }

   .buckapi-hero-actions {
      justify-content: center;
   }

   .buckapi-hero-stats {
      margin-left: auto;
      margin-right: auto;
      text-align: left;
   }

   .buckapi-hero-benefits {
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
   }

   .buckapi-commerce-tags {
      justify-content: center;
   }

   .buckapi-hero-visual {
      min-height: 420px;
      margin-top: 24px;
      margin-bottom: 10px;
      padding: 18px 35px 42px;
   }

   .buckapi-hero-image-card {
      width: min(100%, 500px);
      min-height: 340px;
   }

   .buckapi-hero-image {
      max-height: 305px;
   }

   .buckapi-floating-card-main {
      left: 7%;
      bottom: 12px;
   }

   .buckapi-floating-card-secondary {
      top: 24px;
      right: 7%;
   }

   .buckapi-hero-slider .owl-prev,
   .buckapi-hero-slider .owl-next {
      display: none !important;
   }
}


/* =========================================================
   MÓVILES
   ========================================================= */

@media (max-width: 767.98px) {
   .buckapi-hero-slider,
   .buckapi-hero-slider .owl-stage-outer,
   .buckapi-hero-slider .owl-stage,
   .buckapi-hero-slider .owl-item,
   .buckapi-hero-slide {
      height: auto;
      min-height: 0;

      touch-action: pan-y pinch-zoom !important;
   }

   .buckapi-hero-slider {
      overflow-x: hidden;
      overflow-y: visible;
      overscroll-behavior-y: auto;
   }

   .buckapi-hero-slide .slider-wrapper {
      display: block;
      height: auto;
      min-height: 0;
   }

   .buckapi-hero-slide .slider-inner {
      display: block;
      height: auto;
      padding: 38px 0 72px;
   }

   .buckapi-hero-title {
      margin-bottom: 17px;

      font-size: clamp(1.9rem, 9vw, 2.45rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
   }

   .buckapi-hero-description {
      margin-bottom: 22px;

      font-size: 14px;
      line-height: 1.6;
   }

   .buckapi-hero-eyebrow {
      display: inline-flex;
      width: fit-content;
      max-width: 100%;
      padding: 7px 11px;

      font-size: 8.5px;
      line-height: 1.4;
      letter-spacing: 0.035em;
   }

   .buckapi-hero-visual {
      min-height: 330px;
      margin-top: 22px;
      padding: 8px 18px 48px;
   }

   .buckapi-hero-image-card {
      min-height: 275px;
      padding: 18px;
      border-radius: 23px;
   }

   .buckapi-hero-image {
      max-height: 245px;
   }

   .buckapi-floating-card {
      min-width: 180px;
      padding: 10px 12px;
   }

   .buckapi-floating-card-secondary {
      display: none;
   }

   .buckapi-floating-card-main {
      left: 50%;
      right: auto;
      bottom: 2px;

      animation: none !important;
      transform: translate3d(-50%, 0, 0) !important;
   }

   .buckapi-floating-icon {
      flex-basis: 36px;
      width: 36px;
      height: 36px;

      font-size: 15px;
   }

   .buckapi-hero-stats {
      margin-top: 30px;
      padding-top: 20px;
   }

   .buckapi-hero-stat {
      padding: 0 10px;
   }

   .buckapi-hero-stat strong {
      font-size: 20px;
   }

   .buckapi-hero-stat span {
      font-size: 10px;
   }
}


/* =========================================================
   MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 575.98px) {
   .buckapi-hero-slide .slider-inner {
      padding-top: 32px;
   }

   .buckapi-hero-actions {
      display: grid;
      grid-template-columns: 1fr;
      width: 100%;
   }

   .buckapi-hero-btn {
      width: 100%;
      min-height: 50px;
   }

   .buckapi-hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      width: 100%;
   }

   .buckapi-hero-stat {
      padding: 0 7px;
   }

   .buckapi-hero-stat strong {
      font-size: 18px;
   }

   .buckapi-hero-stat span {
      font-size: 9px;
   }

   .buckapi-hero-benefits li {
      align-items: flex-start;
      font-size: 14px;
   }

   .buckapi-commerce-tags {
      gap: 6px;
   }

   .buckapi-commerce-tags span {
      padding: 6px 10px;
      font-size: 11px;
   }

   .buckapi-hero-visual {
      min-height: 295px;
      padding-right: 8px;
      padding-left: 8px;
   }

   .buckapi-hero-image-card {
      min-height: 235px;
      padding: 14px;
   }

   .buckapi-hero-image {
      max-height: 205px;
   }
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
   .buckapi-hero-image-card,
   .buckapi-floating-card {
      animation: none !important;
   }

   .buckapi-hero-btn,
   .buckapi-hero-slider .owl-dot span {
      transition: none !important;
   }
}

/* =========================================================
   SERVICIOS BUCKAPI
   Conserva la estructura visual original
   ========================================================= */

.buckapi-services {
   position: relative;
   padding: 105px 0 95px;
   overflow: hidden;

   background:
      radial-gradient(
         circle at 10% 15%,
         rgba(255, 90, 95, 0.07),
         transparent 30%
      ),
      radial-gradient(
         circle at 90% 80%,
         rgba(85, 105, 230, 0.06),
         transparent 30%
      ),
      #ffffff;
}


/* Encabezado */
.buckapi-section-label {
   display: inline-flex;
   align-items: center;

   margin-bottom: 13px;
   padding: 7px 13px;

   color: #1877f2;
   background: rgb(24 119 242 / 9%);
   border: 1px solid #007bff;
   border-radius: 999px;

   font-size: 11px;
   font-weight: 800;
   line-height: 1.2;
   letter-spacing: 0.1em;
   text-transform: uppercase;
}

.buckapi-services .section-heading h2 {
   max-width: 780px;
   margin: 0 auto;

   color: #1876ef;

   font-size: clamp(2rem, 4vw, 3.25rem);
   font-weight: 700;
   line-height: 1.15;
   letter-spacing: -0.035em;
}

.buckapi-services .section-heading h2 span {
   color: #1877f2;
}

.buckapi-services-intro {
   max-width: 680px;
   margin: 19px auto 0;

   color: #646b79;

   font-size: 17px;
   line-height: 1.75;
}


/* Cuadrícula */
.buckapi-services-grid {
   margin-top: 55px;
}

.buckapi-services-grid > div {
   display: flex;
   margin-bottom: 30px;
}


/* Tarjeta */
.buckapi-service-card {
   position: relative;

   display: flex;
   flex-direction: column;

   width: 100%;
   min-height: 100%;
   margin: 0;
   padding: 36px 30px 31px;

   text-align: left;

   background: rgba(255, 255, 255, 0.96);
   border: 1px solid rgba(24, 28, 39, 0.08);
   border-radius: 20px;

   box-shadow: 0 16px 42px rgba(24, 28, 39, 0.07);

   transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease;
}

.buckapi-service-card:hover {
   transform: translateY(-8px);
   border-color: rgba(255, 90, 95, 0.28);

   box-shadow: 0 24px 52px rgba(24, 28, 39, 0.12);
}


/* Tarjeta destacada */
.buckapi-service-featured {
   border-color: #1876ef;

   background:
      linear-gradient(
         145deg,
         rgba(255, 255, 255, 1),
         rgba(255, 247, 248, 1)
      );

   box-shadow: 0 20px 48px rgba(255, 90, 95, 0.12);
}

.buckapi-service-badge {
   position: absolute;
   top: 18px;
   right: 18px;

   display: inline-flex;
   align-items: center;

   padding: 6px 10px;

   color: #ffffff;
   background: #1877f2;
   border-radius: 999px;

   font-size: 10px;
   font-weight: 800;
   line-height: 1.2;
   letter-spacing: 0.05em;
   text-transform: uppercase;
}


/* Iconos */
.buckapi-service-card .service-icon {
   display: flex !important;
   align-items: center;
   justify-content: center;

   width: 72px;
   height: 72px;
   margin: 0 0 25px;

   border-radius: 18px;

   box-shadow: 0 12px 24px rgba(24, 28, 39, 0.09);

   transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
}

.buckapi-service-card:hover .service-icon {
   transform: translateY(-4px) rotate(-2deg);
}

.buckapi-service-card .service-icon-inner {
   display: flex !important;
   align-items: center;
   justify-content: center;

   width: 100%;
   height: 100%;
}

.buckapi-service-card .service-icon i {
   color: #ffffff;
   font-size: 29px;
}


/* Colores de iconos */
.buckapi-service-card .service-icon-bg-1 {
   background: linear-gradient(135deg, #6257e8, #8279f2);
}

.buckapi-service-card .service-icon-bg-2 {
   background: linear-gradient(135deg, #1877f2, #17a2b8);
}

.buckapi-service-card .service-icon-bg-3 {
   background: linear-gradient(135deg, #18a4d8, #54c1e8);
}

.buckapi-service-card .service-icon-bg-4 {
   background: linear-gradient(135deg, #7c4dff, #a27cff);
}

.buckapi-service-card .service-icon-bg-5 {
   background: linear-gradient(135deg, #ff8a34, #ffad67);
}

.buckapi-service-card .service-icon-bg-6 {
   background: linear-gradient(135deg, #18a873, #4cc89b);
}


/* Contenido */
.buckapi-service-card .service-content {
   display: flex;
   flex: 1;
   flex-direction: column;
}

.buckapi-service-card .service-content h3 {
   margin: 0 0 13px;

   color: #1876ef;

   font-size: 21px;
   font-weight: 800;
   line-height: 1.3;
   letter-spacing: -0.015em;
}

.buckapi-service-card .service-content > p {
   margin: 0;

   color: #69707e;

   font-size: 14px;
   line-height: 1.7;
}


/* Lista */
.buckapi-service-points {
   display: grid;
   gap: 9px;

   margin: 21px 0 25px;
   padding: 20px 0 0;

   border-top: 1px solid rgba(24, 28, 39, 0.08);
   list-style: none;
}

.buckapi-service-points li {
   position: relative;

   padding-left: 23px;

   color: #343a49;

   font-size: 13px;
   font-weight: 600;
   line-height: 1.45;
}

.buckapi-service-points li::before {
   content: "\f00c";

   position: absolute;
   top: 1px;
   left: 0;

   display: inline-flex;
   align-items: center;
   justify-content: center;

   width: 16px;
   height: 16px;

   color: #ffffff;
   background: #1877f2;
   border-radius: 50%;

   font-family: FontAwesome;
   font-size: 8px;
}


/* Enlace inferior */
.buckapi-service-card .tw-readmore {
   display: inline-flex;
   align-items: center;
   gap: 8px;

   width: fit-content;
   margin-top: auto;

   color: #1877f2;

   font-size: 13px;
   font-weight: 800;
   line-height: 1.2;
   text-decoration: none;
}

.buckapi-service-card .tw-readmore i {
   transition: transform 0.25s ease;
}

.buckapi-service-card .tw-readmore:hover i {
   transform: translateX(5px);
}


/* CTA inferior */
.buckapi-services-cta {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 30px;

   margin-top: 27px;
   padding: 28px 32px;

   background:
      linear-gradient(
         135deg,
         #1d2230,
         #292f40
      );

   border-radius: 20px;

   box-shadow: 0 22px 48px rgba(24, 28, 39, 0.18);
}

.buckapi-services-cta-content {
   display: flex;
   align-items: center;
   gap: 18px;
}

.buckapi-services-cta-icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;

   flex: 0 0 56px;
   width: 56px;
   height: 56px;

   color: #ffffff;
   background: linear-gradient(135deg, #1877f2, #17a2b8);
   border-radius: 15px;

   font-size: 24px;
}

.buckapi-services-cta h3 {
   margin: 0 0 5px;

   color: #ffffff;

   font-size: 20px;
   font-weight: 800;
}

.buckapi-services-cta p {
   margin: 0;

   color: rgba(255, 255, 255, 0.68);

   font-size: 14px;
   line-height: 1.55;
}

.buckapi-services-cta-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;

   flex: 0 0 auto;
   min-height: 48px;
   padding: 12px 20px;

   color: #ffffff !important;
   background: #1877f2;
   border: 1px solid #1877f2;
   border-radius: 10px;

   font-size: 14px;
   font-weight: 800;
   text-decoration: none !important;

   box-shadow: 0 10px 24px rgba(255, 90, 95, 0.25);

   transition:
      transform 0.25s ease,
      background-color 0.25s ease,
      box-shadow 0.25s ease;
}

.buckapi-services-cta-button:hover {
   color: #ffffff !important;
   background: #1877f2;

   transform: translateY(-2px);
   box-shadow: 0 14px 28px rgba(255, 90, 95, 0.32);
}


/* Tecnologías */
.buckapi-technology-strip {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   gap: 14px 22px;

   margin-top: 46px;
   padding-top: 30px;

   border-top: 1px solid rgba(24, 28, 39, 0.08);
}

.buckapi-technology-title {
   color: #1876ef;

   font-size: 12px;
   font-weight: 800;
   letter-spacing: 0.07em;
   text-transform: uppercase;
}

.buckapi-technology-list {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   gap: 8px;

   margin: 0;
   padding: 0;

   list-style: none;
}

.buckapi-technology-list li {
   padding: 7px 11px;

   color: #555d6c;
   background: #f5f6f9;
   border: 1px solid rgba(24, 28, 39, 0.07);
   border-radius: 999px;

   font-size: 11px;
   font-weight: 700;
}


/* Tablet */
@media (max-width: 991.98px) {
   .buckapi-services {
      padding: 85px 0 75px;
   }

   .buckapi-services-grid {
      margin-top: 45px;
   }

   .buckapi-services-cta {
      align-items: flex-start;
      flex-direction: column;
   }

   .buckapi-services-cta-button {
      width: 100%;
   }
}


/* Móvil */
@media (max-width: 767.98px) {
   .buckapi-services {
      padding: 70px 0 60px;
   }

   .buckapi-services-intro {
      font-size: 15px;
      line-height: 1.65;
   }

   .buckapi-service-card {
      padding: 29px 24px 27px;
      border-radius: 17px;
   }

   .buckapi-service-card .service-icon {
      width: 64px;
      height: 64px;
      margin-bottom: 21px;
   }

   .buckapi-service-card .service-icon i {
      font-size: 25px;
   }

   .buckapi-services-cta {
      padding: 24px;
   }

   .buckapi-services-cta-content {
      align-items: flex-start;
   }
}


/* Móvil pequeño */
@media (max-width: 575.98px) {
   .buckapi-services .section-heading h2 {
      font-size: 2rem;
   }

   .buckapi-services-cta-content {
      flex-direction: column;
   }

   .buckapi-services-cta-icon {
      flex-basis: 50px;
      width: 50px;
      height: 50px;
   }

   .buckapi-technology-strip {
      align-items: flex-start;
      flex-direction: column;
   }

   .buckapi-technology-list {
      justify-content: flex-start;
   }
}


/* Accesibilidad */
.buckapi-service-card .tw-readmore:focus-visible,
.buckapi-services-cta-button:focus-visible {
   outline: 3px solid rgba(255, 90, 95, 0.4);
   outline-offset: 4px;
}


/* Menos movimiento */
@media (prefers-reduced-motion: reduce) {
   .buckapi-service-card,
   .buckapi-service-card .service-icon,
   .buckapi-service-card .tw-readmore i,
   .buckapi-services-cta-button {
      transition: none !important;
   }
}

/* =========================================================
   CASOS DE ÉXITO
   ========================================================= */

.bk-cases {
   position: relative;
   padding: 105px 0 95px;
   overflow: hidden;

   background:
      radial-gradient(
         circle at 8% 20%,
         rgba(255, 90, 95, 0.07),
         transparent 28%
      ),
      radial-gradient(
         circle at 92% 75%,
         rgba(98, 87, 232, 0.07),
         transparent 30%
      ),
      #f8f9fc;
}


/* Decoración de fondo */
.bk-cases::before {
   content: "";

   position: absolute;
   top: -180px;
   right: -160px;

   width: 430px;
   height: 430px;

   border: 1px solid rgb(0 123 255 / 7%);
   border-radius: 50%;

   pointer-events: none;
}

.bk-cases::after {
   content: "";

   position: absolute;
   bottom: -220px;
   left: -190px;

   width: 480px;
   height: 480px;

   border: 1px solid rgba(98, 87, 232, 0.09);
   border-radius: 50%;

   pointer-events: none;
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

.bk-cases-header {
   position: relative;
   z-index: 2;

   max-width: 790px;
   margin: 0 auto 55px;

   text-align: center;
}

.bk-cases-header .bk-section-label {
   display: inline-flex;
   align-items: center;

   margin-bottom: 14px;
   padding: 7px 13px;

   color: #1876ef;
   background: rgb(24 119 242 / 9%);
   border: 1px solid #007bff;
   border-radius: 999px;

   font-size: 11px;
   font-weight: 800;
   line-height: 1.2;
   letter-spacing: 0.1em;
   text-transform: uppercase;
}

.bk-cases-header h2 {
   margin: 0;

   color: #1876ef;

   font-size: clamp(2rem, 4vw, 3.25rem);
   font-weight: 700;
   line-height: 1.15;
   letter-spacing: -0.035em;
}

.bk-cases-header h2 span {
   color: #1876ef;
}

.bk-cases-header p {
   max-width: 690px;
   margin: 20px auto 0;

   color: #646b79;

   font-size: 17px;
   line-height: 1.75;
}


/* =========================================================
   CARRUSEL
   ========================================================= */

.bk-cases-carousel {
   position: relative;
   z-index: 2;
}

.bk-case-slide {
   height: 100%;
   padding: 10px 8px 25px;
}


/* Permite que todas las tarjetas tengan la misma altura */
.bk-cases-carousel .owl-stage {
   display: flex;
}

.bk-cases-carousel .owl-item {
   display: flex;
   min-height: 100%;
}

.bk-cases-carousel .owl-item > .bk-case-slide {
   display: flex;
   width: 100%;
}


/* =========================================================
   TARJETA
   ========================================================= */

.bk-case-card {
   position: relative;

   display: flex;
   flex-direction: column;

   width: 100%;
   min-height: 100%;

   overflow: hidden;

   background: rgba(255, 255, 255, 0.96);
   border: 1px solid rgba(24, 28, 39, 0.08);
   border-radius: 22px;

   box-shadow:
      0 15px 42px rgba(24, 28, 39, 0.08);

   transform: translateY(0);

   transition:
      transform 0.35s ease,
      border-color 0.35s ease,
      box-shadow 0.35s ease;
}

.bk-case-card:hover {
   transform: translateY(-9px);

   border-color: rgba(255, 90, 95, 0.27);

   box-shadow:
      0 28px 60px rgba(24, 28, 39, 0.14);
}


/* Línea superior animada */
.bk-case-card::before {
   content: "";

   position: absolute;
   top: 0;
   left: 0;
   z-index: 5;

   width: 0;
   height: 4px;

   background:
      linear-gradient(
         90deg,
         #1876ef,
         #ff8a76,
         #6257e8
      );

   transition: width 0.45s ease;
}

.bk-case-card:hover::before {
   width: 100%;
}


/* =========================================================
   IMAGEN
   ========================================================= */

.bk-case-image {
   position: relative;

   display: block;
   height: 245px;

   overflow: hidden;

   background: #e9ebf2;
}

.bk-case-image img {
   display: block;

   width: 100%;
   height: 100%;

   object-fit: cover;
   object-position: top center;

   transform: scale(1);

   transition:
      transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 0.5s ease;
}

.bk-case-card:hover .bk-case-image img {
   transform: scale(1.055);
}


/* Degradado sobre imagen */
.bk-case-image-overlay {
   position: absolute;
   inset: 0;
   z-index: 1;

   background:
      linear-gradient(
         180deg,
         transparent 40%,
         rgba(19, 23, 34, 0.18) 100%
      );

   transition: background-color 0.35s ease;
}


/* Categoría */
.bk-case-category {
   position: absolute;
   top: 17px;
   left: 17px;
   z-index: 3;

   display: inline-flex;
   align-items: center;

   padding: 7px 11px;

   color: #ffffff;
   background: rgba(24, 28, 39, 0.76);
   border: 1px solid rgba(255, 255, 255, 0.18);
   border-radius: 999px;

   font-size: 10px;
   font-weight: 800;
   line-height: 1.2;
   letter-spacing: 0.06em;
   text-transform: uppercase;

   -webkit-backdrop-filter: blur(9px);
   backdrop-filter: blur(9px);
}


/* Icono externo */
.bk-case-open-icon {
   position: absolute;
   top: 17px;
   right: 17px;
   z-index: 3;

   display: inline-flex;
   align-items: center;
   justify-content: center;

   width: 38px;
   height: 38px;

   color: #1876ef;
   background: rgba(255, 255, 255, 0.92);
   border-radius: 11px;

   box-shadow: 0 9px 20px rgba(24, 28, 39, 0.13);

   opacity: 0;
   transform: translateY(-6px);

   transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      color 0.3s ease,
      background-color 0.3s ease;
}

.bk-case-card:hover .bk-case-open-icon {
   opacity: 1;
   transform: translateY(0);
}

.bk-case-open-icon:hover {
   color: #ffffff;
   background: #1876ef;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.bk-case-content {
   display: flex;
   flex: 1;
   flex-direction: column;

   padding: 28px 27px 27px;
}

.bk-case-heading {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   gap: 15px;

   margin-bottom: 15px;
}

.bk-case-heading > div {
   display: flex;
   align-items: center;
   gap: 10px;
}


/* Número */
.bk-case-number {
   display: inline-flex;
   align-items: center;
   justify-content: center;

   width: 31px;
   height: 31px;

   color: #1876ef;
   background: rgb(0 123 255 / 7%);
   border-radius: 9px;

   font-size: 10px;
   font-weight: 900;
}

.bk-case-heading h3 {
   margin: 0;

   color: #1876ef;

   font-size: 23px;
   font-weight: 800;
   line-height: 1.2;
   letter-spacing: -0.02em;
}

.bk-case-location {
   display: inline-flex;
   flex: 0 0 auto;

   padding-top: 6px;

   color: #8b919e;

   font-size: 11px;
   font-weight: 700;
}

.bk-case-content > p {
   margin: 0;

   color: #676e7d;

   font-size: 14px;
   line-height: 1.7;
}


/* =========================================================
   FUNCIONALIDADES
   ========================================================= */

.bk-case-features {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 9px 12px;

   margin: 22px 0 0;
   padding: 20px 0 0;

   border-top: 1px solid rgba(24, 28, 39, 0.08);

   list-style: none;
}

.bk-case-features li {
   position: relative;

   padding-left: 19px;

   color: #343a49;

   font-size: 12px;
   font-weight: 600;
   line-height: 1.4;
}

.bk-case-features li::before {
   content: "";

   position: absolute;
   top: 5px;
   left: 0;

   width: 7px;
   height: 7px;

   background: #1876ef;
   border-radius: 50%;

   box-shadow: 0 0 0 4px rgba(255, 90, 95, 0.1);
}


/* =========================================================
   TECNOLOGÍAS
   ========================================================= */

.bk-case-technologies {
   display: flex;
   flex-wrap: wrap;
   gap: 7px;

   margin-top: 23px;
}

.bk-case-technologies span {
   display: inline-flex;
   align-items: center;

   padding: 6px 9px;

   color: #59606f;
   background: #f4f5f8;
   border: 1px solid rgba(24, 28, 39, 0.06);
   border-radius: 999px;

   font-size: 10px;
   font-weight: 800;
}


/* =========================================================
   ENLACE
   ========================================================= */

.bk-case-link {
   display: inline-flex;
   align-items: center;
   gap: 9px;

   width: fit-content;
   margin-top: 25px;

   color: #1876ef;

   font-size: 13px;
   font-weight: 800;
   line-height: 1.2;
   text-decoration: none !important;
}

.bk-case-link i {
   transition: transform 0.25s ease;
}

.bk-case-link:hover {
   color: #c9383f;
}

.bk-case-link:hover i {
   transform: translateX(5px);
}


/* =========================================================
   CONTROLES DEL CARRUSEL
   ========================================================= */

.bk-cases-carousel .owl-nav {
   position: absolute;
   top: -95px;
   right: 0;

   display: flex;
   gap: 9px;

   margin: 0 !important;
}

.bk-cases-carousel .owl-prev,
.bk-cases-carousel .owl-next {
   display: inline-flex !important;
   align-items: center;
   justify-content: center;

   width: 45px;
   height: 45px;
   margin: 0 !important;

   color: #1876ef !important;
   background: #ffffff !important;
   border: 1px solid rgba(24, 28, 39, 0.1) !important;
   border-radius: 12px !important;

   box-shadow: 0 10px 24px rgba(24, 28, 39, 0.08);

   transition:
      color 0.25s ease,
      background-color 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
}

.bk-cases-carousel .owl-prev:hover,
.bk-cases-carousel .owl-next:hover {
   color: #ffffff !important;
   background: #1876ef !important;
   border-color: #1876ef !important;

   transform: translateY(-2px);
}


/* Puntos */
.bk-cases-carousel .owl-dots {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 7px;

   margin-top: 19px !important;
}

.bk-cases-carousel .owl-dot {
   outline: none;
}

.bk-cases-carousel .owl-dot span {
   display: block;

   width: 9px !important;
   height: 9px !important;
   margin: 0 !important;

   background: rgba(24, 28, 39, 0.18) !important;
   border-radius: 999px !important;

   transition:
      width 0.3s ease,
      background-color 0.3s ease;
}

.bk-cases-carousel .owl-dot.active span {
   width: 28px !important;
   background: #1876ef !important;
}


/* =========================================================
   PIE
   ========================================================= */

.bk-cases-footer {
   position: relative;
   z-index: 2;

   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;

   margin-top: 39px;

   text-align: center;
}

.bk-cases-footer p {
   margin: 0;

   color: #747b89;

   font-size: 14px;
}

.bk-cases-portfolio-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 9px;

   min-height: 49px;
   padding: 12px 20px;

   color: #ffffff !important;
   background: #1d2230;
   border: 1px solid #1d2230;
   border-radius: 11px;

   font-size: 14px;
   font-weight: 800;
   text-decoration: none !important;

   box-shadow: 0 12px 25px rgba(24, 28, 39, 0.15);

   transition:
      background-color 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease,
      box-shadow 0.25s ease;
}

.bk-cases-portfolio-button:hover {
   color: #ffffff !important;
   background: #1876ef;
   border-color: #1876ef;

   transform: translateY(-2px);

   box-shadow: 0 15px 30px rgba(255, 90, 95, 0.25);
}

.bk-cases-portfolio-button i {
   transition: transform 0.25s ease;
}

.bk-cases-portfolio-button:hover i {
   transform: translateX(4px);
}


/* =========================================================
   ANIMACIÓN DE ENTRADA DE CADA SLIDE
   ========================================================= */

.bk-cases-carousel .owl-item .bk-case-card {
   opacity: 0;
   transform: translateY(22px) scale(0.98);

   transition:
      opacity 0.55s ease,
      transform 0.55s ease,
      box-shadow 0.35s ease,
      border-color 0.35s ease;
}

.bk-cases-carousel .owl-item.active .bk-case-card {
   opacity: 1;
   transform: translateY(0) scale(1);
}

.bk-cases-carousel .owl-item.active:nth-child(2) .bk-case-card {
   transition-delay: 0.08s;
}

.bk-cases-carousel .owl-item.active:nth-child(3) .bk-case-card {
   transition-delay: 0.16s;
}


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

@media (max-width: 1199.98px) {
   .bk-case-image {
      height: 225px;
   }

   .bk-case-content {
      padding: 25px 23px;
   }

   .bk-case-features {
      grid-template-columns: 1fr;
   }
}


@media (max-width: 991.98px) {
   .bk-cases {
      padding: 85px 0 75px;
   }

   .bk-cases-header {
      margin-bottom: 45px;
   }

   .bk-cases-carousel .owl-nav {
      position: static;

      justify-content: center;

      margin-top: 22px !important;
   }
}


@media (max-width: 767.98px) {
   .bk-cases {
      padding: 70px 0 62px;
   }

   .bk-cases-header p {
      font-size: 15px;
      line-height: 1.65;
   }

   .bk-case-slide {
      padding-left: 3px;
      padding-right: 3px;
   }

   .bk-case-card {
      border-radius: 18px;
   }

   .bk-case-image {
      height: 230px;
   }

   .bk-case-content {
      padding: 25px 22px;
   }

   .bk-case-open-icon {
      opacity: 1;
      transform: none;
   }

   .bk-case-features {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }

   .bk-cases-footer {
      flex-direction: column;
   }
}


@media (max-width: 575.98px) {
   .bk-cases-header h2 {
      font-size: 2rem;
   }

   .bk-case-image {
      height: 205px;
   }

   .bk-case-heading {
      flex-direction: column;
      gap: 7px;
   }

   .bk-case-location {
      padding-top: 0;
      padding-left: 41px;
   }

   .bk-case-features {
      grid-template-columns: 1fr;
   }

   .bk-cases-portfolio-button {
      width: 100%;
   }
}


/* Accesibilidad */
.bk-case-image:focus-visible,
.bk-case-link:focus-visible,
.bk-cases-portfolio-button:focus-visible,
.bk-cases-carousel .owl-prev:focus-visible,
.bk-cases-carousel .owl-next:focus-visible {
   outline: 3px solid rgba(255, 90, 95, 0.42);
   outline-offset: 4px;
}


/* Reduce movimiento */
@media (prefers-reduced-motion: reduce) {
   .bk-case-card,
   .bk-case-image img,
   .bk-case-open-icon,
   .bk-case-link i,
   .bk-cases-portfolio-button,
   .bk-cases-carousel .owl-item .bk-case-card {
      transition: none !important;
   }
}

/* =========================================================
   PROCESO DE TRABAJO BUCKAPI
   ========================================================= */

.buckapi-process {
   position: relative;
   padding: 105px 0 95px;
   overflow: hidden;

   background:
      radial-gradient(
         circle at 8% 22%,
         rgba(98, 87, 232, 0.07),
         transparent 27%
      ),
      radial-gradient(
         circle at 92% 78%,
         rgba(255, 90, 95, 0.07),
         transparent 29%
      ),
      #ffffff;
}


/* Decoración original */
.buckapi-process .work-bg-pattern {
   position: absolute;
   top: 80px;
   left: 0;
   z-index: 0;

   max-width: 260px;

   opacity: 0.35;
   pointer-events: none;
}

.buckapi-process .container {
   position: relative;
   z-index: 2;
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

.buckapi-process .buckapi-section-label {
   display: inline-flex;
   align-items: center;

   margin-bottom: 14px;
   padding: 7px 13px;

   color: #1876ef;
   background: rgb(24 119 242 / 9%);
   border: 1px solid #007bff;
   border-radius: 999px;

   font-size: 11px;
   font-weight: 800;
   line-height: 1.2;
   letter-spacing: 0.1em;
   text-transform: uppercase;
}

.buckapi-process .section-heading h2 {
   max-width: 730px;
   margin: 0 auto;

   color: #1876ef;

   font-size: clamp(2rem, 4vw, 3.25rem);
   font-weight: 700;
   line-height: 1.15;
   letter-spacing: -0.035em;
}

.buckapi-process .section-heading h2 span {
   color: #1876ef;
}

.buckapi-process-intro {
   max-width: 660px;
   margin: 19px auto 0;

   color: #646b79;

   font-size: 17px;
   line-height: 1.75;
}


/* =========================================================
   PASOS
   ========================================================= */

.buckapi-process-steps {
   position: relative;

   margin-top: 62px;
}


/* Línea horizontal de conexión */
.buckapi-process-steps::before {
   content: "";

   position: absolute;
   top: 78px;
   left: 12.5%;
   right: 12.5%;
   z-index: 0;

   height: 2px;

   background:
      linear-gradient(
         90deg,
         rgba(98, 87, 232, 0.16),
         rgba(255, 90, 95, 0.55),
         rgba(255, 169, 70, 0.4)
      );
}


/* Animación sobre la línea */
.buckapi-process-steps::after {
   content: "";

   position: absolute;
   top: 77px;
   left: 12.5%;
   z-index: 1;

   width: 45px;
   height: 4px;

   background: #1876ef;
   border-radius: 999px;

   box-shadow: 0 0 12px rgba(255, 90, 95, 0.55);

   animation: buckapiProcessLine 5s linear infinite;
}


/* Columna */
.buckapi-process-steps > div {
   display: flex;
   margin-bottom: 30px;
}


/* Paso */
.buckapi-process-step {
   position: relative;
   z-index: 2;

   display: flex;
   flex-direction: column;

   width: 100%;
   margin: 0;
   padding: 0 18px;

   text-align: center;
}


/* Posición del círculo */
.buckapi-process-position {
   position: relative;

   display: flex;
   justify-content: center;

   margin-bottom: 25px;
}


/* Número */
.buckapi-process-number {
   position: absolute;
   top: -10px;
   right: calc(50% - 68px);
   z-index: 5;

   display: inline-flex;
   align-items: center;
   justify-content: center;

   width: 34px;
   height: 34px;

   color: #ffffff;
   background: #1d2230;
   border: 3px solid #ffffff;
   border-radius: 50%;

   font-size: 10px;
   font-weight: 900;

   box-shadow: 0 8px 18px rgba(24, 28, 39, 0.18);
}


/* Círculos originales */
.buckapi-process .process-wrapper {
   position: relative;
   z-index: 3;

   width: 156px;
   height: 156px;
   margin: 0 auto;

   border-radius: 50%;

   box-shadow:
      0 17px 38px rgba(24, 28, 39, 0.12),
      inset 0 0 0 8px rgba(255, 255, 255, 0.18);

   transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;
}

.buckapi-process-step:hover .process-wrapper {
   transform: translateY(-7px) rotate(-2deg);

   box-shadow:
      0 24px 48px rgba(24, 28, 39, 0.17),
      inset 0 0 0 8px rgba(255, 255, 255, 0.22);
}

.buckapi-process .process-inner {
   vertical-align: middle;
}

.buckapi-process .process-inner img {
   width: auto;
   max-width: 75px;
   max-height: 75px;

   transition: transform 0.35s ease;
}

.buckapi-process-step:hover .process-inner img {
   transform: scale(1.08);
}


/* Colores de respaldo */
.buckapi-process .process-wrapper:not(.bg-orange):not(.bg-blue):not(.bg-yellow) {
   background:
      linear-gradient(
         135deg,
         #6257e8,
         #847bf2
      );
}

.buckapi-process .process-wrapper.bg-orange {
   background:
      linear-gradient(
         135deg,
         #ff7c4c,
         #ff9c6f
      );
}

.buckapi-process .process-wrapper.bg-blue {
   background:
      linear-gradient(
         135deg,
         #20a5db,
         #5bc5e8
      );
}

.buckapi-process .process-wrapper.bg-yellow {
   background:
      linear-gradient(
         135deg,
         #f8b438,
         #ffd16f
      );
}


/* =========================================================
   CONTENIDO DEL PASO
   ========================================================= */

.buckapi-process-content {
   display: flex;
   flex: 1;
   flex-direction: column;
}

.buckapi-process-label {
   display: block;

   margin-bottom: 8px;

   color: #1876ef;

   font-size: 10px;
   font-weight: 900;
   letter-spacing: 0.1em;
   text-transform: uppercase;
}

.buckapi-process-content h3 {
   max-width: 220px;
   margin: 0 auto 10px;

   color: #1876ef;

   font-size: 18px;
   font-weight: 800;
   line-height: 1.35;
   letter-spacing: -0.015em;
}

.buckapi-process-content p {
   max-width: 245px;
   margin: 0 auto;

   color: #6b7280;

   font-size: 13px;
   line-height: 1.65;
}


/* =========================================================
   BENEFICIOS
   ========================================================= */

.buckapi-process-benefits {
   position: relative;

   display: grid;
   grid-template-columns: 1.2fr 2fr auto;
   align-items: center;
   gap: 28px;

   margin-top: 45px;
   padding: 28px 30px;

   overflow: hidden;

   background:
      linear-gradient(
         135deg,
         #1d2230,
         #292f40
      );

   border-radius: 20px;

   box-shadow: 0 22px 50px rgba(24, 28, 39, 0.18);
}


/* Brillo decorativo */
.buckapi-process-benefits::before {
   content: "";

   position: absolute;
   top: -90px;
   right: -75px;

   width: 210px;
   height: 210px;

   background:
      radial-gradient(
         circle,
         rgba(255, 90, 95, 0.28),
         transparent 68%
      );

   border-radius: 50%;

   pointer-events: none;
}


/* Encabezado de beneficios */
.buckapi-process-benefits-heading {
   position: relative;
   z-index: 2;

   display: flex;
   align-items: center;
   gap: 15px;
}

.buckapi-process-benefits-icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;

   flex: 0 0 51px;
   width: 51px;
   height: 51px;

   color: #ffffff;
   background:
      linear-gradient(
         135deg,
         #1876ef,
         #17a2b8
      );

   border-radius: 14px;

   font-size: 18px;

   box-shadow: 0 10px 24px rgba(255, 90, 95, 0.26);
}

.buckapi-process-benefits-heading > div > span {
   display: block;

   margin-bottom: 4px;

   color: rgba(255, 255, 255, 0.52);

   font-size: 9px;
   font-weight: 800;
   letter-spacing: 0.1em;
   text-transform: uppercase;
}

.buckapi-process-benefits-heading h3 {
   max-width: 290px;
   margin: 0;

   color: #ffffff;

   font-size: 16px;
   font-weight: 800;
   line-height: 1.4;
}


/* Lista */
.buckapi-process-benefits-list {
   position: relative;
   z-index: 2;

   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 16px 22px;
}

.buckapi-process-benefit {
   display: flex;
   align-items: flex-start;
   gap: 10px;
}

.buckapi-process-benefit > span {
   display: inline-flex;
   align-items: center;
   justify-content: center;

   flex: 0 0 33px;
   width: 33px;
   height: 33px;

   color: #1876ef;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.08);
   border-radius: 9px;

   font-size: 13px;
}

.buckapi-process-benefit strong {
   display: block;

   margin-bottom: 2px;

   color: #ffffff;

   font-size: 12px;
   font-weight: 800;
   line-height: 1.3;
}

.buckapi-process-benefit small {
   display: block;

   color: rgba(255, 255, 255, 0.56);

   font-size: 10px;
   line-height: 1.4;
}


/* CTA */
.buckapi-process-cta {
   position: relative;
   z-index: 2;

   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;

   min-height: 48px;
   padding: 12px 18px;

   color: #ffffff !important;
   background: #1876ef;
   border: 1px solid #1876ef;
   border-radius: 10px;

   font-size: 13px;
   font-weight: 800;
   line-height: 1.2;
   white-space: nowrap;
   text-decoration: none !important;

   box-shadow: 0 10px 24px rgba(255, 90, 95, 0.25);

   transition:
      transform 0.25s ease,
      background-color 0.25s ease,
      box-shadow 0.25s ease;
}

.buckapi-process-cta:hover {
   color: #ffffff !important;
   background: #1876ef;

   transform: translateY(-2px);

   box-shadow: 0 15px 28px rgba(255, 90, 95, 0.33);
}


/* =========================================================
   ANIMACIÓN DE LÍNEA
   ========================================================= */

@keyframes buckapiProcessLine {
   0% {
      left: 12.5%;
      opacity: 0;
   }

   10% {
      opacity: 1;
   }

   90% {
      opacity: 1;
   }

   100% {
      left: calc(87.5% - 45px);
      opacity: 0;
   }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {
   .buckapi-process {
      padding: 85px 0 75px;
   }

   .buckapi-process-steps {
      margin-top: 48px;
   }

   .buckapi-process-steps::before,
   .buckapi-process-steps::after {
      display: none;
   }

   .buckapi-process-step {
      padding: 0 25px;
   }

   .buckapi-process-benefits {
      grid-template-columns: 1fr;
      align-items: flex-start;
   }

   .buckapi-process-benefits-heading h3 {
      max-width: none;
   }

   .buckapi-process-cta {
      width: 100%;
   }
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 767.98px) {
   .buckapi-process {
      padding: 70px 0 62px;
   }

   .buckapi-process-intro {
      font-size: 15px;
      line-height: 1.65;
   }

   .buckapi-process-step {
      padding: 0 10px;
   }

   .buckapi-process .process-wrapper {
      width: 138px;
      height: 138px;
   }

   .buckapi-process .process-inner img {
      max-width: 65px;
      max-height: 65px;
   }

   .buckapi-process-number {
      right: calc(50% - 61px);
   }

   .buckapi-process-benefits {
      margin-top: 30px;
      padding: 25px 23px;
   }

   .buckapi-process-benefits-list {
      grid-template-columns: 1fr;
   }
}


/* =========================================================
   MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 575.98px) {
   .buckapi-process .section-heading h2 {
      font-size: 2rem;
   }

   .buckapi-process-benefits-heading {
      align-items: flex-start;
   }

   .buckapi-process-benefits-heading h3 {
      font-size: 15px;
   }
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

.buckapi-process-cta:focus-visible {
   outline: 3px solid rgba(255, 90, 95, 0.45);
   outline-offset: 4px;
}


/* Menos movimiento */
@media (prefers-reduced-motion: reduce) {
   .buckapi-process-steps::after {
      animation: none !important;
      display: none;
   }

   .buckapi-process .process-wrapper,
   .buckapi-process .process-inner img,
   .buckapi-process-cta {
      transition: none !important;
   }
}

/* =========================================================
   CLIENTES Y EMPRESAS
   Carrusel de logotipos Buckapi
   ========================================================= */

.bk-clients {
   position: relative;
   padding: 72px 0 65px;
   overflow: hidden;

   background: #f8f9fc;
   border-top: 1px solid rgba(35, 35, 35, 0.06);
   border-bottom: 1px solid rgba(35, 35, 35, 0.06);
}


/* Decoración sutil */
.bk-clients::before {
   content: "";

   position: absolute;
   top: -130px;
   left: -130px;

   width: 310px;
   height: 310px;

   background:
      radial-gradient(
         circle,
         rgba(117, 88, 232, 0.08),
         transparent 68%
      );

   border-radius: 50%;
   pointer-events: none;
}

.bk-clients::after {
   content: "";

   position: absolute;
   right: -130px;
   bottom: -140px;

   width: 330px;
   height: 330px;

   background:
      radial-gradient(
         circle,
         rgba(255, 90, 95, 0.08),
         transparent 68%
      );

   border-radius: 50%;
   pointer-events: none;
}

.bk-clients .container {
   position: relative;
   z-index: 2;
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

.bk-clients-header {
   position: relative;

   display: flex;
   align-items: center;
   justify-content: center;

   margin-bottom: 38px;

   text-align: center;
}

.bk-clients-header span {
   position: relative;

   display: inline-flex;
   align-items: center;
   gap: 13px;

   color: #525252;

   font-size: 13px;
   font-weight: 700;
   line-height: 1.4;
   letter-spacing: 0.06em;
   text-transform: uppercase;
}

.bk-clients-header span::before,
.bk-clients-header span::after {
   content: "";

   display: block;

   width: 48px;
   height: 1px;

   background: rgba(52, 52, 52, 0.18);
}


/* =========================================================
   CARRUSEL
   ========================================================= */

.bk-clients-carousel {
   position: relative;
}

.bk-client-slide {
   display: flex;
   align-items: center;
   justify-content: center;

   min-height: 132px;
   padding: 7px;
}


/* Contenedor del logo */
.bk-client-logo {
   position: relative;

   display: flex;
   align-items: center;
   justify-content: center;

   width: 100%;
   height: 112px;
   padding: 22px 25px;

   overflow: hidden;

   background: #ffffff;
   border: 1px solid rgba(35, 35, 35, 0.07);
   border-radius: 12px;

   box-shadow: 0 8px 25px rgba(35, 35, 35, 0.05);

   text-decoration: none;

   transition:
      transform 0.3s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease;
}


/* Línea superior */
.bk-client-logo::before {
   content: "";

   position: absolute;
   top: 0;
   left: 50%;

   width: 0;
   height: 3px;

   background:
      linear-gradient(
         90deg,
         #7558e8,
         #007bff
      );

   transform: translateX(-50%);

   transition: width 0.35s ease;
}


/* Logo */
.bk-client-logo img {
   display: block;

   width: auto;
   max-width: 100%;
   height: auto;
   max-height: 61px;

   object-fit: contain;

   filter: grayscale(100%);
   opacity: 0.66;

   transform: scale(1);

   transition:
      filter 0.3s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
}


/* Hover */
.bk-client-logo:hover {
   transform: translateY(-5px);

   border-color: rgba(255, 90, 95, 0.23);

   box-shadow: 0 15px 32px rgba(35, 35, 35, 0.1);
}

.bk-client-logo:hover::before {
   width: 100%;
}

.bk-client-logo:hover img {
   filter: grayscale(0%);
   opacity: 1;

   transform: scale(1.05);
}


/* Logos que requieren fondo oscuro */
.bk-client-logo-dark {
   background: #242936;
}

.bk-client-logo-dark img {
   filter: grayscale(100%) brightness(2);
   opacity: 0.78;
}

.bk-client-logo-dark:hover img {
   filter: none;
   opacity: 1;
}


/* =========================================================
   PAÍSES
   ========================================================= */

.bk-clients-countries {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   gap: 7px 10px;

   max-width: 900px;
   margin: 34px auto 0;
   padding-top: 23px;

   border-top: 1px solid rgba(35, 35, 35, 0.08);

   text-align: center;
}

.bk-clients-countries span {
   color: #848484;

   font-size: 11px;
   font-weight: 600;
   line-height: 1.4;
   letter-spacing: 0.05em;
   text-transform: uppercase;
}

.bk-clients-countries span[aria-hidden="true"] {
   color: #007bff;
   font-size: 14px;
}


/* =========================================================
   FLECHAS DEL CARRUSEL
   ========================================================= */

.bk-clients-carousel .owl-nav {
   margin: 0 !important;
}

.bk-clients-carousel .owl-prev,
.bk-clients-carousel .owl-next {
   position: absolute;
   top: 50%;

   display: inline-flex !important;
   align-items: center;
   justify-content: center;

   width: 40px;
   height: 40px;
   margin: 0 !important;

   color: #444444 !important;
   background: #ffffff !important;
   border: 1px solid rgba(35, 35, 35, 0.09) !important;
   border-radius: 50% !important;

   box-shadow: 0 8px 22px rgba(35, 35, 35, 0.1);

   transform: translateY(-50%);

   transition:
      color 0.25s ease,
      background-color 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
}

.bk-clients-carousel .owl-prev {
   left: -19px;
}

.bk-clients-carousel .owl-next {
   right: -19px;
}

.bk-clients-carousel .owl-prev:hover,
.bk-clients-carousel .owl-next:hover {
   color: #ffffff !important;
   background: #007bff !important;
   border-color: #007bff !important;
}


/* =========================================================
   PUNTOS
   ========================================================= */

.bk-clients-carousel .owl-dots {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 6px;

   margin-top: 22px !important;
}

.bk-clients-carousel .owl-dot span {
   display: block;

   width: 8px !important;
   height: 8px !important;
   margin: 0 !important;

   background: rgba(48, 48, 48, 0.16) !important;
   border-radius: 999px !important;

   transition:
      width 0.3s ease,
      background-color 0.3s ease;
}

.bk-clients-carousel .owl-dot.active span {
   width: 24px !important;
   background: #007bff !important;
}


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

@media (max-width: 1199.98px) {
   .bk-client-logo {
      height: 105px;
      padding: 19px 21px;
   }

   .bk-client-logo img {
      max-height: 55px;
   }
}


@media (max-width: 991.98px) {
   .bk-clients {
      padding: 65px 0 57px;
   }

   .bk-clients-carousel .owl-prev {
      left: -5px;
   }

   .bk-clients-carousel .owl-next {
      right: -5px;
   }
}


@media (max-width: 767.98px) {
   .bk-clients {
      padding: 58px 0 50px;
   }

   .bk-clients-header {
      margin-bottom: 29px;
   }

   .bk-clients-header span {
      font-size: 11px;
   }

   .bk-clients-header span::before,
   .bk-clients-header span::after {
      width: 25px;
   }

   .bk-client-slide {
      min-height: 120px;
   }

   .bk-client-logo {
      height: 104px;
      padding: 18px;
   }

   .bk-client-logo img {
      max-height: 54px;
   }

   .bk-clients-carousel .owl-prev,
   .bk-clients-carousel .owl-next {
      display: none !important;
   }

   .bk-clients-countries {
      margin-top: 28px;
      padding-top: 20px;
   }
}


@media (max-width: 575.98px) {
   .bk-clients-header span::before,
   .bk-clients-header span::after {
      display: none;
   }

   .bk-client-logo {
      max-width: 290px;
      margin: 0 auto;
   }

   .bk-clients-countries {
      gap: 6px 8px;
   }

   .bk-clients-countries span {
      font-size: 9px;
   }
}


/* Accesibilidad */
.bk-client-logo:focus-visible,
.bk-clients-carousel .owl-prev:focus-visible,
.bk-clients-carousel .owl-next:focus-visible {
   outline: 3px solid rgba(255, 90, 95, 0.4);
   outline-offset: 4px;
}


/* Menos movimiento */
@media (prefers-reduced-motion: reduce) {
   .bk-client-logo,
   .bk-client-logo::before,
   .bk-client-logo img {
      transition: none !important;
   }
}

/* =========================================================
   VARIABLES VISUALES BUCKAPI
   ========================================================= */

:root {
   --bk-primary: #1877f2;
   --bk-primary-dark: #105fc8;
   --bk-primary-soft: rgba(24, 119, 242, 0.09);

   --bk-secondary: #ffb72f;
   --bk-green: #32cc73;

   --bk-dark: #2f2c2c;
   --bk-text: #757575;
   --bk-muted: #929292;

   --bk-white: #ffffff;
   --bk-light: #f7f9f8;
   --bk-light-blue: #f3f7fd;

   --bk-border: rgba(47, 44, 44, 0.08);
   --bk-border-strong: rgba(47, 44, 44, 0.12);

   --bk-shadow-sm: 0 8px 22px rgba(47, 44, 44, 0.06);
   --bk-shadow-md: 0 15px 38px rgba(47, 44, 44, 0.09);
   --bk-shadow-lg: 0 25px 55px rgba(47, 44, 44, 0.13);
}


/* =========================================================
   ETIQUETA GENERAL DE SECCIÓN
   ========================================================= */

.bk-section-label {
   display: inline-flex;
   align-items: center;
   gap: 8px;

   margin-bottom: 13px;
   padding: 7px 13px;

   color: var(--bk-primary);
   background: var(--bk-primary-soft);
   border: 1px solid rgba(24, 119, 242, 0.14);
   border-radius: 999px;

   font-size: 11px;
   font-weight: 800;
   line-height: 1.2;
   letter-spacing: 0.09em;
   text-transform: uppercase;
}


/* =========================================================
   TESTIMONIOS
   ========================================================= */

.bk-testimonials {
   position: relative;

   padding: 95px 0 90px;

   overflow: hidden;

   background:
      radial-gradient(
         circle at 10% 20%,
         rgba(24, 119, 242, 0.07),
         transparent 28%
      ),
      radial-gradient(
         circle at 90% 82%,
         rgba(50, 204, 115, 0.05),
         transparent 28%
      ),
      var(--bk-light);
}


/* Círculo decorativo */
.bk-testimonials::before {
   content: "";

   position: absolute;
   top: -150px;
   right: -145px;

   width: 350px;
   height: 350px;

   border: 1px solid rgba(24, 119, 242, 0.08);
   border-radius: 50%;

   pointer-events: none;
}


/* =========================================================
   ENCABEZADO DE TESTIMONIOS
   ========================================================= */

.bk-testimonials-header {
   position: relative;
   z-index: 2;

   display: grid;
   grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
   align-items: end;
   gap: 45px;

   margin-bottom: 50px;
}

.bk-testimonials-header h2 {
   max-width: 610px;
   margin: 0;

   color: var(--bk-dark);

   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 800;
   line-height: 1.18;
   letter-spacing: -0.03em;
}

.bk-testimonials-header h2::after {
   content: "";

   display: block;

   width: 88px;
   height: 3px;

   margin-top: 19px;

   background: var(--bk-primary);
   border-radius: 999px;
}

.bk-testimonials-header > p {
   max-width: 520px;
   margin: 0;

   color: var(--bk-text);

   font-size: 16px;
   line-height: 1.75;
}


/* =========================================================
   CARRUSEL DE TESTIMONIOS
   ========================================================= */

.bk-testimonials-carousel {
   position: relative;
   z-index: 2;
}

.bk-testimonial-slide {
   display: flex;

   height: 100%;
   padding: 10px 8px 25px;
}


/* Igualar alturas */
.bk-testimonials-carousel .owl-stage {
   display: flex;
}

.bk-testimonials-carousel .owl-item {
   display: flex;
}

.bk-testimonials-carousel .owl-item > .bk-testimonial-slide {
   width: 100%;
}


/* =========================================================
   TARJETA DE TESTIMONIO
   ========================================================= */

.bk-testimonial-card {
   position: relative;

   display: flex;
   flex-direction: column;

   width: 100%;
   min-height: 100%;
   padding: 31px 29px 27px;

   overflow: hidden;

   background: var(--bk-white);
   border: 1px solid var(--bk-border);
   border-radius: 16px;

   box-shadow: var(--bk-shadow-sm);

   transition:
      transform 0.3s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease;
}


/* Comillas decorativas */
.bk-testimonial-card::before {
   content: "\201C";

   position: absolute;
   top: 13px;
   right: 20px;

   color: rgba(24, 119, 242, 0.08);

   font-family: Georgia, serif;
   font-size: 92px;
   font-weight: 700;
   line-height: 1;

   pointer-events: none;
}


/* Línea superior */
.bk-testimonial-card::after {
   content: "";

   position: absolute;
   top: 0;
   left: 0;

   width: 0;
   height: 4px;

   background:
      linear-gradient(
         90deg,
         var(--bk-primary),
         #5ca7ff
      );

   transition: width 0.4s ease;
}

.bk-testimonial-card:hover {
   transform: translateY(-7px);

   border-color: rgba(24, 119, 242, 0.22);

   box-shadow: var(--bk-shadow-md);
}

.bk-testimonial-card:hover::after {
   width: 100%;
}


/* Estrellas */
.bk-testimonial-stars {
   position: relative;
   z-index: 2;

   display: flex;
   align-items: center;
   gap: 4px;

   margin-bottom: 21px;

   color: var(--bk-secondary);

   font-size: 15px;
}


/* Texto */
.bk-testimonial-card blockquote {
   position: relative;
   z-index: 2;

   flex: 1;

   margin: 0;

   color: #505050;

   font-size: 16px;
   font-weight: 600;
   line-height: 1.75;
}


/* Autor */
.bk-testimonial-author {
   display: flex;
   align-items: center;
   gap: 13px;

   margin-top: 27px;
   padding-top: 22px;

   border-top: 1px solid var(--bk-border);
}


/* Avatar */
.bk-testimonial-avatar {
   display: inline-flex;
   align-items: center;
   justify-content: center;

   flex: 0 0 48px;
   width: 48px;
   height: 48px;

   color: var(--bk-white);
   background:
      linear-gradient(
         135deg,
         var(--bk-primary),
         #66aaff
      );

   border-radius: 50%;

   font-size: 13px;
   font-weight: 800;
   letter-spacing: 0.04em;

   box-shadow: 0 8px 18px rgba(24, 119, 242, 0.22);
}

.bk-testimonial-author strong {
   display: block;

   margin-bottom: 3px;

   color: var(--bk-dark);

   font-size: 14px;
   font-weight: 800;
   line-height: 1.3;
}

.bk-testimonial-author span {
   display: block;

   color: var(--bk-muted);

   font-size: 11px;
   line-height: 1.4;
}


/* =========================================================
   CONTROLES DE TESTIMONIOS
   ========================================================= */

.bk-testimonials-carousel .owl-nav {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 9px;

   margin-top: 18px !important;
}

.bk-testimonials-carousel .owl-prev,
.bk-testimonials-carousel .owl-next {
   display: inline-flex !important;
   align-items: center;
   justify-content: center;

   width: 43px;
   height: 43px;
   margin: 0 !important;

   color: var(--bk-dark) !important;
   background: var(--bk-white) !important;
   border: 1px solid var(--bk-border-strong) !important;
   border-radius: 50% !important;

   box-shadow: var(--bk-shadow-sm);

   transition:
      color 0.25s ease,
      background-color 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
}

.bk-testimonials-carousel .owl-prev:hover,
.bk-testimonials-carousel .owl-next:hover {
   color: var(--bk-white) !important;
   background: var(--bk-primary) !important;
   border-color: var(--bk-primary) !important;

   transform: translateY(-2px);
}


/* Puntos */
.bk-testimonials-carousel .owl-dots {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 6px;

   margin-top: 15px !important;
}

.bk-testimonials-carousel .owl-dot span {
   display: block;

   width: 8px !important;
   height: 8px !important;
   margin: 0 !important;

   background: rgba(47, 44, 44, 0.18) !important;
   border-radius: 999px !important;

   transition:
      width 0.3s ease,
      background-color 0.3s ease;
}

.bk-testimonials-carousel .owl-dot.active span {
   width: 27px !important;
   background: var(--bk-primary) !important;
}


/* =========================================================
   FAQ
   ========================================================= */

.bk-faq {
   position: relative;

   padding: 100px 0 95px;

   background: var(--bk-white);
}

.bk-faq-layout {
   position: relative;
}


/* =========================================================
   COLUMNA IZQUIERDA FAQ
   ========================================================= */

.bk-faq-intro {
   position: sticky;
   top: 120px;

   max-width: 440px;
   padding-right: 35px;
}

.bk-faq-intro h2 {
   margin: 0;

   color: var(--bk-dark);

   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 800;
   line-height: 1.18;
   letter-spacing: -0.03em;
}

.bk-faq-intro h2::after {
   content: "";

   display: block;

   width: 82px;
   height: 3px;

   margin-top: 20px;

   background: var(--bk-primary);
   border-radius: 999px;
}

.bk-faq-intro > p {
   margin: 22px 0 0;

   color: var(--bk-text);

   font-size: 16px;
   line-height: 1.75;
}


/* Enlace */
.bk-faq-contact-link {
   display: inline-flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 6px;

   margin-top: 27px;

   color: var(--bk-text);

   font-size: 13px;
   font-weight: 600;
   text-decoration: none !important;
}

.bk-faq-contact-link span {
   color: var(--bk-primary);
   font-weight: 800;
}

.bk-faq-contact-link i {
   color: var(--bk-primary);

   transition: transform 0.25s ease;
}

.bk-faq-contact-link:hover {
   color: var(--bk-text);
}

.bk-faq-contact-link:hover i {
   transform: translateX(5px);
}


/* =========================================================
   ACORDEÓN FAQ
   ========================================================= */

.bk-faq-list {
   display: flex;
   flex-direction: column;
   gap: 13px;
}


/* Elemento */
.bk-faq-item {
   overflow: hidden;

   background: var(--bk-white);
   border: 1px solid var(--bk-border);
   border-radius: 13px;

   box-shadow: 0 7px 20px rgba(47, 44, 44, 0.045);

   transition:
      border-color 0.25s ease,
      box-shadow 0.25s ease,
      transform 0.25s ease;
}

.bk-faq-item:hover {
   border-color: rgba(24, 119, 242, 0.18);

   box-shadow: var(--bk-shadow-sm);
}

.bk-faq-item[open] {
   border-color: rgba(24, 119, 242, 0.24);

   box-shadow: var(--bk-shadow-md);
}


/* Summary */
.bk-faq-item summary {
   position: relative;

   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;

   padding: 21px 23px;

   color: var(--bk-dark);

   font-size: 15px;
   font-weight: 800;
   line-height: 1.4;

   cursor: pointer;

   list-style: none;
}

.bk-faq-item summary::-webkit-details-marker {
   display: none;
}


/* Línea izquierda cuando está abierto */
.bk-faq-item[open] summary::before {
   content: "";

   position: absolute;
   top: 17px;
   bottom: 17px;
   left: 0;

   width: 4px;

   background: var(--bk-primary);
   border-radius: 0 4px 4px 0;
}


/* Icono más/menos */
.bk-faq-icon {
   position: relative;

   display: inline-flex;
   align-items: center;
   justify-content: center;

   flex: 0 0 34px;
   width: 34px;
   height: 34px;

   background: var(--bk-primary-soft);
   border-radius: 50%;
}

.bk-faq-icon::before,
.bk-faq-icon::after {
   content: "";

   position: absolute;

   width: 13px;
   height: 2px;

   background: var(--bk-primary);
   border-radius: 2px;

   transition: transform 0.25s ease;
}

.bk-faq-icon::after {
   transform: rotate(90deg);
}

.bk-faq-item[open] .bk-faq-icon::after {
   transform: rotate(0deg);
}


/* Respuesta */
.bk-faq-answer {
   padding: 0 23px 22px;
}

.bk-faq-answer p {
   margin: 0;

   color: var(--bk-text);

   font-size: 14px;
   line-height: 1.75;
}
/* =========================================================
   CTA FINAL
   Mismo lenguaje visual del bloque de beneficios
   ========================================================= */

.bk-final-cta {
   position: relative;

   padding: 75px 0 85px;

   overflow: hidden;

   background: #ffffff;
}


/* =========================================================
   TARJETA PRINCIPAL
   ========================================================= */

.bk-final-cta-card {
   position: relative;

   padding: 44px 46px;

   overflow: hidden;

   background:
      linear-gradient(
         135deg,
         #1d2230,
         #292f40
      );

   border-radius: 20px;

   box-shadow:
      0 22px 50px rgba(24, 28, 39, 0.18);
}


/* Línea superior multicolor, igual al bloque de beneficios */
.bk-final-cta-card::before {
   content: "";

   position: absolute;
   top: 0;
   left: 0;
   z-index: 3;

   width: 100%;
   height: 4px;

   background:
      linear-gradient(
         90deg,
         #7558e8,
         #ff8b45,
         #26a9df,
         #f8bb42
      );
}


/* =========================================================
   DECORACIONES
   ========================================================= */

.bk-final-cta-decoration {
   position: absolute;

   border-radius: 50%;

   pointer-events: none;
}

.bk-decoration-one {
   top: -105px;
   right: -70px;

   width: 250px;
   height: 250px;

   background:
      radial-gradient(
         circle,
         rgba(255, 90, 95, 0.28),
         transparent 68%
      );
}

.bk-decoration-two {
   bottom: -150px;
   left: 35%;

   width: 290px;
   height: 290px;

   border: 1px solid rgba(255, 255, 255, 0.07);
}


/* Brillo adicional */
.bk-final-cta-card::after {
   content: "";

   position: absolute;
   top: -110px;
   left: -85px;

   width: 260px;
   height: 260px;

   background:
      radial-gradient(
         circle,
         rgba(117, 88, 232, 0.16),
         transparent 68%
      );

   border-radius: 50%;

   pointer-events: none;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.bk-final-cta-content {
   position: relative;
   z-index: 4;

   max-width: 720px;
}


/* Etiqueta */
.bk-final-cta-label {
   display: inline-flex;
   align-items: center;
   gap: 8px;

   margin-bottom: 13px;

   color: rgba(255, 255, 255, 0.58);

   font-size: 10px;
   font-weight: 800;
   line-height: 1.2;
   letter-spacing: 0.1em;
   text-transform: uppercase;
}


/* Punto decorativo */
.bk-final-cta-label::before {
   content: "";

   display: block;

   width: 8px;
   height: 8px;

   background: #007bff;
   border-radius: 50%;

   box-shadow:
      0 0 0 5px rgba(255, 90, 95, 0.12);
}


/* Título */
.bk-final-cta-content h2 {
   max-width: 720px;
   margin: 0;

   color: #ffffff;

   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 800;
   line-height: 1.18;
   letter-spacing: -0.035em;
}


/* Texto */
.bk-final-cta-content p {
   max-width: 650px;
   margin: 18px 0 0;

   color: rgba(255, 255, 255, 0.62);

   font-size: 15px;
   line-height: 1.75;
}


/* =========================================================
   ACCIONES
   ========================================================= */

.bk-final-cta-actions {
   position: relative;
   z-index: 4;

   display: flex;
   flex-direction: column;
   align-items: stretch;
   gap: 11px;

   padding-left: 25px;
}


/* =========================================================
   BOTÓN PRINCIPAL
   ========================================================= */

.bk-final-cta-primary {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 9px;

   min-height: 50px;
   padding: 13px 19px;

   color: #ffffff !important;
   background: #007bff;
   border: 1px solid #007bff;
   border-radius: 10px;

   font-size: 13px;
   font-weight: 800;
   line-height: 1.2;
   text-align: center;
   text-decoration: none !important;

   box-shadow:
      0 10px 24px rgba(255, 90, 95, 0.26);

   transition:
      transform 0.25s ease,
      background-color 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
}

.bk-final-cta-primary i {
   font-size: 17px;
}

.bk-final-cta-primary:hover {
   color: #ffffff !important;
   background: #1876ef;
   border-color: #1876ef;

   transform: translateY(-2px);

   box-shadow:
      0 15px 28px rgba(255, 90, 95, 0.34);
}


/* =========================================================
   BOTÓN SECUNDARIO
   ========================================================= */

.bk-final-cta-secondary {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 9px;

   min-height: 49px;
   padding: 13px 19px;

   color: #ffffff !important;
   background: rgba(255, 255, 255, 0.07);
   border: 1px solid rgba(255, 255, 255, 0.12);
   border-radius: 10px;

   font-size: 13px;
   font-weight: 800;
   line-height: 1.2;
   text-align: center;
   text-decoration: none !important;

   -webkit-backdrop-filter: blur(8px);
   backdrop-filter: blur(8px);

   transition:
      transform 0.25s ease,
      background-color 0.25s ease,
      border-color 0.25s ease;
}

.bk-final-cta-secondary i {
   color: #ff777c;

   font-size: 15px;
}

.bk-final-cta-secondary:hover {
   color: #ffffff !important;
   background: rgba(255, 255, 255, 0.12);
   border-color: rgba(255, 255, 255, 0.18);

   transform: translateY(-2px);
}


/* Texto inferior */
.bk-final-cta-actions small {
   display: block;

   margin-top: 3px;

   color: rgba(255, 255, 255, 0.48);

   font-size: 10px;
   line-height: 1.5;
   text-align: center;
}


/* =========================================================
   EFECTO HOVER DE LA TARJETA
   ========================================================= */

.bk-final-cta-card {
   transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;
}

.bk-final-cta-card:hover {
   transform: translateY(-4px);

   box-shadow:
      0 28px 58px rgba(24, 28, 39, 0.23);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {
   .bk-final-cta {
      padding: 65px 0 72px;
   }

   .bk-final-cta-card {
      padding: 40px 36px;
   }

   .bk-final-cta-actions {
      margin-top: 30px;
      padding-left: 0;
   }
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 767.98px) {
   .bk-final-cta {
      padding: 55px 0 62px;
   }

   .bk-final-cta-card {
      padding: 34px 26px;

      border-radius: 17px;
   }

   .bk-final-cta-content h2 {
      font-size: 2rem;
   }

   .bk-final-cta-content p {
      font-size: 14px;
      line-height: 1.7;
   }

   .bk-final-cta-primary,
   .bk-final-cta-secondary {
      width: 100%;
   }
}


/* =========================================================
   MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 575.98px) {
   .bk-final-cta-card {
      padding: 31px 21px;
   }

   .bk-final-cta-content h2 {
      font-size: 1.8rem;
   }

   .bk-final-cta-label {
      font-size: 9px;
   }

   .bk-final-cta-actions small {
      font-size: 9px;
   }
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

.bk-final-cta-primary:focus-visible,
.bk-final-cta-secondary:focus-visible {
   outline: 3px solid rgba(255, 90, 95, 0.45);
   outline-offset: 4px;
}


/* =========================================================
   MENOS MOVIMIENTO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
   .bk-final-cta-card,
   .bk-final-cta-primary,
   .bk-final-cta-secondary {
      transition: none !important;
   }
}

/* =========================================================
   FOOTER
   ========================================================= */

.bk-footer {
   position: relative;

   padding: 75px 0 0;

   overflow: hidden;

   color: rgba(255, 255, 255, 0.72);

   background:
      radial-gradient(
         circle at 10% 10%,
         rgba(24, 119, 242, 0.15),
         transparent 24%
      ),
      #172554;
}

.bk-footer::before {
   content: "";

   position: absolute;
   top: -180px;
   right: -160px;

   width: 410px;
   height: 410px;

   border: 1px solid rgba(255, 255, 255, 0.05);
   border-radius: 50%;

   pointer-events: none;
}

.bk-footer .container {
   position: relative;
   z-index: 2;
}


/* Parte principal */
.bk-footer-main {
   padding-bottom: 58px;
}


/* Marca */
.bk-footer-brand {
   max-width: 365px;
   padding-right: 25px;
}

.bk-footer-logo {
   display: inline-block;

   margin-bottom: 22px;
}

.bk-footer-logo img {
   display: block;

   width: auto;
   max-width: 170px;
   height: auto;
   max-height: 72px;

   object-fit: contain;
}

.bk-footer-brand > p {
   margin: 0;

   color: rgba(255, 255, 255, 0.67);

   font-size: 14px;
   line-height: 1.75;
}


/* Redes */
.bk-footer-social {
   display: flex;
   align-items: center;
   gap: 9px;

   margin-top: 24px;
}

.bk-footer-social a {
   display: inline-flex;
   align-items: center;
   justify-content: center;

   width: 40px;
   height: 40px;

   color: var(--bk-white);
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.08);
   border-radius: 50%;

   font-size: 14px;

   transition:
      transform 0.25s ease,
      background-color 0.25s ease,
      border-color 0.25s ease;
}

.bk-footer-social a:hover {
   color: var(--bk-white);
   background: var(--bk-primary);
   border-color: var(--bk-primary);

   transform: translateY(-3px);
}


/* Columnas */
.bk-footer-column {
   margin-top: 5px;
}

.bk-footer-column h3 {
   position: relative;

   margin: 0 0 24px;

   color: var(--bk-white);

   font-size: 15px;
   font-weight: 800;
   line-height: 1.3;
}

.bk-footer-column h3::after {
   content: "";

   display: block;

   width: 31px;
   height: 2px;

   margin-top: 10px;

   background: var(--bk-primary);
   border-radius: 2px;
}

.bk-footer-column ul {
   margin: 0;
   padding: 0;

   list-style: none;
}

.bk-footer-column li {
   margin-bottom: 11px;
}

.bk-footer-column li:last-child {
   margin-bottom: 0;
}

.bk-footer-column a {
   color: rgba(255, 255, 255, 0.67);

   font-size: 13px;
   line-height: 1.5;
   text-decoration: none;

   transition:
      color 0.2s ease,
      padding-left 0.2s ease;
}

.bk-footer-column a:hover {
   color: var(--bk-white);
   padding-left: 4px;
}


/* Contacto */
.bk-footer-contact ul li {
   display: flex;
   align-items: flex-start;
   gap: 10px;
}

.bk-footer-contact ul li > i {
   flex: 0 0 17px;

   margin-top: 5px;

   color: #6eacff;

   font-size: 13px;
}

.bk-footer-contact ul li span {
   color: rgba(255, 255, 255, 0.67);

   font-size: 12px;
   line-height: 1.55;
}


/* Botón portafolio */
.bk-footer-portfolio {
   display: inline-flex;
   align-items: center;
   gap: 8px;

   margin-top: 21px;
   padding: 10px 15px;

   color: var(--bk-white) !important;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.11);
   border-radius: 50px;

   font-size: 11px !important;
   font-weight: 800;
}

.bk-footer-portfolio:hover {
   padding-left: 15px !important;

   background: var(--bk-primary);
   border-color: var(--bk-primary);
}


/* Parte inferior */
.bk-footer-bottom {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 25px;

   min-height: 78px;

   border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bk-footer-bottom p {
   margin: 0;

   color: rgba(255, 255, 255, 0.52);

   font-size: 11px;
   line-height: 1.5;
}

.bk-footer-bottom > div {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 18px;
}

.bk-footer-bottom a {
   color: rgba(255, 255, 255, 0.52);

   font-size: 11px;
   text-decoration: none;

   transition: color 0.2s ease;
}

.bk-footer-bottom a:hover {
   color: var(--bk-white);
}


/* =========================================================
   BOTÓN VOLVER ARRIBA
   ========================================================= */

.bk-back-to-top {
   position: fixed;
   right: 22px;
   bottom: 92px;
   z-index: 98;

   display: inline-flex;
   align-items: center;
   justify-content: center;

   width: 43px;
   height: 43px;

   color: var(--bk-white) !important;
   background: var(--bk-primary);
   border-radius: 50%;

   box-shadow: 0 10px 25px rgba(24, 119, 242, 0.28);

   opacity: 0;
   visibility: hidden;
   transform: translateY(12px);

   transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease,
      background-color 0.25s ease;
}

.bk-back-to-top.is-visible {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.bk-back-to-top:hover {
   color: var(--bk-white) !important;
   background: var(--bk-primary-dark);

   transform: translateY(-3px);
}


/* =========================================================
   WHATSAPP FLOTANTE
   ========================================================= */

.bk-whatsapp-floating {
   position: fixed;
   right: 22px;
   bottom: 25px;
   z-index: 99;

   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;

   min-height: 52px;
   padding: 12px 18px;

   color: var(--bk-white) !important;
   background: #25d366;
   border-radius: 50px;

   font-size: 13px;
   font-weight: 800;
   line-height: 1.2;
   text-decoration: none !important;

   box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);

   transition:
      transform 0.25s ease,
      background-color 0.25s ease,
      box-shadow 0.25s ease;
}

.bk-whatsapp-floating i {
   font-size: 20px;
}

.bk-whatsapp-floating:hover {
   color: var(--bk-white) !important;
   background: #1fbd59;

   transform: translateY(-3px);

   box-shadow: 0 16px 35px rgba(37, 211, 102, 0.38);
}


/* Pulso discreto */
.bk-whatsapp-floating::before {
   content: "";

   position: absolute;
   inset: 0;
   z-index: -1;

   border: 1px solid rgba(37, 211, 102, 0.5);
   border-radius: inherit;

   animation: bkWhatsappPulse 2.6s ease-out infinite;
}

@keyframes bkWhatsappPulse {
   0% {
      opacity: 0.55;
      transform: scale(1);
   }

   75%,
   100% {
      opacity: 0;
      transform: scale(1.25);
   }
}


/* =========================================================
   ANIMACIONES DATA-ANIMATE
   ========================================================= */

[data-animate] {
   opacity: 0;
   transform: translateY(25px);

   transition:
      opacity 0.7s ease,
      transform 0.7s ease;
}

[data-animate].is-visible {
   opacity: 1;
   transform: translateY(0);
}


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

@media (max-width: 991.98px) {

   .bk-testimonials {
      padding: 80px 0 72px;
   }

   .bk-testimonials-header {
      grid-template-columns: 1fr;
      gap: 20px;

      margin-bottom: 38px;
   }

   .bk-testimonials-header > p {
      max-width: 680px;
   }


   .bk-faq {
      padding: 80px 0 72px;
   }

   .bk-faq-intro {
      position: static;

      max-width: 700px;
      margin-bottom: 40px;
      padding-right: 0;
   }


   .bk-final-cta {
      padding: 65px 0;
   }

   .bk-final-cta-card {
      padding: 43px 38px;
   }

   .bk-final-cta-actions {
      margin-top: 30px;
      padding-left: 0;
   }


   .bk-footer {
      padding-top: 65px;
   }

   .bk-footer-brand {
      max-width: 620px;
      margin-bottom: 40px;
      padding-right: 0;
   }

   .bk-footer-column {
      margin-bottom: 35px;
   }
}


@media (max-width: 767.98px) {

   .bk-testimonials {
      padding: 68px 0 60px;
   }

   .bk-testimonials-header h2,
   .bk-faq-intro h2,
   .bk-final-cta-content h2 {
      font-size: 2rem;
   }

   .bk-testimonial-card {
      padding: 27px 23px 24px;
   }


   .bk-faq {
      padding: 68px 0 60px;
   }

   .bk-faq-item summary {
      padding: 19px 18px;

      font-size: 14px;
   }

   .bk-faq-answer {
      padding: 0 18px 20px;
   }


   .bk-final-cta {
      padding: 55px 0;
   }

   .bk-final-cta-card {
      padding: 35px 27px;

      border-radius: 16px;
   }


   .bk-footer-main {
      padding-bottom: 25px;
   }

   .bk-footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;

      min-height: auto;
      padding: 24px 0;
   }


   .bk-whatsapp-floating {
      right: 15px;
      bottom: 17px;

      width: 52px;
      height: 52px;
      min-height: 52px;
      padding: 0;

      border-radius: 50%;
   }

   .bk-whatsapp-floating span {
      display: none;
   }

   .bk-back-to-top {
      right: 19px;
      bottom: 82px;
   }
}


@media (max-width: 575.98px) {

   .bk-testimonials-header h2,
   .bk-faq-intro h2,
   .bk-final-cta-content h2 {
      font-size: 1.82rem;
   }

   .bk-testimonial-card blockquote {
      font-size: 15px;
   }

   .bk-faq-item summary {
      gap: 12px;
   }

   .bk-faq-icon {
      flex-basis: 31px;
      width: 31px;
      height: 31px;
   }

   .bk-final-cta-card {
      padding: 31px 21px;
   }

   .bk-footer {
      padding-top: 55px;
   }

   .bk-footer-bottom > div {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
   }
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

.bk-faq-item summary:focus-visible,
.bk-final-cta-primary:focus-visible,
.bk-final-cta-secondary:focus-visible,
.bk-footer a:focus-visible,
.bk-back-to-top:focus-visible,
.bk-whatsapp-floating:focus-visible {
   outline: 3px solid rgba(24, 119, 242, 0.42);
   outline-offset: 4px;
}


/* =========================================================
   REDUCCIÓN DE MOVIMIENTO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

   [data-animate],
   .bk-testimonial-card,
   .bk-testimonial-card::after,
   .bk-faq-icon::after,
   .bk-final-cta-primary,
   .bk-final-cta-secondary,
   .bk-footer a,
   .bk-back-to-top,
   .bk-whatsapp-floating {
      transition: none !important;
   }

   .bk-whatsapp-floating::before {
      display: none;
      animation: none !important;
   }
}
