/*
Theme Name: BuzzFox
Theme URI: https://buzzfox.agency
Author: BuzzFox
Author URI: https://buzzfox.agency
Description: A vibrant marketing agency theme built on the Emu Pack design system. Features bold gradients, modern typography with Poppins and Lato, animated sections, and full agency page templates including services, portfolio, team, testimonials, and contact.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: buzzfox
Tags: one-column, two-columns, custom-menu, featured-images, theme-options, translation-ready, blog, portfolio

BuzzFox WordPress Theme, Copyright 2024 BuzzFox Agency
BuzzFox is distributed under the terms of the GNU GPL v2 or later.
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --bf-purple: #842af1;
  --bf-blue: #033da4;
  --bf-pink: #fe1660;
  --bf-magenta: #d201b5;
  --bf-orange: #ff5700;
  --bf-yellow: #ffd000;
  --bf-green: #58f106;
  --bf-dark: #170a24;
  --bf-text: #444444;
  --bf-heading: #161616;
  --bf-light-bg: #eef2fe;
  --bf-white: #ffffff;
  --bf-gradient-primary: linear-gradient(90deg, #842af1, #033da4);
  --bf-gradient-secondary: linear-gradient(90deg, #d201b5, #fe1660);
  --bf-gradient-accent: linear-gradient(90deg, #ff5700, #ffd000);
  --bf-font-body: 'Lato', sans-serif;
  --bf-font-heading: 'Poppins', sans-serif;
}

/* ==========================================================================
   Reset & Global
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

body {
  font-size: 16px;
  color: var(--bf-text);
  line-height: 30px;
  font-weight: 400;
  background: var(--bf-white);
  font-family: var(--bf-font-body);
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 15px;
  }
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.boxed_wrapper {
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}

a {
  text-decoration: none;
  transition: all 500ms ease;
  color: var(--bf-purple);
}

a:hover {
  text-decoration: none;
  outline: none;
  color: var(--bf-pink);
}

input, button, select, textarea {
  font-family: var(--bf-font-body);
  font-weight: 400;
  font-size: 16px;
}

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

input {
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--bf-text);
  font-family: var(--bf-font-body);
  margin-bottom: 0;
  transition: all 500ms ease;
}

h1, h2, h3, h4, h5, h6 {
  position: relative;
  font-family: var(--bf-font-heading);
  font-weight: 400;
  color: var(--bf-heading);
  margin: 0;
  transition: all 500ms ease;
}

figure {
  margin: 0;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.centred {
  text-align: center;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.sec-pad {
  padding: 100px 0 !important;
}

.bg-color-1 {
  background: var(--bf-light-bg);
}

.bg-color-2 {
  background: var(--bf-dark);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  font-family: var(--bf-font-heading);
  color: #fff !important;
  padding: 14px 32px;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  z-index: 1;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 500ms ease;
}

.theme-btn i {
  margin-right: 10px;
}

.theme-btn:hover:after {
  opacity: 1;
}

.theme-btn.style-one {
  background: linear-gradient(90deg, var(--c1, #842af1), var(--c2, #033da4) 50%, var(--c1, #842af1)) var(--x, 0) / 200%;
}

.theme-btn.style-one:after {
  background: linear-gradient(90deg, var(--c1, #ffc0cb), var(--c2, #ff165e) 50%, var(--c1, #ffc0cb)) var(--x, 0) / 200%;
}

.theme-btn.style-two {
  background: linear-gradient(90deg, var(--c1, #d201b6), var(--c2, #fe1660) 50%, var(--c1, #d201b6)) var(--x, 0) / 200%;
}

.theme-btn.style-two:after {
  background: linear-gradient(90deg, var(--c1, #FFA500), var(--c2, #ffd200) 50%, var(--c1, #FFA500)) var(--x, 0) / 200%;
}

.theme-btn.style-three {
  background: linear-gradient(90deg, var(--c1, #ff5700), var(--c2, #ffd000) 50%, var(--c1, #ff5700)) var(--x, 0) / 200%;
}

.theme-btn.style-one:before,
.theme-btn.style-two:before,
.theme-btn.style-three:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
  clip-path: polygon(0% 103%, 400% 0, 100% 100%, 0% 100%, 0 0);
  transition: all 500ms ease;
}

.theme-btn.style-one:after,
.theme-btn.style-two:after,
.theme-btn.style-three:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition: transform 0.5s ease-out;
}

.theme-btn.style-one:hover:after,
.theme-btn.style-two:hover:after,
.theme-btn.style-three:hover:after {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.theme-btn.style-one:before {
  background: linear-gradient(90deg, var(--c1, #ffc0cb), var(--c2, #ff165e) 50%, var(--c1, #ffc0cb)) var(--x, 0) / 200%;
}

.theme-btn.style-two:before {
  background: linear-gradient(90deg, var(--c1, #FFA500), var(--c2, #ffd200) 50%, var(--c1, #FFA500)) var(--x, 0) / 200%;
}

.theme-btn.style-three:before {
  background: linear-gradient(90deg, var(--c1, #d301b4), var(--c2, #ff165e) 50%, var(--c1, #d301b4)) var(--x, 0) / 200%;
}

.theme-btn.style-three:after {
  background: linear-gradient(90deg, var(--c1, #d301b4), var(--c2, #ff165e) 50%, var(--c1, #d301b4)) var(--x, 0) / 200%;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999999;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
}

/* ==========================================================================
   Scroll Top
   ========================================================================== */
.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: 105%;
  right: 50px;
  font-size: 24px;
  z-index: 99;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: 1s ease;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--c1, #842af1), var(--c2, #033da4) 50%, var(--c1, #842af1)) var(--x, 0) / 200%;
}

.scroll-top:hover {
  --x: 100%;
}

.scroll-top.open {
  bottom: 30px;
}

.scroll-top span {
  color: #fff;
}

/* ==========================================================================
   Section Title
   ========================================================================== */
.sec-title {
  position: relative;
  display: block;
  margin-bottom: 55px;
}

.sec-title.centred {
  text-align: center;
}

.sec-title .title {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--bf-font-heading);
  font-weight: 400;
  background: #fff;
  padding: 5px 15px 6px 42px;
  margin-bottom: 18px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sec-title .title i {
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--c1, #ff5c07), var(--c2, #ffcf06) 50%, var(--c1, #ff5c07)) var(--x, 0) / 200%;
}

.sec-title h3 {
  position: relative;
  font-size: 36px;
  line-height: 47px;
  color: var(--bf-heading);
  font-weight: 700;
}

.sec-title h3 span {
  font-weight: 400;
}

.sec-title h2 {
  position: relative;
  font-size: 48px;
  line-height: 58px;
  color: var(--bf-heading);
  font-weight: 700;
}

.sec-title.light .title,
.sec-title.light h2,
.sec-title.light h3 {
  color: #fff;
}

.sec-title p {
  margin-top: 15px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.main-header {
  position: relative;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
}

.main-header .header-upper {
  position: relative;
}

.main-header .header-upper .outer-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.main-header .outer-box .logo-box .logo {
  position: relative;
  padding: 33px 0;
}

.main-header .outer-box .logo-box .logo img {
  max-height: 50px;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  left: 0;
  top: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  z-index: 0;
  transition: all 500ms ease;
}

.fixed-header .sticky-header {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  animation-name: fadeInDown;
  animation-duration: 500ms;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

/* Main Menu */
.main-menu {
  position: relative;
  float: right;
}

.main-menu .navigation {
  position: relative;
}

.main-menu .navigation > li {
  position: relative;
  float: left;
  margin: 0 0 0 3px;
}

.main-menu .navigation > li > a {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--bf-font-heading);
  color: var(--bf-heading);
  padding: 50px 18px;
  opacity: 1;
  text-transform: capitalize;
  transition: all 500ms ease;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
  background: linear-gradient(90deg, var(--c1, #d201b5), var(--c2, #fe1660) 50%, var(--c1, #d201b5)) var(--x, 0) / 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Dropdown */
.main-menu .navigation > li > ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 230px;
  z-index: 100;
  padding: 0;
  background: #fff;
  border-top: 3px solid var(--bf-pink);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}

.main-menu .navigation > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
}

.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 8px 25px;
  font-size: 15px;
  line-height: 28px;
  font-weight: 500;
  color: var(--bf-heading);
  font-family: var(--bf-font-heading);
  transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li > a:hover {
  color: var(--bf-pink);
  padding-left: 30px;
}

/* Mobile Nav Toggle */
.menu-area .mobile-nav-toggler {
  display: none;
  cursor: pointer;
  margin-top: 55px;
  padding: 10px;
}

.menu-area .mobile-nav-toggler .icon-bar {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 5px;
  background: -webkit-linear-gradient(0deg, #842af1, #0e3bab 50%);
  border-radius: 3px;
}

/* Sticky header nav colors */
.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li:hover > a {
  color: var(--bf-pink) !important;
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */
.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  background: var(--bf-dark);
  overflow-y: auto;
  transform: translateX(100%);
  transition: all 500ms ease;
}

.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu .close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 300ms ease;
}

.mobile-menu .close-btn:hover {
  color: var(--bf-pink);
}

.mobile-menu .menu-box {
  padding: 30px 20px;
}

.mobile-menu .navigation li > a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  font-family: var(--bf-font-heading);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 300ms ease;
}

.mobile-menu .navigation li > a:hover {
  color: var(--bf-pink);
}

.mobile-menu .social-links {
  padding: 20px 0;
}

.mobile-menu .social-links li {
  display: inline-block;
  margin-right: 15px;
}

.mobile-menu .social-links li a {
  color: #fff;
  font-size: 18px;
  transition: all 300ms ease;
}

.mobile-menu .social-links li a:hover {
  color: var(--bf-pink);
}

.mobile-menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99998;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.mobile-menu-visible .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Banner / Hero Section
   ========================================================================== */
.banner-section {
  position: relative;
  padding: 250px 0 180px;
  overflow: hidden;
}

.banner-section .content-box {
  position: relative;
  z-index: 5;
}

.banner-section .content-box .title {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--bf-font-heading);
  font-weight: 400;
  background: #fff;
  padding: 5px 15px 6px 42px;
  margin-bottom: 25px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.banner-section .content-box .title i {
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff5c07, #ffcf06);
}

.banner-section .content-box h1 {
  font-size: 60px;
  line-height: 75px;
  font-weight: 700;
  color: var(--bf-heading);
  margin-bottom: 25px;
}

.banner-section .content-box p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 35px;
  max-width: 600px;
}

.banner-section .content-box .btn-box {
  position: relative;
}

.banner-section .content-box .btn-box .theme-btn {
  margin-right: 15px;
}

.banner-section .image-box {
  position: relative;
  z-index: 5;
}

.banner-section .image-box img {
  max-width: 100%;
}

/* Animated icons in banner */
.banner-section .anim-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.banner-section .anim-icons .icon {
  position: absolute;
}

/* ==========================================================================
   Service Section
   ========================================================================== */
.service-section {
  position: relative;
  padding: 120px 0 90px;
}

.service-block-one {
  position: relative;
  padding: 45px 30px 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.service-block-one:first-child {
  background: #fdf8e3;
}

.service-block-one:nth-child(2) {
  background: #f0f3fa;
}

.service-block-one:nth-child(3) {
  background: #feeff0;
}

.service-block-one .inner-box {
  position: relative;
}

.service-block-one .inner-box .icon-box {
  position: relative;
  margin-bottom: 20px;
}

.service-block-one .inner-box .icon-box img {
  max-height: 80px;
}

.service-block-one .inner-box h4 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-block-one .inner-box h4 a {
  color: var(--bf-heading);
}

.service-block-one .inner-box h4 a:hover {
  color: var(--bf-pink);
}

.service-block-one .inner-box p {
  font-size: 15px;
  line-height: 26px;
}

.service-block-one .inner-box .link a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--bf-font-heading);
  color: transparent !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-top: 15px;
  transition: all 500ms ease;
}

.service-block-one .inner-box .link a:before {
  background: linear-gradient(90deg, var(--c1, #862ef1), var(--c2, #053da5) 50%, var(--c1, #862ef1)) var(--x, 0) / 200%;
  -webkit-background-clip: text;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  position: relative;
  padding: 0 0 120px;
}

.about-section .image-box {
  position: relative;
}

.about-section .image-box img {
  border-radius: 20px;
}

.about-section .content-box {
  position: relative;
}

.about-section .content-box .text {
  margin-bottom: 30px;
}

.about-section .content-box .list-item {
  margin-bottom: 30px;
}

.about-section .content-box .list-item li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 35px;
  color: var(--bf-text);
}

.about-section .content-box .list-item li:before {
  position: absolute;
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  left: 0;
  top: 0;
  color: var(--bf-purple);
}

/* ==========================================================================
   Feature Section
   ========================================================================== */
.featured-section {
  position: relative;
  padding: 120px 0 90px;
}

.feature-block-one {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px 35px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 500ms ease;
}

.feature-block-one:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-block-one .inner-box .icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 25px;
  color: #fff;
  font-size: 36px;
  background: -webkit-linear-gradient(0deg, #8831f2, #043da4 50%);
}

.feature-block-one .inner-box h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-block-one .inner-box h4 a {
  color: var(--bf-heading);
}

.feature-block-one .inner-box h4 a:hover {
  color: var(--bf-pink);
}

.feature-block-one .inner-box p {
  font-size: 15px;
  line-height: 26px;
}

.feature-block-one .inner-box .link {
  margin-top: 15px;
}

.feature-block-one .inner-box .link a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--bf-font-heading);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(0deg, #842af1, #0e3bab 50%);
}

/* Alternating icon colors */
.feature-block:nth-child(2) .feature-block-one .inner-box .icon-box {
  background: -webkit-linear-gradient(0deg, #ff600e, #ffce01 50%);
}

.feature-block:nth-child(3) .feature-block-one .inner-box .icon-box {
  background: -webkit-linear-gradient(0deg, #d40bb7, #fe1561 50%);
}

.feature-block:last-child .feature-block-one .inner-box .icon-box {
  background: -webkit-linear-gradient(0deg, #5bf209, #1abd09 50%);
}

/* ==========================================================================
   Fun Facts / Counters
   ========================================================================== */
.fun-facts {
  position: relative;
  padding: 100px 0;
}

.counter-block-one .counter-block {
  position: relative;
  text-align: center;
}

.counter-block-one .counter-block .count-outer {
  position: relative;
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  font-family: var(--bf-font-heading);
  margin-bottom: 10px;
}

.counter-block-one .counter-block .count-outer span {
  color: transparent !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background: -webkit-linear-gradient(0deg, #d100b8, #fc1564 50%);
}

.fun-facts .block-column:nth-child(2) .counter-block-one .counter-block .count-outer span {
  background: -webkit-linear-gradient(0deg, #ff5500, #ffcd00 50%);
}

.fun-facts .block-column:nth-child(3) .counter-block-one .counter-block .count-outer span {
  background: -webkit-linear-gradient(0deg, #832af0, #053da5 50%);
}

.fun-facts .block-column:last-child .counter-block-one .counter-block .count-outer span {
  background: -webkit-linear-gradient(0deg, #55f100, #1bbd09 50%);
}

.counter-block-one .counter-block h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--bf-text);
}

/* ==========================================================================
   Portfolio / Work Section
   ========================================================================== */
.portfolio-section {
  position: relative;
  padding: 120px 0;
}

.portfolio-section .filters {
  position: relative;
  margin-bottom: 40px;
}

.portfolio-section .filters .filter-tabs li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--bf-font-heading);
  color: var(--bf-text);
  padding: 5px 20px;
  cursor: pointer;
  transition: all 300ms ease;
}

.portfolio-section .filters .filter-tabs li.active,
.portfolio-section .filters .filter-tabs li:hover {
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(0deg, #d201b5, #fe1561 50%);
}

.project-block-one .inner-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
}

.project-block-one .inner-box img {
  width: 100%;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover img {
  transform: scale(1.05);
}

.project-block-one .inner-box .content-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 25px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .content-box {
  opacity: 1;
}

.project-block-one .inner-box .content-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.project-block-one .inner-box .content-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.project-block-one .inner-box .content-box .view-btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  background: -webkit-linear-gradient(0deg, #d301b4, #fd1563 50%);
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-section {
  position: relative;
  padding: 120px 0;
}

.team-block-one .inner-box {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.team-block-one .image-box {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid #00b8ff;
}

.team-block:nth-child(2) .team-block-one .image-box {
  border-color: #ff9c00;
}

.team-block:nth-child(3) .team-block-one .image-box {
  border-color: #52e7ed;
}

.team-block:last-child .team-block-one .image-box {
  border-color: #d25e63;
}

.team-block-one .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-block-one .lower-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-block-one .lower-content h4 a {
  color: var(--bf-heading);
}

.team-block-one .lower-content h4 a:hover {
  color: var(--bf-pink);
}

.team-block-one .lower-content .designation {
  font-size: 14px;
  color: var(--bf-text);
  margin-bottom: 15px;
}

.team-block-one .lower-content .social-links li {
  display: inline-block;
  margin: 0 5px;
}

.team-block-one .lower-content .social-links li a {
  font-size: 16px;
  color: var(--bf-text);
  transition: all 300ms ease;
}

.team-block-one .lower-content .social-links li a:hover {
  color: var(--bf-pink);
}

.team-block-one .lower-content .box {
  position: relative;
  display: inline-block;
  padding: 3px 20px;
  border-radius: 30px;
  margin-top: 5px;
}

.team-block-one .lower-content .box:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 30px;
  opacity: 0.15;
  background: -webkit-linear-gradient(0deg, #0abaff, #0080ff 50%);
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */
.testimonial-section {
  position: relative;
  padding: 120px 0;
  background: var(--bf-light-bg);
}

.testimonial-block .inner-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.testimonial-block .inner-box .quote-icon {
  font-size: 36px;
  color: var(--bf-purple);
  margin-bottom: 15px;
  opacity: 0.3;
}

.testimonial-block .inner-box .text {
  font-size: 16px;
  line-height: 28px;
  color: var(--bf-text);
  margin-bottom: 20px;
}

.testimonial-block .inner-box .author-box {
  display: flex;
  align-items: center;
}

.testimonial-block .inner-box .author-box .thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-block .inner-box .author-box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-block .inner-box .author-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-block .inner-box .author-box .designation {
  font-size: 14px;
  color: var(--bf-text);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
  position: relative;
  padding: 120px 0;
}

.pricing-block-one .pricing-table {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.pricing-block-one .pricing-table:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-block-one .pricing-table .table-header h4 {
  font-size: 20px;
  font-weight: 600;
  color: transparent !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background: -webkit-linear-gradient(0deg, #d100b8, #ff165e 50%);
  margin-bottom: 15px;
}

.pricing-block-one .pricing-table .table-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--bf-heading);
  margin-bottom: 5px;
}

.pricing-block-one .pricing-table .table-header h2 span {
  font-size: 16px;
  font-weight: 400;
  color: var(--bf-text);
}

.pricing-block-one .pricing-table .table-content {
  padding: 25px 0;
}

.pricing-block-one .pricing-table .table-content li {
  position: relative;
  font-size: 15px;
  line-height: 40px;
  color: var(--bf-text);
  padding-left: 25px;
}

.pricing-block-one .pricing-table .table-content li i {
  position: absolute;
  left: 0;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(0deg, #0cf40c, #06c106 50%);
}

.pricing-block-one .pricing-table .table-footer .theme-btn {
  width: 100%;
}

.pricing-block-one .pricing-table .choice-box {
  position: absolute;
  right: -10px;
  top: 20px;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
  background: -webkit-linear-gradient(0deg, #842af1, #193ab1 100%);
}

/* ==========================================================================
   Subscribe / CTA Section
   ========================================================================== */
.subscribe-section {
  position: relative;
  padding: 80px 0;
  background: -webkit-linear-gradient(0deg, #842af1, #033da4 50%);
}

.subscribe-section .content-box {
  text-align: center;
}

.subscribe-section .content-box h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.subscribe-section .content-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.subscribe-section .content-box .subscribe-form .form-group {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.subscribe-section .content-box .subscribe-form .form-group input[type='email'] {
  width: 100%;
  height: 60px;
  padding: 10px 160px 10px 25px;
  font-size: 16px;
  border-radius: 10px;
  background: #fff;
}

.subscribe-section .content-box .subscribe-form .form-group button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 50px;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--bf-font-heading);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--c1, #ed595a), var(--c2, #ffe712) 50%, var(--c1, #ed595a)) var(--x, 0) / 200%;
  transition: all 500ms ease;
}

.subscribe-section .content-box .subscribe-form .form-group button:hover {
  --x: 100%;
}

/* ==========================================================================
   News / Blog Section
   ========================================================================== */
.news-section {
  position: relative;
  padding: 120px 0 90px;
}

.news-block-one .inner-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.news-block-one .inner-box .image-box {
  position: relative;
  overflow: hidden;
}

.news-block-one .inner-box .image-box img {
  width: 100%;
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box img {
  transform: scale(1.05);
}

.news-block-one .overlay-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 500ms ease;
  background: -webkit-linear-gradient(90deg, rgba(132, 42, 241, 0.8), rgba(3, 61, 164, 0.8) 50%);
}

.news-block-one .inner-box:hover .overlay-box {
  opacity: 1;
}

.news-block-one .inner-box .lower-content {
  padding: 25px 30px;
}

.news-block-one .inner-box .lower-content .post-info {
  margin-bottom: 12px;
}

.news-block-one .inner-box .lower-content .post-info li {
  display: inline-block;
  font-size: 13px;
  color: var(--bf-text);
  margin-right: 15px;
}

.news-block-one .inner-box .lower-content .post-info li:first-child {
  padding: 2px 12px;
  border-radius: 5px;
  color: #fff;
  background: -webkit-linear-gradient(0deg, #842af1, #173ab0 50%);
}

.news-block-one .inner-box .lower-content .post-info li i {
  margin-right: 5px;
}

.news-block-one .inner-box .lower-content h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.news-block-one .inner-box .lower-content h3 a {
  color: var(--bf-heading);
}

.news-block-one .inner-box .lower-content h3 a:hover {
  color: var(--bf-pink);
}

.news-block-one .inner-box .lower-content p {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 15px;
}

.news-block-one .inner-box .lower-content .lower-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-block-one .inner-box .lower-content .lower-box .link-box a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  background: -webkit-linear-gradient(0deg, #842af1, #173ab0 50%);
  transition: all 500ms ease;
}

.news-block-one .inner-box .lower-content .lower-box .link-box a:hover {
  background: -webkit-linear-gradient(0deg, #d200b6, #fe1561 50%);
}

.news-block-one .inner-box .lower-content .lower-box .admin a {
  font-size: 14px;
  color: var(--bf-text);
}

.news-block-one .inner-box .lower-content .lower-box .admin a:hover {
  color: var(--bf-pink);
}

/* ==========================================================================
   Clients Section
   ========================================================================== */
.clients-section {
  position: relative;
  padding: 80px 0;
}

.clients-section .client-logo {
  text-align: center;
  padding: 15px;
}

.clients-section .client-logo img {
  max-height: 60px;
  opacity: 0.5;
  transition: all 500ms ease;
  filter: grayscale(100%);
}

.clients-section .client-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  position: relative;
  padding: 120px 0;
}

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

.contact-form-inner .form-group input,
.contact-form-inner .form-group textarea {
  width: 100%;
  height: 55px;
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  transition: all 500ms ease;
}

.contact-form-inner .form-group textarea {
  height: 150px;
  resize: none;
}

.contact-form-inner .form-group input:focus,
.contact-form-inner .form-group textarea:focus {
  border-color: var(--bf-orange) !important;
}

.contact-section .bottom-content {
  margin-top: 60px;
}

.contact-section .bottom-content .inner-box .single-item {
  text-align: center;
  margin-bottom: 30px;
}

.contact-section .bottom-content .inner-box .single-item .icon-box {
  font-size: 40px;
  color: var(--bf-purple);
  margin-bottom: 15px;
}

.contact-section .bottom-content .inner-box .single-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-section .bottom-content .inner-box .single-item .text a {
  color: var(--bf-text);
}

.contact-section .bottom-content .inner-box .single-item .text a:hover {
  color: var(--bf-purple);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
  position: relative;
  background: var(--bf-dark);
}

.main-footer .footer-top {
  position: relative;
  padding: 100px 0 70px;
}

.main-footer .footer-top .footer-widget {
  margin-bottom: 30px;
}

.main-footer .footer-top .footer-widget .widget-title {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}

.main-footer .footer-top .logo-widget .logo {
  margin-bottom: 20px;
}

.main-footer .footer-top .logo-widget .logo img {
  max-height: 45px;
}

.main-footer .footer-top .logo-widget .text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.main-footer .footer-top .logo-widget .widget-content li {
  position: relative;
  padding-left: 25px;
  font-size: 15px;
  line-height: 35px;
  color: rgba(255, 255, 255, 0.7);
}

.main-footer .footer-top .logo-widget .widget-content li i {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 14px;
}

.main-footer .footer-top .logo-widget .widget-content li a {
  color: rgba(255, 255, 255, 0.7);
}

.main-footer .footer-top .logo-widget .widget-content li a:hover {
  color: #ea3583;
}

.main-footer .footer-top .logo-widget .widget-content li strong {
  color: transparent !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background: -webkit-linear-gradient(0deg, #ea3583, #8a32f2 50%);
}

.main-footer .footer-top .links-widget .widget-content ul li {
  position: relative;
}

.main-footer .footer-top .links-widget .widget-content ul li a {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 35px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 18px;
  transition: all 300ms ease;
}

.main-footer .footer-top .links-widget .widget-content ul li a:before {
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.7);
  transition: all 300ms ease;
}

.main-footer .footer-top .links-widget .widget-content ul li a:hover {
  color: #ea3583;
  padding-left: 22px;
}

.main-footer .footer-top .links-widget .widget-content ul li a:hover:before {
  color: #ea3583;
}

.main-footer .footer-top .links-widget .widget-content ul li a:after {
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  left: 18px;
  bottom: 5px;
  background: #ea3583;
  transition: all 300ms ease;
}

.main-footer .footer-top .links-widget .widget-content ul li a:hover:after {
  width: calc(100% - 18px);
}

/* Footer subscribe widget */
.main-footer .footer-top .subscribe-widget .widget-content .subscribe-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.main-footer .footer-top .subscribe-widget .widget-content .subscribe-form .form-group input {
  width: 100%;
  height: 50px;
  padding: 10px 120px 10px 20px;
  font-size: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.main-footer .footer-top .subscribe-widget .widget-content .subscribe-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.main-footer .footer-top .subscribe-widget .widget-content .subscribe-form .form-group input:focus {
  border-color: #ea3583 !important;
}

.main-footer .footer-top .subscribe-widget .widget-content .subscribe-form .form-group button {
  position: absolute;
  right: 3px;
  top: 3px;
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--bf-font-heading);
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--c1, #e73587), var(--c2, #8c32f0) 50%, var(--c1, #e73587)) var(--x, 0) / 200%;
  transition: all 500ms ease;
}

.main-footer .footer-top .subscribe-widget .widget-content .subscribe-form .form-group button:hover {
  --x: 100%;
}

.main-footer .footer-top .subscribe-widget .social-links {
  margin-top: 20px;
}

.main-footer .footer-top .subscribe-widget .social-links li {
  display: inline-block;
  margin-right: 10px;
}

.main-footer .footer-top .subscribe-widget .social-links li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 16px;
  transition: all 300ms ease;
}

.main-footer .footer-top .subscribe-widget .social-links li:first-child a {
  color: #16599b;
}

.main-footer .footer-top .subscribe-widget .social-links li:nth-child(2) a {
  color: #03a9f4;
}

.main-footer .footer-top .subscribe-widget .social-links li:nth-child(3) a {
  color: #ea4c89;
}

.main-footer .footer-top .subscribe-widget .social-links li:last-child a {
  color: #0067ff;
}

.main-footer .footer-top .subscribe-widget .social-links li a:hover {
  background: #ea3583;
  color: #fff !important;
}

/* Footer Bottom */
.main-footer .footer-bottom {
  position: relative;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer .footer-bottom .copyright {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.main-footer .footer-bottom .copyright a {
  color: #ea3583;
}

.main-footer .footer-bottom .copyright a:hover {
  color: var(--bf-purple);
}

/* ==========================================================================
   Page Title / Breadcrumb
   ========================================================================== */
.page-title {
  position: relative;
  padding: 200px 0 120px;
  background: -webkit-linear-gradient(0deg, #2e2ffb, #40c7ff 100%);
  text-align: center;
}

.page-title .content-box h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.page-title .content-box .bread-crumb li {
  display: inline-block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--bf-font-heading);
}

.page-title .content-box .bread-crumb li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #71e9ff;
  margin: 0 12px;
  vertical-align: middle;
}

.page-title .content-box .bread-crumb li:first-child:before {
  display: none;
}

.page-title .content-box .bread-crumb li a {
  color: #fff;
}

.page-title .content-box .bread-crumb li a:hover {
  color: #71e9ff;
}

/* ==========================================================================
   Blog Details
   ========================================================================== */
.blog-details-content .inner-box {
  position: relative;
}

.blog-details-content .inner-box .post-info {
  position: relative;
  padding: 8px 0 8px 15px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-details-content .inner-box .post-info:before {
  position: absolute;
  content: '';
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 3px;
  background: -webkit-linear-gradient(0deg, #00b8ff, #0081ff 100%);
}

.blog-details-content .inner-box .post-info li {
  font-size: 14px;
  color: var(--bf-text);
}

.blog-details-content .inner-box .post-info li i {
  margin-right: 5px;
  color: var(--bf-purple);
}

.blog-details-content .inner-box .post-info li a {
  color: var(--bf-text);
}

.blog-details-content .inner-box .post-info li a:hover {
  color: var(--bf-pink);
}

.blog-details-content .inner-box .text h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 20px;
}

.blog-details-content .inner-box .text p {
  margin-bottom: 20px;
}

.blog-details-content .inner-box .text blockquote {
  position: relative;
  padding: 30px 30px 30px 80px;
  margin: 30px 0;
  background: var(--bf-light-bg);
  border-radius: 10px;
}

.blog-details-content .inner-box .text blockquote:before {
  position: absolute;
  content: '';
  width: 5px;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: -webkit-linear-gradient(90deg, #fec25d, #ff5f26 100%);
}

.blog-details-content .inner-box .text blockquote span {
  color: transparent !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background: -webkit-linear-gradient(0deg, #00bdff, #007aff 100%);
  font-weight: 700;
}

/* ==========================================================================
   Blog Sidebar
   ========================================================================== */
.blog-sidebar .sidebar-widget {
  margin-bottom: 40px;
}

.blog-sidebar .sidebar-title h3 {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.blog-sidebar .sidebar-title h3:before {
  position: absolute;
  content: '';
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
  border-radius: 3px;
  background: -webkit-linear-gradient(0deg, #00b8ff, #0081ff 100%);
}

.blog-sidebar .sidebar-search .form-group {
  position: relative;
}

.blog-sidebar .sidebar-search .form-group input {
  width: 100%;
  height: 55px;
  padding: 10px 50px 10px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 16px;
}

.blog-sidebar .sidebar-search .form-group button {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 55px;
  background: transparent;
  font-size: 16px;
  color: var(--bf-text);
  cursor: pointer;
}

.blog-sidebar .sidebar-search .form-group input:focus,
.blog-sidebar .sidebar-search .form-group input:focus + button {
  border-color: #007fff !important;
}

.blog-sidebar .sidebar-post .widget-content .post {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.blog-sidebar .sidebar-post .widget-content .post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-sidebar .sidebar-post .widget-content .post .post-thumb {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 15px;
}

.blog-sidebar .sidebar-post .widget-content .post .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-sidebar .sidebar-post .widget-content .post h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.blog-sidebar .sidebar-post .widget-content .post h6 a {
  color: var(--bf-heading);
}

.blog-sidebar .sidebar-post .widget-content .post h6 a:hover {
  color: #0081ff;
}

.blog-sidebar .sidebar-post .widget-content .post .date {
  font-size: 13px;
  color: var(--bf-text);
  margin-top: 5px;
}

.blog-sidebar .sidebar-tags .tag-list li {
  display: inline-block;
  margin: 0 5px 10px 0;
}

.blog-sidebar .sidebar-tags .tag-list li a {
  display: inline-block;
  padding: 5px 15px;
  font-size: 14px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  color: var(--bf-text);
  transition: all 300ms ease;
}

.blog-sidebar .sidebar-tags .tag-list li a:hover {
  background: #0081ff;
  border-color: #0081ff;
  color: #fff;
}

/* ==========================================================================
   Error (404) Page
   ========================================================================== */
.error-section {
  position: relative;
  padding: 150px 0;
  text-align: center;
}

.error-section .content-box h1 {
  font-size: 200px;
  font-weight: 700;
  line-height: 200px;
  color: transparent !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background: var(--bf-gradient-primary);
  margin-bottom: 20px;
}

.error-section .content-box h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.error-section .content-box p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* ==========================================================================
   Comments
   ========================================================================== */
.comments-area .comment {
  position: relative;
  margin-bottom: 30px;
}

.comments-area .comment .comment-inner {
  position: relative;
  padding-left: 100px;
  min-height: 80px;
}

.comments-area .comment .comment-inner .comment-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.comments-area .comment .comment-inner .comment-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comments-area .comment .comment-inner h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.comments-area .comment .comment-inner .date {
  font-size: 13px;
  color: var(--bf-text);
  margin-bottom: 10px;
}

.comments-area .comment .comment-inner p {
  font-size: 15px;
  line-height: 26px;
}

.comments-area .comment .comment-inner .replay-btn a {
  display: inline-block;
  padding: 3px 15px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
  margin-top: 10px;
  background: -webkit-linear-gradient(0deg, #00bdff, #007aff 100%);
}

/* ==========================================================================
   WordPress Core Styles
   ========================================================================== */
.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.aligncenter {
  display: block;
  margin: 0 auto 20px;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 14px;
  color: var(--bf-text);
  text-align: center;
  padding: 5px 0;
}

.gallery-caption {
  font-size: 14px;
}

.sticky .news-block-one .inner-box {
  border: 2px solid var(--bf-purple);
}

.bypostauthor .comment-inner {
  border-left: 3px solid var(--bf-purple);
  padding-left: 15px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Pagination */
.pagination {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 30px;
}

.pagination .page-numbers {
  display: inline-block;
  font-size: 18px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  text-align: center;
  color: #222;
  background: transparent;
  margin: 0 4px;
  transition: all 500ms ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  color: #fff;
  border-color: #f5a93f;
  background: #f5a93f;
}

/* ==========================================================================
   History / Milestones Section
   ========================================================================== */
.history-section {
  position: relative;
  padding: 120px 0;
}

.history-block {
  margin-bottom: 30px;
}

.history-block .inner-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 500ms ease;
}

.history-block .inner-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.history-block .inner-box .year-badge {
  display: inline-block;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--bf-font-heading);
  color: #fff;
  border-radius: 30px;
  background: -webkit-linear-gradient(0deg, #842af1, #193ab1 100%);
  margin-bottom: 20px;
}

.history-block .inner-box .icon-box {
  font-size: 48px;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(0deg, #00b8ff, #0081ff 100%);
  margin-bottom: 20px;
}

.history-block .inner-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.history-block .inner-box p {
  font-size: 15px;
  line-height: 26px;
  color: var(--bf-text);
}

/* ==========================================================================
   Contact Info Section (page-contact)
   ========================================================================== */
.contact-info-section {
  position: relative;
  padding: 120px 0;
}

.contact-info-section .info-block {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.contact-info-section .info-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-section .info-block .icon-box {
  font-size: 42px;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(0deg, #00b8ff, #0081ff 100%);
  margin-bottom: 15px;
}

.contact-info-section .info-block h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-info-section .info-block p,
.contact-info-section .info-block a {
  font-size: 15px;
  color: var(--bf-text);
}

.contact-info-section .info-block a:hover {
  color: var(--bf-pink);
}

/* ==========================================================================
   Map Section
   ========================================================================== */
.map-section {
  position: relative;
}

.map-section .map-container {
  position: relative;
  width: 100%;
  line-height: 0;
}

.map-section .map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* ==========================================================================
   Blog Page Pagination
   ========================================================================== */
.pagination-wrapper {
  text-align: center;
  padding-top: 30px;
}

.pagination-wrapper .page-numbers {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--bf-heading);
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin: 0 3px;
  transition: all 300ms ease;
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
  color: #fff;
  border-color: transparent;
  background: -webkit-linear-gradient(0deg, #00b8ff, #0081ff 100%);
}

/* ==========================================================================
   Blog Sidebar Categories
   ========================================================================== */
.blog-sidebar .sidebar-categories .widget-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar .sidebar-categories .widget-content li {
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
}

.blog-sidebar .sidebar-categories .widget-content li:last-child {
  border-bottom: none;
}

.blog-sidebar .sidebar-categories .widget-content li a {
  color: var(--bf-text);
  transition: all 300ms ease;
}

.blog-sidebar .sidebar-categories .widget-content li a:hover {
  color: #0081ff;
  padding-left: 5px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media only screen and (min-width: 768px) {
  .main-menu .navigation > li > ul {
    display: block !important;
    visibility: hidden;
    opacity: 0;
  }
}

@media only screen and (max-width: 991px) {
  .main-menu,
  .sticky-header {
    display: none !important;
  }

  .menu-area .mobile-nav-toggler {
    display: block;
    margin-top: 55px;
    padding: 10px;
  }

  .banner-section {
    padding: 200px 0 150px;
  }

  .service-block-one {
    margin-bottom: 70px;
  }

  .main-footer {
    background: var(--bf-dark);
  }

  .main-footer .footer-top {
    padding: 100px 0 70px;
  }

  .main-footer .footer-top .footer-widget {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-section {
    padding: 150px 0 80px;
  }

  .service-section,
  .featured-section,
  .about-section,
  .portfolio-section,
  .pricing-section,
  .team-section,
  .testimonial-section,
  .subscribe-section,
  .news-section,
  .contact-section,
  .history-section {
    padding: 70px 0;
  }

  .map-section .map-container iframe {
    height: 300px;
  }

  .fun-facts {
    padding: 70px 0 60px;
  }

  .news-block-one .inner-box .lower-content h3 {
    font-size: 22px;
  }

  .main-footer .footer-top {
    padding: 70px 0 40px;
  }

  .page-title {
    padding: 140px 0 80px;
  }

  .sec-pad {
    padding: 70px 0 !important;
  }
}

@media only screen and (max-width: 599px) {
  .banner-section .content-box h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .sec-title h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .sec-title h2 {
    font-size: 32px;
    line-height: 45px;
  }

  .page-title .content-box h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .error-section .content-box h1 {
    font-size: 150px;
  }

  .error-section .content-box h2 {
    font-size: 36px;
    line-height: 45px;
  }

  .error-section {
    padding: 100px 0;
  }

  .subscribe-section .content-box .subscribe-form .form-group input[type='email'] {
    width: 100%;
    margin-bottom: 10px;
    padding-right: 25px;
  }

  .subscribe-section .content-box .subscribe-form .form-group button {
    position: relative;
    width: 100%;
  }
}

@media only screen and (max-width: 399px) {
  .main-footer .footer-top .subscribe-widget .download-btn {
    max-width: 160px;
  }
}
