/*
 * SalesNexus Main SCSS File
 * 
 * This file imports all SCSS partials and compiles to CSS
 */
/*
 * SCSS Variables
 * Define all project variables here
 */
/*
 * Base Styles
 */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
* {
  margin-block-start: 0;
  margin-block-end: 0;
  box-sizing: border-box;
}
.t-56 {
  font-size: 56px;
  line-height: 105%;
}
.t-45 {
  font-size: 45px;
  line-height: 105%;
}
.t-40 {
  font-size: 40px;
  line-height: 105%;
}
.t-36 {
  font-size: 36px;
  line-height: 110%;
}
.t-31 {
  font-size: 31px;
  line-height: 130%;
}
.t-28 {
  font-size: 28px;
  line-height: 140%;
}
.t-25 {
  font-size: 25px;
  line-height: 130%;
}
.t-24 {
  font-size: 24px;
  line-height: 130%;
}
.t-20 {
  font-size: 20px;
  line-height: 150%;
}
.t-19 {
  font-size: 19px;
  line-height: 20px;
}
.t-18 {
  font-size: 18px;
  line-height: 150%;
}
.t-17 {
  font-size: 17px;
  line-height: 140%;
}
.t-16 {
  font-size: 16px;
  line-height: 150%;
}
.t-15 {
  font-size: 15px;
  line-height: 110%;
}
.t-14 {
  font-size: 14px;
  line-height: 130%;
}
.fw-700 {
  font-weight: 700;
}
.fw-600 {
  font-weight: 600;
}
.fw-500 {
  font-weight: 500;
}
.fw-400 {
  font-weight: 400;
}
.fw-300 {
  font-weight: 300;
}
@media (max-width: 768px) {
  .t-18 {
    line-height: 130%;
  }
  .t-20 {
    line-height: 130%;
  }
}
.site-header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}
.site-header .site-branding {
  flex-shrink: 0;
}
.site-header .site-branding .site-logo-link {
  display: block;
}
.site-header .site-branding .site-logo-link .site-logo {
  height: 45px;
  width: 200px;
  max-width: 200px;
  background: url("../../assets/salesnexus-main.svg") center center/cover no-repeat;
}
.site-header .main-navigation {
  flex: 1;
  display: flex;
  justify-content: end;
}
.site-header .main-navigation .primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}
.site-header .main-navigation .primary-menu li {
  position: relative;
  list-style: none;
}
.site-header .main-navigation .primary-menu li a {
  font-family: "Lexend Deca", sans-serif;
  font-size: 16px;
  color: #3d3d3d;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.site-header .main-navigation .primary-menu li a:hover, .site-header .main-navigation .primary-menu li a.current-menu-item {
  color: #E85124;
}
.site-header .main-navigation .primary-menu li a.current-menu-item::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: #E85124;
  border-radius: 1px;
}
.site-header .main-navigation .primary-menu li .sub-menu {
  position: absolute;
  top: 150%;
  left: 0;
  background: #fff;
  box-shadow: 0px 34px 44px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.37);
  padding: 0.5rem 0;
  min-width: max-content;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 23px;
}
.site-header .main-navigation .primary-menu li .sub-menu li {
  width: 100%;
}
.site-header .main-navigation .primary-menu li .sub-menu li a {
  display: block;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 400;
}
.site-header .main-navigation .primary-menu li .sub-menu li a:hover {
  color: #E85124;
}
.site-header .main-navigation .primary-menu li .sub-menu li:last-child a {
  border-bottom: none;
}
.site-header .main-navigation .primary-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.site-header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.site-header .mobile-menu-toggle .hamburger-line {
  width: 24px;
  height: 2px;
  background: #000000;
  margin: 3px 0;
  transition: all 0.3s ease;
}
.site-header .mobile-menu-toggle:hover .hamburger-line {
  background: #E85124;
}
.site-header .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-header .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.site-header .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.site-header .mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.site-header .mobile-menu-panel.active {
  transform: translateX(0);
}
.site-header .mobile-menu-panel .mobile-menu-close {
  position: fixed;
  top: 65px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.site-header .mobile-menu-panel .mobile-menu-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.site-header .mobile-menu-panel .mobile-menu-close .close-icon {
  position: relative;
  width: 20px;
  height: 20px;
}
.site-header .mobile-menu-panel .mobile-menu-close .close-icon::before, .site-header .mobile-menu-panel .mobile-menu-close .close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #3d3d3d;
  transition: all 0.3s ease;
}
.site-header .mobile-menu-panel .mobile-menu-close .close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.site-header .mobile-menu-panel .mobile-menu-close .close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.site-header .mobile-menu-panel .mobile-menu-content {
  padding: 80px 30px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
}
.site-header .mobile-menu-panel .mobile-navigation {
  flex-grow: 1;
}
.site-header .mobile-menu-panel .mobile-navigation .mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .mobile-menu-panel .mobile-navigation .mobile-menu-list li {
  margin-bottom: 0;
  padding: 0;
  border-bottom: 1px solid #f0f0f0;
}
.site-header .mobile-menu-panel .mobile-navigation .mobile-menu-list li:last-child {
  border-bottom: none;
}
.site-header .mobile-menu-panel .mobile-navigation .mobile-menu-list li a {
  font-family: "Lexend Deca", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #3d3d3d;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 12px 0;
}
.site-header .mobile-menu-panel .mobile-navigation .mobile-menu-list li a:hover {
  color: #E85124;
}
.site-header .mobile-menu-panel .mobile-navigation .mobile-menu-list li .sub-menu {
  background: #f9f9f9;
  padding: 0;
}
.site-header .mobile-menu-panel .mobile-navigation .mobile-menu-list li .sub-menu li {
  border-bottom: 1px solid #e5e5e5;
}
.site-header .mobile-menu-panel .mobile-navigation .mobile-menu-list li .sub-menu li:last-child {
  border-bottom: none;
}
.site-header .mobile-menu-panel .mobile-navigation .mobile-menu-list li .sub-menu li a {
  font-size: 14px;
  color: #666;
  padding: 10px 20px;
}
.site-header .mobile-menu-panel .mobile-navigation .mobile-menu-list li .sub-menu li a:hover {
  color: #E85124;
}
.site-header .mobile-menu-panel .mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.site-header .mobile-menu-panel .mobile-menu-actions .btn-demo, .site-header .mobile-menu-panel .mobile-menu-actions .btn-trial {
  text-align: center;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Lexend Deca", sans-serif;
  display: block;
}
.site-header .mobile-menu-panel .mobile-menu-actions .btn-demo {
  background: #E85124;
  color: #fff;
  border: 2px solid #E85124;
}
.site-header .mobile-menu-panel .mobile-menu-actions .btn-demo:hover {
  background: #c43d15;
  border-color: #c43d15;
}
.site-header .mobile-menu-panel .mobile-menu-actions .btn-trial {
  background: transparent;
  color: #3d3d3d;
  border: 2px solid #3d3d3d;
}
.site-header .mobile-menu-panel .mobile-menu-actions .btn-trial:hover {
  background: #3d3d3d;
  color: #fff;
}
@media (max-width: 992px) {
  .site-header .header-wrapper {
    gap: 1rem;
  }
  .site-header .main-navigation .primary-menu {
    gap: 1.5rem;
  }
  .site-header .main-navigation .primary-menu li a {
    font-size: 15px;
  }
  .site-header .header-actions .btn-demo, .site-header .header-actions .btn-trial {
    padding: 10px 20px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .site-header .main-navigation {
    display: none;
  }
  .site-header .header-actions {
    display: none;
  }
  .site-header .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 480px) {
  .site-header .header-actions {
    display: none;
  }
  .site-header .site-branding .site-logo {
    height: 32px;
  }
  .site-header .mobile-menu-panel .mobile-menu-close {
    top: 65px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
  .site-header .mobile-menu-panel .mobile-menu-close .close-icon {
    width: 18px;
    height: 18px;
  }
  .site-header .mobile-menu-panel .mobile-menu-close .close-icon::before, .site-header .mobile-menu-panel .mobile-menu-close .close-icon::after {
    width: 18px;
  }
  .site-header .mobile-menu-panel .mobile-menu-content {
    padding: 60px 20px 40px;
  }
  .site-header .mobile-menu-panel .mobile-navigation .mobile-menu-list li a {
    font-size: 15px;
    padding: 10px 0;
  }
  .site-header .mobile-menu-panel .mobile-navigation .mobile-menu-list li .sub-menu li a {
    font-size: 13px;
    padding: 8px 15px;
  }
  .site-header .mobile-menu-panel .mobile-menu-actions {
    margin-top: 15px;
    padding-top: 15px;
    gap: 8px;
  }
  .site-header .mobile-menu-panel .mobile-menu-actions .btn-demo, .site-header .mobile-menu-panel .mobile-menu-actions .btn-trial {
    padding: 12px 20px;
    font-size: 15px;
  }
}
body.mobile-menu-open {
  overflow: hidden;
}
.site-footer {
  background: radial-gradient(82.54% 101.09% at 64.77% -36.47%, #253245 0%, #17212F 100%);
  color: white;
  padding: 110px 0;
}
.site-footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}
.site-footer .footer-newsletter {
  max-width: 320px;
}
.site-footer .footer-newsletter .footer-title {
  color: #fff;
  margin-bottom: 8px;
}
.site-footer .footer-newsletter .footer-description {
  color: #fff;
  margin-bottom: 20px;
  line-height: 130%;
}
.site-footer .footer-newsletter .footer-description strong {
  font-weight: 700;
}
.site-footer .footer-newsletter .newsletter-form {
  margin-bottom: 24px;
}
.site-footer .footer-newsletter .newsletter-form .form-group {
  display: flex;
  gap: 0;
  max-width: 315px;
}
.site-footer .footer-newsletter .newsletter-form .form-group .email-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-family: "Lexend Deca", sans-serif;
  font-size: 14px;
  background: white;
  color: #000000;
}
.site-footer .footer-newsletter .newsletter-form .form-group .email-input::placeholder {
  color: #94a3b8;
}
.site-footer .footer-newsletter .newsletter-form .form-group .email-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(231, 129, 36, 0.5);
}
.site-footer .footer-newsletter .newsletter-form .form-group .signup-btn {
  background: #E85124;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 0 4px 4px 0;
  font-family: "Lexend Deca", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}
.site-footer .footer-newsletter .newsletter-form .form-group .signup-btn:hover {
  background: #ce4016;
}
.site-footer .footer-newsletter .social-media {
  display: flex;
  gap: 25px;
  margin-top: 35px;
}
.site-footer .footer-newsletter .social-media .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.site-footer .footer-newsletter .social-media .social-link:hover {
  transform: translateY(-2px);
}
.site-footer .footer-newsletter .social-media .social-link svg {
  width: 30px;
  height: 30px;
}
.site-footer .footer-newsletter .copyright {
  margin-top: 30px;
}
.site-footer .footer-menus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.site-footer .footer-menus .footer-menu-section .footer-menu-title {
  font-family: "Lexend Deca", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.site-footer .footer-menus .footer-menu-section .footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-menus .footer-menu-section .footer-menu-list li {
  margin-bottom: 16px;
}
.site-footer .footer-menus .footer-menu-section .footer-menu-list li a {
  font-family: "Lexend Deca", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-menus .footer-menu-section .footer-menu-list li a:hover {
  color: #E85124;
}
.site-footer .footer-disclaimer {
  max-width: 800px;
  margin: 50px auto 0;
}
.site-footer .footer-disclaimer .disclaimer {
  font-size: 11px;
  text-align: center;
  opacity: 0.8;
}
.site-footer .footer-disclaimer .copyright {
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .site-footer {
    padding: 50px 0 0;
  }
  .site-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .site-footer .footer-menus {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  .site-footer .footer-newsletter .social-media {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 0;
  }
  .site-footer .footer-content {
    gap: 2rem;
  }
  .site-footer .footer-menus {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .site-footer .footer-newsletter .newsletter-form .form-group {
    flex-direction: column;
  }
  .site-footer .footer-newsletter .newsletter-form .form-group .email-input {
    border-radius: 4px;
    margin-bottom: 8px;
  }
  .site-footer .footer-newsletter .newsletter-form .form-group .signup-btn {
    border-radius: 4px;
  }
  .site-footer .footer-newsletter .social-media {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 30px 0 0;
  }
  .site-footer .footer-newsletter {
    text-align: center;
  }
  .site-footer .footer-newsletter .footer-title {
    font-size: 18px;
  }
  .site-footer .footer-newsletter .newsletter-form .form-group {
    max-width: 100%;
  }
  .site-footer .footer-menus .footer-menu-section {
    text-align: center;
  }
}
/*
 * Layout Styles
 */
.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}
.content-area {
  width: 100%;
}
.btn-orange {
  background-color: #E85124;
  color: #fff;
  border: 2px solid #E85124;
  border-radius: 50px;
  padding: 10px 24px;
  text-decoration: none;
  font-family: "Lexend Deca", sans-serif;
  min-width: fit-content;
  transition: all 0.3s ease;
}
.btn-orange:hover {
  background-color: #c43d15;
  border-color: #c43d15;
  transform: translateY(-1px);
  color: white;
}
.btn-trial {
  background: transparent;
  color: #000000;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #000000;
  min-width: fit-content;
}
.btn-trial:hover {
  background: #000000;
  color: white;
  transform: translateY(-1px);
}
/*
 * Utility Classes
 */
.font-lexend {
  font-family: "Lexend Deca", sans-serif;
}
.font-caladea {
  font-family: "Caladea", serif;
}
.font-light {
  font-weight: 300;
}
.font-regular {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.text-orange {
  color: #E85124;
}
.text-black {
  color: #000000;
}
.text-light-grey {
  color: #B4B4B4;
}
.text-grey {
  color: #626262;
}
.text-dark-grey {
  color: #717171;
}
.text-darkest-grey {
  color: #363636;
}
.text-white {
  color: #ffffff;
}
.bg-orange {
  background-color: #E85124;
}
.bg-black {
  background-color: #000000;
}
.bg-light-grey {
  background-color: #B4B4B4;
}
.bg-grey {
  background-color: #626262;
}
.bg-dark-grey {
  background-color: #717171;
}
.bg-darkest-grey {
  background-color: #363636;
}
.bg-white {
  background-color: #ffffff;
}
.border-orange {
  border-color: #E85124;
}
.border-black {
  border-color: #000000;
}
.border-light-grey {
  border-color: #B4B4B4;
}
.border-grey {
  border-color: #626262;
}
.border-dark-grey {
  border-color: #717171;
}
.border-darkest-grey {
  border-color: #363636;
}
.hero-slider-section {
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
}
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 79px;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  display: none;
  width: 100%;
  height: 100%;
}
.hero-slide.active {
  display: block;
}
.hero-content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  height: 100%;
  margin-bottom: -10px;
}
.hero-content-wrapper .hero-text-content {
  width: 50%;
  padding: 0;
}
.hero-content-wrapper .hero-text-content .hero-main-heading {
  color: #000000;
  margin-bottom: 32px;
}
.hero-content-wrapper .hero-text-content .hero-subheading {
  color: #626262;
  margin-bottom: 32px;
}
.hero-content-wrapper .hero-text-content .hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 32px;
}
.hero-content-wrapper .hero-text-content .btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.hero-content-wrapper .hero-text-content .btn-primary {
  background-color: #E85124;
  color: white;
  border: 2px solid #E85124;
  border-radius: 50px;
  line-height: 150%;
}
.hero-content-wrapper .hero-text-content .btn-secondary {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  line-height: 150%;
}
.hero-content-wrapper .hero-text-content .hero-deal-text {
  font-weight: 300;
}
.hero-content-wrapper .hero-text-content .hero-deal-text strong {
  font-weight: 600;
}
.hero-content-wrapper .hero-image-content {
  width: 50%;
  height: 100%;
}
.hero-content-wrapper .hero-image-content .hero-mockup-container {
  width: 100%;
  text-align: center;
  height: 100%;
}
.hero-content-wrapper .hero-image-content .hero-mockup-image {
  max-width: 100%;
  object-fit: contain;
}
.hero-slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}
.hero-slider-nav .slider-prev, .hero-slider-nav .slider-next {
  display: none;
}
.hero-slider-nav .slider-dots {
  display: flex;
  gap: 0.5rem;
}
.hero-slider-nav .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-slider-nav .slider-dot.active, .hero-slider-nav .slider-dot:hover {
  background: white;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content-wrapper {
    flex-direction: column;
    padding-top: 120px;
  }
  .hero-content-wrapper .hero-text-content {
    width: 80%;
    min-height: 520px;
  }
  .hero-content-wrapper .hero-image-content {
    display: none;
  }
}
@media (max-width: 992px) {
  .hero-content-wrapper {
    gap: 50px;
  }
  .hero-text-content {
    width: 100%;
  }
  .hero-image-content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-slider-section {
    min-height: 500px;
  }
  .hero-content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .hero-text-content, .hero-image-content {
    width: 100%;
  }
  .hero-text-content .hero-main-heading {
    font-size: 2rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .btn {
    padding: 10px 20px;
  }
  .hero-slider-nav {
    bottom: 10px;
  }
  .slider-prev, .slider-next {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .hero-content-wrapper {
    padding-top: 80px;
  }
  .hero-content-wrapper .hero-text-content {
    min-height: 680px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-slider-nav {
    bottom: 50px;
  }
}
.hero-centered-section {
  padding: 100px 0 0;
  background: #f9f9f9;
  text-align: center;
}
.hero-centered-section .hero-centered-wrapper {
  margin: 79px auto 0;
}
.hero-centered-section .hero-centered-wrapper .hero-centered-heading {
  color: #000000;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-centered-section .hero-centered-wrapper .hero-centered-heading strong {
  border-bottom: 4px solid #E85124;
}
.hero-centered-section .hero-centered-wrapper .hero-centered-paragraph {
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-centered-section .hero-centered-wrapper .hero-centered-paragraph p {
  color: #000;
  opacity: 0.7;
  margin: 0;
  font-weight: 300;
}
.hero-centered-section .hero-centered-wrapper .hero-centered-image {
  position: relative;
  margin-top: -130px;
}
.hero-centered-section .hero-centered-wrapper .hero-centered-image .hero-centered-image-main {
  width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .hero-centered-section {
    padding: 80px 0 0;
  }
  .hero-centered-section .hero-centered-wrapper .hero-centered-heading {
    font-size: 40px;
    margin-bottom: 24px;
  }
  .hero-centered-section .hero-centered-wrapper .hero-centered-paragraph {
    margin-bottom: 40px;
  }
  .hero-centered-section .hero-centered-wrapper .hero-centered-paragraph p {
    font-size: 16px;
  }
  .hero-centered-section .hero-centered-wrapper .hero-centered-image {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .hero-centered-section {
    padding: 60px 0 0;
  }
  .hero-centered-section .hero-centered-wrapper .hero-centered-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .hero-centered-section .hero-centered-wrapper .hero-centered-paragraph {
    margin-bottom: 30px;
  }
  .hero-centered-section .hero-centered-wrapper .hero-centered-paragraph p {
    font-size: 15px;
  }
  .hero-centered-section .hero-centered-wrapper .hero-centered-image {
    margin-top: 30px;
  }
  .hero-centered-section .hero-centered-wrapper .hero-centered-image .hero-centered-image-main {
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  .hero-centered-section {
    padding: 40px 0 0;
  }
  .hero-centered-section .hero-centered-wrapper .hero-centered-heading {
    font-size: 28px;
    line-height: 1.3;
  }
}
.logos-slider-section {
  padding: 10px 0;
}
.logos-slider-section .logos-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.logos-slider-section .logos-slider-track {
  display: flex;
  animation: logoSlide 30s linear infinite;
  width: max-content;
}
.logos-slider-section .logo-item {
  flex: 0 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 80px;
}
.logos-slider-section .logo-image {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.logos-slider-section .logo-item:hover .logo-image {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
.logos-slider-section .logos-slider-wrapper:hover .logos-slider-track {
  animation-play-state: paused;
}
@media (max-width: 768px) {
  .logos-slider-section {
    padding: 40px 0;
  }
  .logos-slider-section .logo-item {
    padding: 0 15px;
    min-width: 100px;
    height: 60px;
  }
  .logos-slider-section .logo-image {
    max-height: 40px;
  }
  .logos-slider-section .logos-slider-track {
    animation-duration: 20s;
  }
}
@keyframes logoSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.tabs-section {
  padding: 80px 0;
  background: #ffffff;
}
.tabs-section .tabs-wrapper {
  margin: 0 auto;
}
.tabs-section .tabs-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tabs-section .tabs-nav .tab-btn {
  background: #eee;
  border: 2px solid #eee;
  padding: 12px 23px;
  border-radius: 50px;
  color: #b4b4b4;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.tabs-section .tabs-nav .tab-btn.active {
  background: #ffffff;
  border: 2px solid #000;
  color: #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.tabs-section .tabs-content {
  position: relative;
}
.tabs-section .tabs-content .tab-pane {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
.tabs-section .tabs-content .tab-pane.active {
  display: block;
}
.tabs-section .tab-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 110px;
}
.tabs-section .tab-cards-grid .tab-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  text-align: left;
  border: 1px solid #e3e3e3;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0px 24px 34px 0px rgba(0, 0, 0, 0.09);
  flex: 0 0 auto;
  max-width: 400px;
}
.tabs-section .tab-cards-grid .tab-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.tabs-section .tab-cards-grid .tab-card .tab-card-left {
  flex-shrink: 0;
}
.tabs-section .tab-cards-grid .tab-card .tab-card-left .tab-card-icon {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabs-section .tab-cards-grid .tab-card .tab-card-left .tab-card-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.tabs-section .tab-cards-grid .tab-card .tab-card-right {
  flex: 1;
}
.tabs-section .tab-cards-grid .tab-card .tab-card-right .tab-card-title {
  color: #434343;
  margin-bottom: 10px;
}
.tabs-section .tab-cards-grid .tab-card .tab-card-right .tab-card-description {
  color: #666;
  margin: 0;
}
.tabs-section .tab-paragraph {
  text-align: center;
  max-width: 1100px;
  margin: 40px auto 0;
}
.tabs-section .tab-paragraph p {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}
.tabs-section .tab-paragraph p strong {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #1f2937;
  text-underline-offset: 4px;
}
@media (max-width: 992px) {
  .tabs-section .tab-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .tabs-section {
    padding: 60px 0;
  }
  .tabs-section .tabs-nav {
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .tabs-section .tabs-nav .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .tabs-section .tab-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  .tabs-section .tab-cards-grid .tab-card {
    padding: 24px 20px;
  }
  .tabs-section .tab-cards-grid .tab-card .tab-card-left .tab-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }
  .tabs-section .tab-cards-grid .tab-card .tab-card-left .tab-card-icon img {
    width: 28px;
    height: 28px;
  }
  .tabs-section .tab-cards-grid .tab-card .tab-card-right .tab-card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .tabs-section .tab-cards-grid .tab-card .tab-card-right .tab-card-description {
    font-size: 13px;
  }
  .tabs-section .tab-paragraph p {
    font-size: 22px;
    line-height: 130%;
  }
}
@media (max-width: 480px) {
  .tabs-section {
    padding: 40px 0;
  }
  .tabs-section .tabs-nav {
    padding: 6px;
  }
  .tabs-section .tabs-nav .tab-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .tabs-section .tab-paragraph p {
    font-size: 20px;
    line-height: 1.3;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-block-with-image-section {
  padding: 100px 0;
  position: relative;
}
.text-block-with-image-section::before {
  content: "";
  width: 70%;
  height: 1px;
  background-color: #B4B4B4;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.text-block-with-image-section::after {
  content: "";
  width: 70%;
  height: 1px;
  background-color: #B4B4B4;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.text-block-with-image-section .tbwi-wrapper {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.text-block-with-image-section .tbwi-wrapper.reverse {
  flex-direction: row-reverse;
}
.text-block-with-image-section .tbwi-wrapper.reverse .tbwi-content {
  padding-right: 0;
  padding-left: 70px;
}
.text-block-with-image-section .tbwi-content {
  flex: 1;
  padding-right: 70px;
}
.text-block-with-image-section .tbwi-content .tbwi-heading {
  font-family: "Caladea", serif;
  color: #000000;
  margin-bottom: 32px;
}
.text-block-with-image-section .tbwi-content .tbwi-paragraph {
  margin-bottom: 32px;
}
.text-block-with-image-section .tbwi-content .tbwi-paragraph p {
  font-family: "Lexend Deca", sans-serif;
  color: #000000;
  opacity: 0.7;
}
.text-block-with-image-section .tbwi-content .tbwi-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.text-block-with-image-section .tbwi-content .tbwi-buttons .tbwi-btn-link {
  background: transparent;
  color: #E85124;
  border: none;
  padding: 14px 0;
  font-family: "Lexend Deca", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: fit-content;
}
.text-block-with-image-section .tbwi-content .tbwi-buttons .tbwi-btn-link .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.text-block-with-image-section .tbwi-content .tbwi-buttons .tbwi-btn-link:hover {
  color: #c43d15;
}
.text-block-with-image-section .tbwi-content .tbwi-buttons .tbwi-btn-link:hover .arrow {
  transform: translateX(4px);
}
.text-block-with-image-section .tbwi-image {
  flex: 1;
  position: relative;
}
.text-block-with-image-section .tbwi-image .tbwi-image-container {
  position: relative;
}
.text-block-with-image-section .tbwi-image .tbwi-image-container .tbwi-image-main {
  width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .text-block-with-image-section {
    padding: 80px 0;
  }
  .text-block-with-image-section .tbwi-wrapper, .text-block-with-image-section .tbwi-wrapper.reverse {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .text-block-with-image-section .tbwi-content {
    padding-right: 0;
    padding-left: 0 !important;
  }
  .text-block-with-image-section .tbwi-content .tbwi-heading {
    font-size: 40px;
  }
  .text-block-with-image-section .tbwi-content .tbwi-buttons {
    justify-content: center;
    gap: 16px;
  }
  .text-block-with-image-section .tbwi-content .tbwi-buttons .tbwi-btn-primary {
    padding: 12px 24px;
    font-size: 15px;
  }
  .text-block-with-image-section .tbwi-content .tbwi-buttons .tbwi-btn-link {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .text-block-with-image-section {
    padding: 60px 0;
  }
  .text-block-with-image-section .tbwi-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .text-block-with-image-section .tbwi-content {
    max-width: none;
  }
  .text-block-with-image-section .tbwi-content .tbwi-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .text-block-with-image-section .tbwi-content .tbwi-paragraph {
    margin-bottom: 28px;
  }
  .text-block-with-image-section .tbwi-content .tbwi-paragraph p {
    font-size: 15px;
  }
  .text-block-with-image-section .tbwi-content .tbwi-buttons {
    justify-content: center;
    gap: 16px;
  }
  .text-block-with-image-section .tbwi-content .tbwi-buttons .tbwi-btn-primary {
    padding: 12px 24px;
    font-size: 15px;
  }
  .text-block-with-image-section .tbwi-content .tbwi-buttons .tbwi-btn-link {
    font-size: 15px;
  }
  .text-block-with-image-section .tbwi-image {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .text-block-with-image-section {
    padding: 40px 0;
  }
  .text-block-with-image-section .tbwi-content .tbwi-heading {
    font-size: 28px;
    line-height: 1.3;
  }
  .text-block-with-image-section .tbwi-content .tbwi-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .text-block-with-image-section .tbwi-content .tbwi-buttons .tbwi-btn-primary, .text-block-with-image-section .tbwi-content .tbwi-buttons .tbwi-btn-link {
    text-align: center;
    justify-content: center;
  }
}
.text-block-with-cards-and-image-section {
  padding: 100px 0 0;
  background: #ffffff;
  position: relative;
}
.text-block-with-cards-and-image-section .tbci-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.text-block-with-cards-and-image-section .tbci-slider {
  position: relative;
  width: 100%;
  height: auto;
}
.text-block-with-cards-and-image-section .tbci-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.text-block-with-cards-and-image-section .tbci-slide.active {
  display: block;
  opacity: 1;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content {
  width: 50%;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-logo {
  margin-bottom: 24px;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-heading {
  color: #000000;
  margin-bottom: 20px;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-paragraph {
  margin-bottom: 32px;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-paragraph p {
  color: #000000;
  opacity: 0.8;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-cards .tbci-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px 16px;
  text-align: left;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-cards .tbci-card .tbci-card-number {
  color: #000000;
  margin-bottom: 4px;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-cards .tbci-card .tbci-card-description {
  font-family: "Lexend Deca", sans-serif;
  color: #000000;
  opacity: 0.7;
  line-height: 1.4;
  margin: 0;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-buttons .tbci-btn-next {
  background: transparent;
  color: #E85124;
  border: none;
  padding: 12px 0;
  font-family: "Lexend Deca", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-buttons .tbci-btn-next .arrow {
  transition: transform 0.3s ease;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-buttons .tbci-btn-next:hover {
  color: #c43d15;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-content .tbci-buttons .tbci-btn-next:hover .arrow {
  transform: translateX(4px);
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-image {
  width: 50%;
  position: relative;
}
.text-block-with-cards-and-image-section .tbci-content-wrapper .tbci-image .tbci-image-main {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 992px) {
  .text-block-with-cards-and-image-section {
    padding: 80px 0 0;
  }
  .text-block-with-cards-and-image-section .tbci-content-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-heading {
    font-size: 28px;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-cards {
    gap: 16px;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-cards .tbci-card {
    padding: 16px 12px;
  }
}
@media (max-width: 768px) {
  .text-block-with-cards-and-image-section {
    padding: 60px 0 0;
  }
  .text-block-with-cards-and-image-section .tbci-content-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .text-block-with-cards-and-image-section .tbci-content {
    max-width: none;
    width: 80% !important;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-logo {
    display: flex;
    justify-content: center;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-heading {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-paragraph {
    margin-bottom: 24px;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-cards .tbci-card {
    text-align: center;
    padding: 16px;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-buttons .tbci-btn-primary {
    padding: 10px 20px;
    font-size: 15px;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-buttons .tbci-btn-next {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .text-block-with-cards-and-image-section {
    padding: 40px 0 0;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-heading {
    font-size: 20px;
    line-height: 1.2;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .text-block-with-cards-and-image-section .tbci-content .tbci-buttons .tbci-btn-primary, .text-block-with-cards-and-image-section .tbci-content .tbci-buttons .tbci-btn-next {
    text-align: center;
    justify-content: center;
  }
}
.text-block-with-image-slider-section {
  padding: 100px 0;
  position: relative;
}
.text-block-with-image-slider-section::before {
  content: "";
  width: 70%;
  height: 1px;
  background-color: #B4B4B4;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.text-block-with-image-slider-section::after {
  content: "";
  width: 70%;
  height: 1px;
  background-color: #B4B4B4;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.text-block-with-image-slider-section .tbwis-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.text-block-with-image-slider-section .tbwis-slider {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}
.text-block-with-image-slider-section .tbwis-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
}
.text-block-with-image-slider-section .tbwis-slide.active {
  opacity: 1;
  z-index: 2;
}
.text-block-with-image-slider-section .tbwis-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
  min-height: 475px;
  box-sizing: border-box;
  padding: 20px 0;
}
.text-block-with-image-slider-section .tbwis-content-wrapper .tbwis-content {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-end;
}
.text-block-with-image-slider-section .tbwis-content-wrapper .tbwis-content .tbwis-heading {
  font-family: "Caladea", serif;
  color: #000000;
  margin-bottom: 32px;
  line-height: 1.2;
}
.text-block-with-image-slider-section .tbwis-content-wrapper .tbwis-content .tbwis-paragraph {
  margin-bottom: 32px;
  flex: 1;
}
.text-block-with-image-slider-section .tbwis-content-wrapper .tbwis-content .tbwis-paragraph p {
  font-family: "Lexend Deca", sans-serif;
  color: #000000;
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
}
.text-block-with-image-slider-section .tbwis-content-wrapper .tbwis-content .tbwis-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}
.text-block-with-image-slider-section .tbwis-content-wrapper .tbwis-content .tbwis-buttons .tbwis-btn-next {
  background: transparent;
  color: #E85124;
  border: none;
  padding: 14px 0;
  font-family: "Lexend Deca", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  min-width: fit-content;
}
.text-block-with-image-slider-section .tbwis-content-wrapper .tbwis-content .tbwis-buttons .tbwis-btn-next .arrow {
  transition: transform 0.3s ease;
}
.text-block-with-image-slider-section .tbwis-content-wrapper .tbwis-content .tbwis-buttons .tbwis-btn-next:hover {
  color: #c43d15;
}
.text-block-with-image-slider-section .tbwis-content-wrapper .tbwis-content .tbwis-buttons .tbwis-btn-next:hover .arrow {
  transform: translateX(4px);
}
.text-block-with-image-slider-section .tbwis-content-wrapper .tbwis-image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
}
.text-block-with-image-slider-section .tbwis-content-wrapper .tbwis-image .tbwis-image-main {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 400px;
  max-width: 100%;
}
@media (max-width: 992px) {
  .text-block-with-image-slider-section {
    padding: 80px 0;
  }
  .text-block-with-image-slider-section .tbwis-slider {
    min-height: 450px;
  }
  .text-block-with-image-slider-section .tbwis-content-wrapper {
    gap: 60px;
    min-height: 400px;
  }
  .text-block-with-image-slider-section .tbwis-content {
    min-height: 350px;
  }
  .text-block-with-image-slider-section .tbwis-content .tbwis-heading {
    font-size: 36px;
    min-height: 100px;
  }
  .text-block-with-image-slider-section .tbwis-image {
    min-height: 350px;
  }
}
@media (max-width: 768px) {
  .text-block-with-image-slider-section {
    padding: 60px 0;
  }
  .text-block-with-image-slider-section .tbwis-slider {
    min-height: 500px;
  }
  .text-block-with-image-slider-section .tbwis-content-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    min-height: 450px;
  }
  .text-block-with-image-slider-section .tbwis-content {
    max-width: none;
    min-height: 250px;
  }
  .text-block-with-image-slider-section .tbwis-content .tbwis-heading {
    font-size: 32px;
    margin-bottom: 20px;
    min-height: 80px;
  }
  .text-block-with-image-slider-section .tbwis-content .tbwis-paragraph {
    margin-bottom: 28px;
  }
  .text-block-with-image-slider-section .tbwis-content .tbwis-paragraph p {
    font-size: 16px;
  }
  .text-block-with-image-slider-section .tbwis-content .tbwis-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .text-block-with-image-slider-section .tbwis-content .tbwis-buttons .tbwis-btn-primary {
    padding: 12px 24px;
    font-size: 18px;
  }
  .text-block-with-image-slider-section .tbwis-content .tbwis-buttons .tbwis-btn-next {
    font-size: 17px;
  }
  .text-block-with-image-slider-section .tbwis-image {
    max-width: 100%;
    min-height: 200px;
  }
}
@media (max-width: 480px) {
  .text-block-with-image-slider-section {
    padding: 40px 0;
  }
  .text-block-with-image-slider-section .tbwis-slider {
    min-height: 450px;
  }
  .text-block-with-image-slider-section .tbwis-content-wrapper {
    min-height: 400px;
  }
  .text-block-with-image-slider-section .tbwis-content {
    min-height: 200px;
  }
  .text-block-with-image-slider-section .tbwis-content .tbwis-heading {
    font-size: 28px;
    line-height: 1.3;
    min-height: 70px;
  }
  .text-block-with-image-slider-section .tbwis-content .tbwis-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .text-block-with-image-slider-section .tbwis-content .tbwis-buttons .tbwis-btn-primary, .text-block-with-image-slider-section .tbwis-content .tbwis-buttons .tbwis-btn-next {
    text-align: center;
    justify-content: center;
  }
  .text-block-with-image-slider-section .tbwis-image {
    min-height: 150px;
  }
}
.testimonials-section {
  padding: 120px 0;
  background: url("../../assets/testimonials.png") center center/cover no-repeat;
  position: relative;
  text-align: center;
}
.testimonials-section .testimonials-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.testimonials-section .testimonials-slider {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}
.testimonials-section .testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.testimonials-section .testimonial-slide.active {
  opacity: 1;
}
.testimonials-section .testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  width: 100%;
  min-height: 500px;
  box-sizing: border-box;
}
.testimonials-section .testimonial-content .testimonial-photo {
  margin-bottom: 40px;
}
.testimonials-section .testimonial-content .testimonial-photo .testimonial-photo-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #B4B4B4;
}
.testimonials-section .testimonial-content .testimonial-text {
  margin-bottom: 40px;
  max-width: 800px;
}
.testimonials-section .testimonial-content .testimonial-text p {
  color: #000000;
}
.testimonials-section .testimonial-content .testimonial-author .testimonial-name {
  color: #000000;
}
.testimonials-section .testimonial-content .testimonial-author .testimonial-position {
  color: #E85124;
}
.testimonials-section .testimonials-nav {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.testimonials-section .testimonials-nav .testimonials-dots {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.testimonials-section .testimonials-nav .testimonials-dots .testimonial-dot {
  border-radius: 50%;
  background-color: #e5e7eb;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 8px;
  width: 8px;
  min-height: 8px;
  min-width: 8px;
  max-height: 8px;
  max-width: 8px;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
}
.testimonials-section .testimonials-nav .testimonials-dots .testimonial-dot:hover {
  background: #E85124;
}
.testimonials-section .testimonials-nav .testimonials-dots .testimonial-dot.active {
  background: #E85124;
}
@media (max-width: 992px) {
  .testimonials-section {
    padding: 100px 0;
  }
  .testimonials-section .testimonials-slider {
    min-height: 480px;
  }
  .testimonials-section .testimonial-content {
    min-height: 450px;
    padding: 30px 20px;
  }
  .testimonials-section .testimonial-content .testimonial-photo {
    margin-bottom: 32px;
  }
  .testimonials-section .testimonial-content .testimonial-photo .testimonial-photo-img {
    width: 140px;
    height: 140px;
  }
  .testimonials-section .testimonial-content .testimonial-text {
    margin-bottom: 32px;
  }
  .testimonials-section .testimonial-content .testimonial-text p {
    font-size: 22px;
  }
  .testimonials-section .testimonial-content .testimonial-author .testimonial-name {
    font-size: 24px;
  }
  .testimonials-section .testimonial-content .testimonial-author .testimonial-position {
    font-size: 16px;
    padding: 6px 20px;
  }
}
@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }
  .testimonials-section .testimonials-slider {
    min-height: 380px;
  }
  .testimonials-section .testimonial-content {
    padding: 20px 15px;
    min-height: 400px;
  }
  .testimonials-section .testimonial-content .testimonial-photo {
    margin-bottom: 24px;
  }
  .testimonials-section .testimonial-content .testimonial-photo .testimonial-photo-img {
    width: 100px;
    height: 100px;
    border-width: 3px;
  }
  .testimonials-section .testimonial-content .testimonial-text {
    margin-bottom: 24px;
  }
  .testimonials-section .testimonial-content .testimonial-text p {
    font-size: 18px;
    line-height: 1.5;
  }
  .testimonials-section .testimonial-content .testimonial-author .testimonial-name {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .testimonials-section .testimonial-content .testimonial-author .testimonial-position {
    font-size: 14px;
    padding: 5px 16px;
  }
  .testimonials-section .testimonials-nav {
    bottom: -50px;
  }
  .testimonials-section .testimonials-nav .testimonials-dots {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .testimonials-section {
    padding: 60px 0;
  }
  .testimonials-section .testimonial-content {
    min-height: 350px;
    padding: 15px 10px;
  }
  .testimonials-section .testimonial-content .testimonial-photo {
    margin-bottom: 20px;
  }
  .testimonials-section .testimonial-content .testimonial-photo .testimonial-photo-img {
    width: 80px;
    height: 80px;
  }
  .testimonials-section .testimonial-content .testimonial-text {
    margin-bottom: 20px;
  }
  .testimonials-section .testimonial-content .testimonial-text p {
    font-size: 16px;
    line-height: 1.4;
  }
  .testimonials-section .testimonial-content .testimonial-author .testimonial-name {
    font-size: 18px;
  }
  .testimonials-section .testimonial-content .testimonial-author .testimonial-position {
    font-size: 13px;
    padding: 4px 12px;
  }
}
@keyframes testimonialFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.centered-text-block-section {
  padding: 140px 0;
  background: #f8fafc;
  position: relative;
  z-index: 2;
}
.centered-text-block-section .ctb-wrapper {
  position: relative;
  margin: 0 auto;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.centered-text-block-section .ctb-floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.centered-text-block-section .ctb-floating-cards .ctb-card {
  position: absolute;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 24px 34px 0px rgba(0, 0, 0, 0.09);
  border: 1px solid #e3e3e3;
  min-width: 180px;
  text-align: left;
  pointer-events: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.centered-text-block-section .ctb-floating-cards .ctb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.centered-text-block-section .ctb-floating-cards .ctb-card .ctb-card-title {
  color: #000000;
  margin-bottom: 4px;
  line-height: 1.1;
}
.centered-text-block-section .ctb-floating-cards .ctb-card .ctb-card-description {
  color: #717171;
  margin-bottom: 10px;
}
.centered-text-block-section .ctb-floating-cards .ctb-card .ctb-card-year .year-badge {
  border: 2px solid #E85124;
  color: #E85124;
  padding: 7px 11px;
  border-radius: 7px;
  line-height: 100%;
  display: flex;
  max-width: fit-content;
}
.centered-text-block-section .ctb-floating-cards .ctb-card-1 {
  top: -190px;
  left: 25%;
  z-index: 2;
}
.centered-text-block-section .ctb-floating-cards .ctb-card-2 {
  top: -13px;
  left: 10%;
}
.centered-text-block-section .ctb-floating-cards .ctb-card-3 {
  top: 0;
  right: 8%;
}
.centered-text-block-section .ctb-floating-cards .ctb-card-4 {
  bottom: 120px;
  left: 5%;
}
.centered-text-block-section .ctb-floating-cards .ctb-card-5 {
  bottom: 60px;
  right: 0;
}
.centered-text-block-section .ctb-floating-cards .ctb-card-6 {
  bottom: -160px;
  right: 30%;
}
.centered-text-block-section .ctb-central-content {
  text-align: center;
  max-width: 600px;
  z-index: 10;
  position: relative;
}
.centered-text-block-section .ctb-central-content .ctb-heading {
  color: #000000;
  margin-bottom: 24px;
  line-height: 1.2;
}
.centered-text-block-section .ctb-central-content .ctb-paragraph {
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.centered-text-block-section .ctb-central-content .ctb-paragraph p {
  color: #000000;
  opacity: 0.8;
}
.centered-text-block-section .ctb-central-content .ctb-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.centered-text-block-section .ctb-central-content .ctb-buttons .btn-secondary {
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.centered-text-block-section .ctb-central-content .ctb-buttons .btn-secondary:hover {
  background: #000000;
  color: white;
}
.centered-text-block-section .ctb-central-content .ctb-span p {
  color: #64748b;
  margin: 0;
}
@media (max-width: 1200px) {
  .centered-text-block-section .ctb-floating-cards .ctb-card-1 {
    left: 45%;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-3 {
    right: 5%;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-4 {
    left: 2%;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-6 {
    right: 45%;
  }
}
@media (max-width: 992px) {
  .centered-text-block-section {
    padding: 100px 0;
  }
  .centered-text-block-section .ctb-wrapper {
    min-height: 500px;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card {
    min-width: 120px;
    padding: 16px 20px;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card .ctb-card-title {
    font-size: 32px;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-1 {
    top: -120px;
    left: 0;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-2 {
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-2:hover {
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-3 {
    top: -120px;
    right: 0;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-4 {
    bottom: -120px;
    left: 0;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-5 {
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    max-width: fit-content;
    transition: all 0.4s;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-5:hover {
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-6 {
    bottom: -120px;
    right: 0;
  }
  .centered-text-block-section .ctb-central-content .ctb-heading {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .centered-text-block-section .ctb-central-content .ctb-paragraph {
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .centered-text-block-section {
    padding: 170px 0;
  }
  .centered-text-block-section .ctb-wrapper {
    min-height: 400px;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card {
    min-width: 100px;
    padding: 12px 16px;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card .ctb-card-title {
    font-size: 24px;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card .ctb-card-description {
    font-size: 12px;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-1, .centered-text-block-section .ctb-floating-cards .ctb-card-2, .centered-text-block-section .ctb-floating-cards .ctb-card-3 {
    top: -140px;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-4, .centered-text-block-section .ctb-floating-cards .ctb-card-5, .centered-text-block-section .ctb-floating-cards .ctb-card-6 {
    bottom: -140px;
  }
  .centered-text-block-section .ctb-central-content .ctb-heading {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .centered-text-block-section .ctb-central-content .ctb-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .centered-text-block-section .ctb-central-content .ctb-buttons .ctb-btn-primary, .centered-text-block-section .ctb-central-content .ctb-buttons .btn-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .centered-text-block-section {
    padding: 300px 0;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-2 {
    top: -270px;
  }
  .centered-text-block-section .ctb-floating-cards .ctb-card-5 {
    bottom: -270px;
  }
  .centered-text-block-section .ctb-central-content .ctb-heading {
    font-size: 28px;
    line-height: 1.3;
  }
}
.pricing-table-section {
  padding: 100px 0;
  background: #fff;
}
.pricing-table-section .pricing-table-wrapper {
  margin: 79px auto 0;
  text-align: center;
}
.pricing-table-section .pricing-table-wrapper .pricing-table-heading {
  color: #000000;
  margin: 0 auto 20px;
  max-width: 900px;
}
.pricing-table-section .pricing-table-wrapper .pricing-table-heading strong {
  border-bottom: 4px solid #E85124;
}
.pricing-table-section .pricing-table-wrapper .pricing-table-description {
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-table-section .pricing-table-wrapper .pricing-table-description p {
  color: #000;
  opacity: 0.7;
  margin: 0;
}
.pricing-table-section .pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.pricing-table-section .pricing-cards-grid .pricing-card {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 800px;
}
.pricing-table-section .pricing-cards-grid .pricing-card.featured {
  border: 3px solid #E85124;
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(231, 129, 36, 0.1);
  position: relative;
}
.pricing-table-section .pricing-cards-grid .pricing-card.featured::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -45px;
  background: url("/wp-content/themes/salesnexus/assets/most-popular-b.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 180px;
  height: 42px;
  transform: rotate(45deg);
}
.pricing-table-section .pricing-cards-grid .pricing-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.pricing-table-section .pricing-cards-grid .pricing-card:hover.featured {
  transform: scale(1.02) translateY(-5px);
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-title {
  color: #E85124;
  margin-bottom: 30px;
  text-align: left;
  text-transform: uppercase;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-price {
  margin-bottom: 20px;
  color: #000000;
  font-size: 85px;
  font-weight: 700;
  text-align: left;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-price strong {
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.3;
  margin-left: -30px;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-action-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-btn {
  display: inline;
  background: #E85124;
  color: white;
  transition: all 0.3s ease;
  margin-bottom: 0;
  padding: 8px 20px;
  max-width: fit-content;
  flex-shrink: 0;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-seat {
  color: #000;
  margin-bottom: 0;
  text-align: left;
  flex: 1;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-for {
  color: #000000;
  text-align: left;
  line-height: 130%;
  margin-bottom: 30px;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-includes {
  color: #333;
  padding: 10px 18px;
  border-radius: 7px;
  border: 2px solid #e0e0e0;
  margin-bottom: 20px;
  text-transform: uppercase;
  max-width: fit-content;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-features {
  text-align: left;
  margin-bottom: 30px;
  flex: 1;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-features ul li {
  color: #acacac;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-bottom {
  margin-top: auto;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-bottom .pricing-card-btn-2 {
  margin-right: auto;
  display: flex;
  max-width: fit-content;
  margin-bottom: 20px;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-bottom .pricing-card-span {
  color: #000;
  margin-top: 10px;
  text-align: left;
}
.pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-bottom .pricing-card-span p {
  margin: 0;
}
@media (max-width: 1200px) {
  .pricing-table-section .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 780px;
    gap: 30px;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  .pricing-table-section {
    padding: 80px 0;
  }
  .pricing-table-section .pricing-table-wrapper .pricing-table-heading {
    font-size: 40px;
    margin-bottom: 16px;
  }
  .pricing-table-section .pricing-table-wrapper .pricing-table-description {
    margin-bottom: 40px;
  }
  .pricing-table-section .pricing-table-wrapper .pricing-table-description p {
    font-size: 18px;
  }
  .pricing-table-section .pricing-cards-grid {
    gap: 20px;
    margin-top: 40px;
  }
  .pricing-table-section .pricing-cards-grid .pricing-card {
    padding: 30px 25px;
  }
  .pricing-table-section .pricing-cards-grid .pricing-card.featured {
    transform: scale(1.01);
  }
  .pricing-table-section .pricing-cards-grid .pricing-card:hover.featured {
    transform: scale(1.01) translateY(-3px);
  }
  .pricing-table-section .pricing-cards-grid .pricing-card .pricing-card-price {
    font-size: 92px;
  }
}
@media (max-width: 768px) {
  .pricing-table-section {
    padding: 60px 0;
  }
  .pricing-table-section .pricing-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 400px;
    margin: 40px auto 0;
  }
  .pricing-table-section .pricing-cards-grid .pricing-card.featured {
    transform: none;
    order: -1;
  }
  .pricing-table-section .pricing-cards-grid .pricing-card:hover.featured {
    transform: translateY(-3px);
  }
  .pricing-table-section .pricing-table-wrapper .pricing-table-heading {
    font-size: 32px;
  }
  .pricing-table-section .pricing-table-wrapper .pricing-table-description {
    margin-bottom: 30px;
  }
  .pricing-table-section .pricing-table-wrapper .pricing-table-description p {
    font-size: 16px;
    line-height: 140%;
  }
}
@media (max-width: 480px) {
  .pricing-table-section {
    padding: 40px 0;
  }
  .pricing-table-section .pricing-table-wrapper .pricing-table-heading {
    font-size: 28px;
    line-height: 1.3;
  }
  .pricing-table-section .pricing-cards-grid .pricing-card {
    padding: 25px 20px;
  }
}
.blog-page .blog-header-section {
  padding: 100px 0 80px;
  background: #ffffff;
  text-align: center;
}
.blog-page .blog-header-section .blog-heading {
  font-family: "Caladea", serif;
  font-size: 48px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}
.blog-page .blog-header-section .blog-heading strong {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #E85124;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}
.blog-page .blog-header-section .blog-subheading {
  font-family: "Lexend Deca", sans-serif;
  font-size: 18px;
  color: #626262;
  line-height: 1.6;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.blog-page .blog-header-section .blog-search .search-form {
  max-width: 600px;
  margin: 0 auto;
}
.blog-page .blog-header-section .blog-search .search-form .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid #e5e5e5;
  border-radius: 50px;
  padding: 4px 4px 4px 20px;
  transition: all 0.3s ease;
}
.blog-page .blog-header-section .blog-search .search-form .search-input-wrapper:focus-within {
  border-color: #E85124;
  box-shadow: 0 0 0 3px rgba(232, 81, 36, 0.1);
}
.blog-page .blog-header-section .blog-search .search-form .search-field {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 0;
  font-size: 16px;
  font-family: "Lexend Deca", sans-serif;
  background: transparent;
}
.blog-page .blog-header-section .blog-search .search-form .search-field::placeholder {
  color: #B4B4B4;
}
.blog-page .blog-header-section .blog-search .search-form .search-submit {
  background: none;
  border: none;
  border-radius: 50px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-page .blog-header-section .blog-search .search-form .search-submit svg {
  width: 20px;
  height: 20px;
}
.blog-page .blog-posts-section {
  padding: 0 0 100px;
  background: #ffffff;
}
.blog-page .blog-posts-section .blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.blog-page .blog-posts-section .blog-post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}
.blog-page .blog-posts-section .blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.blog-page .blog-posts-section .blog-post-card .post-thumbnail {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.blog-page .blog-posts-section .blog-post-card .post-thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
}
.blog-page .blog-posts-section .blog-post-card .post-thumbnail .post-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.blog-page .blog-posts-section .blog-post-card .post-thumbnail:hover .post-featured-image {
  transform: scale(1.05);
}
.blog-page .blog-posts-section .blog-post-card .post-content {
  padding: 30px;
}
.blog-page .blog-posts-section .blog-post-card .post-categories {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-page .blog-posts-section .blog-post-card .post-categories .category-tag {
  display: flex;
  padding: 8px 12px 7px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  border-radius: 47px;
  background: #F1EFEF;
  color: #E74A1C;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  font-family: "Lexend Deca";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
.blog-page .blog-posts-section .blog-post-card .post-categories .category-tag:hover {
  background: #E8E6E6;
  transform: translateY(-1px);
}
.blog-page .blog-posts-section .blog-post-card .post-categories .category-tag:visited {
  color: #E74A1C;
}
.blog-page .blog-posts-section .blog-post-card .post-title {
  margin-bottom: 16px;
}
.blog-page .blog-posts-section .blog-post-card .post-title a {
  font-family: "Caladea", serif;
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.blog-page .blog-posts-section .blog-post-card .post-title a:hover {
  color: #E85124;
}
.blog-page .blog-posts-section .blog-post-card .post-excerpt {
  font-family: "Lexend Deca", sans-serif;
  font-size: 15px;
  color: #626262;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 130px;
}
.blog-page .blog-posts-section .blog-post-card .post-meta {
  margin-bottom: 8px;
  margin-top: 40px;
}
.blog-page .blog-posts-section .blog-post-card .post-meta .post-date {
  font-family: "Lexend Deca", sans-serif;
  font-size: 14px;
  color: #B4B4B4;
}
.blog-page .blog-posts-section .blog-post-card .read-more-wrapper {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.blog-page .blog-posts-section .blog-post-card .read-more-wrapper .read-more-btn {
  display: flex;
  padding: 11px 16px 11px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 56px;
  background: #E85124;
  color: #FFF;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  max-width: fit-content;
  text-align: center;
  font-family: "Lexend Deca";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
.blog-page .blog-posts-section .blog-post-card .read-more-wrapper .read-more-btn:hover {
  background: #c43d15;
  transform: translateY(-2px);
}
.blog-page .blog-posts-section .blog-post-card .read-more-wrapper .read-more-btn:visited {
  color: #FFF;
}
.blog-page .blog-posts-section .no-posts-message {
  text-align: center;
  padding: 80px 20px;
}
.blog-page .blog-posts-section .no-posts-message h3 {
  font-family: "Caladea", serif;
  font-size: 32px;
  color: #000000;
  margin-bottom: 16px;
}
.blog-page .blog-posts-section .no-posts-message p {
  font-family: "Lexend Deca", sans-serif;
  font-size: 18px;
  color: #626262;
  max-width: 500px;
  margin: 0 auto 20px;
}
.blog-page .blog-posts-section .no-posts-message .button {
  background: #E85124;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.blog-page .blog-posts-section .no-posts-message .button:hover {
  background: #c43d15;
  transform: translateY(-2px);
}
.blog-page .blog-posts-section .blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.blog-page .blog-posts-section .blog-pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-page .blog-posts-section .blog-pagination .page-numbers a, .blog-page .blog-posts-section .blog-pagination .page-numbers span {
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  color: #626262;
  text-decoration: none;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
.blog-page .blog-posts-section .blog-pagination .page-numbers a:hover, .blog-page .blog-posts-section .blog-pagination .page-numbers a.current, .blog-page .blog-posts-section .blog-pagination .page-numbers span:hover, .blog-page .blog-posts-section .blog-pagination .page-numbers span.current {
  background: #E85124;
  color: white;
  border-color: #E85124;
}
.blog-page .blog-posts-section .blog-pagination .page-numbers a.prev, .blog-page .blog-posts-section .blog-pagination .page-numbers a.next, .blog-page .blog-posts-section .blog-pagination .page-numbers span.prev, .blog-page .blog-posts-section .blog-pagination .page-numbers span.next {
  padding: 12px 20px;
}
.blog-page .blog-posts-section .blog-pagination .page-numbers .dots {
  padding: 12px 8px;
  color: #B4B4B4;
  border: none;
}
@media (max-width: 992px) {
  .blog-page .blog-header-section {
    padding: 80px 0 60px;
  }
  .blog-page .blog-header-section .blog-heading {
    font-size: 40px;
  }
  .blog-page .blog-header-section .blog-subheading {
    font-size: 16px;
  }
  .blog-page .blog-posts-section .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .blog-page .blog-header-section {
    padding: 60px 0 50px;
  }
  .blog-page .blog-header-section .blog-heading {
    font-size: 32px;
  }
  .blog-page .blog-header-section .blog-subheading {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .blog-page .blog-header-section .blog-search .search-form {
    max-width: 100%;
  }
  .blog-page .blog-header-section .blog-search .search-form .search-input-wrapper {
    padding: 4px 4px 4px 16px;
  }
  .blog-page .blog-header-section .blog-search .search-form .search-field {
    padding: 14px 0;
    font-size: 15px;
  }
  .blog-page .blog-header-section .blog-search .search-form .search-submit {
    width: 44px;
    height: 44px;
  }
  .blog-page .blog-posts-section {
    padding: 0 0 80px;
  }
  .blog-page .blog-posts-section .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .blog-page .blog-posts-section .blog-post-card .post-content {
    padding: 25px;
  }
  .blog-page .blog-posts-section .blog-post-card .post-title a {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .blog-page .blog-header-section {
    padding: 40px 0 40px;
  }
  .blog-page .blog-header-section .blog-heading {
    font-size: 28px;
    line-height: 1.3;
  }
  .blog-page .blog-header-section .blog-subheading {
    font-size: 14px;
  }
  .blog-page .blog-posts-section {
    padding: 0 0 60px;
  }
  .blog-page .blog-posts-section .blog-posts-grid {
    gap: 20px;
  }
  .blog-page .blog-posts-section .blog-post-card .post-thumbnail {
    height: 180px;
  }
  .blog-page .blog-posts-section .blog-post-card .post-content {
    padding: 20px;
  }
  .blog-page .blog-posts-section .blog-post-card .post-content .read-more-wrapper {
    bottom: 20px;
    left: 20px;
  }
  .blog-page .blog-posts-section .blog-post-card .post-title a {
    font-size: 18px;
  }
  .blog-page .blog-posts-section .blog-post-card .post-excerpt {
    font-size: 14px;
  }
  .blog-page .blog-posts-section .blog-pagination {
    margin-top: 40px;
  }
  .blog-page .blog-posts-section .blog-pagination .page-numbers a, .blog-page .blog-posts-section .blog-pagination .page-numbers span {
    padding: 10px 12px;
    font-size: 14px;
  }
}
.single-post .single-post-hero {
  position: relative;
  min-height: 1100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
.single-post .single-post-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}
.single-post .single-post-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  padding-top: 180px;
}
.single-post .single-post-hero .hero-content {
  position: relative;
  z-index: 2;
}
.single-post .single-post-hero .hero-content .post-meta-header .post-date {
  margin-bottom: 8px;
}
.single-post .single-post-hero .hero-content .post-meta-header .post-date time {
  color: #fff;
}
.single-post .single-post-hero .single-post-title {
  font-family: "Caladea", serif;
  font-size: 56px;
  font-weight: 700;
  color: white;
  margin: 0 0 30px 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 950px;
}
.single-post .single-post-hero .hero-meta {
  position: relative;
  z-index: 2;
}
.single-post .single-post-hero .hero-meta .meta-top-row {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.single-post .single-post-hero .hero-meta .back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #000000;
  border: none;
  padding: 11px 14px 11px 14px;
  border-radius: 50px;
  font-family: "Lexend Deca", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.single-post .single-post-hero .hero-meta .back-button:hover {
  background: #f5f5f5;
  transform: translateX(-2px);
}
.single-post .single-post-hero .hero-meta .back-button svg {
  width: 16px;
  height: 16px;
}
.single-post .single-post-hero .hero-meta .post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.single-post .single-post-hero .hero-meta .post-categories .category-tag {
  display: inline-block;
  padding: 11px 14px 11px 14px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  border: 2px solid white;
}
.single-post .single-post-hero .hero-meta .post-categories .category-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.single-post .single-post-hero .hero-meta .post-categories .category-tag:visited {
  color: white;
}
.single-post .single-post-content {
  padding: 60px 0 100px;
  background: #ffffff;
  margin-top: -150px;
  position: relative;
  z-index: 3;
}
.single-post .single-post-content .single-post-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: start;
  margin-top: -500px;
}
.single-post .single-post-main {
  background: white;
  border-radius: 15px 15px 0 0;
  padding: 60px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.single-post .single-post-main .single-post-title-fallback {
  font-family: "Caladea", serif;
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.3;
}
.single-post .single-post-main .post-content-text {
  font-family: "Lexend Deca", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 40px;
}
.single-post .single-post-main .post-content-text h1, .single-post .single-post-main .post-content-text h2, .single-post .single-post-main .post-content-text h3, .single-post .single-post-main .post-content-text h4, .single-post .single-post-main .post-content-text h5, .single-post .single-post-main .post-content-text h6 {
  font-family: "Caladea", serif;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.3;
}
.single-post .single-post-main .post-content-text h2 {
  font-size: 32px;
  font-weight: 600;
}
.single-post .single-post-main .post-content-text h3 {
  font-size: 26px;
  font-weight: 600;
  margin-top: 0 !important;
}
.single-post .single-post-main .post-content-text p {
  margin-bottom: 24px;
}
.single-post .single-post-main .post-content-text ul, .single-post .single-post-main .post-content-text ol {
  margin-bottom: 24px;
  padding-left: 30px;
}
.single-post .single-post-main .post-content-text ul li, .single-post .single-post-main .post-content-text ol li {
  margin-bottom: 8px;
}
.single-post .single-post-main .post-content-text blockquote {
  border-left: 4px solid #E85124;
  padding-left: 30px;
  margin: 30px 0;
  font-style: italic;
  color: #626262;
}
.single-post .single-post-main .post-content-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
}
.single-post .single-post-main .post-content-text a {
  color: #E85124;
  text-decoration: underline;
}
.single-post .single-post-main .post-content-text a:hover {
  color: #c43d15;
}
.single-post .single-post-main .post-tags {
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
  font-family: "Lexend Deca", sans-serif;
  font-size: 14px;
  color: #626262;
}
.single-post .single-post-main .post-tags a {
  color: #E85124;
  text-decoration: none;
}
.single-post .single-post-main .post-tags a:hover {
  text-decoration: underline;
}
.single-post .single-post-sidebar .sidebar-content {
  position: sticky;
  top: 100px;
  background: #fff;
  padding: 60px;
  margin-top: 120px;
}
.single-post .single-post-sidebar .sidebar-title {
  font-family: "Caladea", serif;
  font-size: 24px;
  font-weight: 600;
  color: #E85124;
  margin-bottom: 30px;
}
.single-post .single-post-sidebar .related-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.single-post .single-post-sidebar .related-post-card {
  background: white;
  overflow: hidden;
}
.single-post .single-post-sidebar .related-post-card .related-post-thumbnail {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 40px;
}
.single-post .single-post-sidebar .related-post-card .related-post-thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
}
.single-post .single-post-sidebar .related-post-card .related-post-thumbnail .related-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.single-post .single-post-sidebar .related-post-card .related-post-thumbnail:hover .related-post-image {
  transform: scale(1.05);
}
.single-post .single-post-sidebar .related-post-card .related-post-categories {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.single-post .single-post-sidebar .related-post-card .related-post-categories .category-tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px;
  color: #E85124;
  text-decoration: none;
  background: transparent;
  border: 2px solid #E85124;
  transition: all 0.3s ease;
  max-width: fit-content;
}
.single-post .single-post-sidebar .related-post-card .related-post-title {
  margin-bottom: 12px;
}
.single-post .single-post-sidebar .related-post-card .related-post-title a {
  font-family: "Caladea", serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.single-post .single-post-sidebar .related-post-card .related-post-title a:hover {
  color: #E85124;
}
.single-post .single-post-sidebar .related-post-card .related-post-excerpt {
  font-family: "Lexend Deca", sans-serif;
  font-size: 14px;
  color: #626262;
  line-height: 1.5;
  margin-bottom: 15px;
}
.single-post .single-post-sidebar .related-post-card .read-more-btn {
  display: flex;
  padding: 13px 15px 14px 15px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 56px;
  background: #E85124;
  color: #FFF;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  max-width: fit-content;
  text-align: center;
  font-family: "Lexend Deca";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}
.single-post .single-post-sidebar .related-post-card .read-more-btn:hover {
  background: #c43d15;
  transform: translateY(-2px);
}
.single-post .single-post-sidebar .related-post-card .read-more-btn:visited {
  color: #FFF;
}
@media (max-width: 992px) {
  .single-post .single-post-hero {
    min-height: 970px;
  }
  .single-post .single-post-hero .hero-overlay {
    padding-top: 110px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content {
    padding: 40px;
  }
  .single-post .single-post-hero .single-post-title {
    font-size: 42px;
  }
  .single-post .single-post-hero .hero-meta .meta-top-row {
    align-items: flex-start;
    gap: 10px;
  }
  .single-post .single-post-content {
    padding: 40px 0 80px;
    margin-top: -100px;
  }
  .single-post .single-post-content .single-post-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 40px;
  }
  .single-post .single-post-main .post-content-text {
    font-size: 16px;
  }
  .single-post .single-post-sidebar .sidebar-content {
    position: static;
    margin-top: 0;
  }
  .single-post .single-post-sidebar .related-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
  }
}
@media (max-width: 768px) {
  .single-post .single-post-hero {
    min-height: 900px;
  }
  .single-post .single-post-hero .single-post-title {
    font-size: 32px;
  }
  .single-post .single-post-content {
    padding: 30px 0 60px;
    margin-top: -80px;
  }
  .single-post .single-post-content .single-post-wrapper {
    padding: 0;
    border-radius: 15px;
  }
  .single-post .single-post-main {
    padding: 30px;
  }
  .single-post .single-post-main .post-meta-header {
    margin-bottom: 30px;
  }
  .single-post .single-post-main .single-post-title-fallback {
    font-size: 32px;
  }
  .single-post .single-post-sidebar .sidebar-content {
    padding: 30px;
  }
  .single-post .single-post-sidebar .related-posts {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .single-post .single-post-hero {
    min-height: 930px;
  }
  .single-post .single-post-hero .single-post-title {
    font-size: 24px;
  }
  .single-post .single-post-content {
    padding: 20px 0 40px;
  }
  .single-post .single-post-main .post-content-text {
    font-size: 15px;
  }
  .single-post .single-post-main .post-content-text h2 {
    font-size: 24px;
  }
  .single-post .single-post-main .post-content-text h3 {
    font-size: 20px;
  }
}
.resources-header-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.resources-header-section .resources-header-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.resources-header-section .resources-heading {
  color: #000;
  margin-bottom: 30px;
}
.resources-header-section .resources-heading strong {
  border-bottom: 4px solid #E85124;
}
.resources-header-section .resources-description {
  color: #000;
  opacity: 0.7;
}
@media (max-width: 992px) {
  .resources-header-section {
    min-height: 400px;
    padding: 80px 0;
  }
  .resources-header-section .resources-heading {
    font-size: 38px;
  }
  .resources-header-section .resources-description {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .resources-header-section {
    min-height: 350px;
    padding: 60px 0;
  }
  .resources-header-section .resources-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .resources-header-section .resources-description {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .resources-header-section {
    min-height: 300px;
    padding: 40px 0;
  }
  .resources-header-section .resources-heading {
    font-size: 28px;
  }
  .resources-header-section .resources-description {
    font-size: 14px;
  }
}
.resources-cards-section {
  padding: 100px 0;
}
.resources-cards-section.grey {
  background: #F9F9F9;
}
.resources-cards-section .resources-cards-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.resources-cards-section .resources-cards-header .left .resources-cards-title {
  color: #000;
  margin-bottom: 12px;
}
.resources-cards-section .resources-cards-header .left .resources-cards-subtitle {
  color: #000;
  opacity: 0.7;
}
.resources-cards-section .resources-cards-header .right .resources-cards-header-btn .btn-white-outline {
  background: #fff;
  color: #E74A1C;
  border: 1px solid #E74A1C;
  padding: 13px 15px 14px 15px;
  border-radius: 56px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.resources-cards-section .resources-cards-header .right .resources-cards-header-btn .btn-white-outline:hover {
  background: #E74A1C;
  color: #fff;
}
.resources-cards-section .resources-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.resources-cards-section .resources-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #F5F5F5;
}
.resources-cards-section .resources-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.resources-cards-section .resources-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.resources-cards-section .resources-card-title {
  color: #000;
  margin-bottom: 20px;
}
.resources-cards-section .resources-card-description {
  color: #666;
  margin-bottom: 30px;
  flex-grow: 1;
}
.resources-cards-section .resources-card-button {
  margin-top: auto;
}
.resources-cards-section .resources-card-button .btn-orange-outline {
  background: transparent;
  color: #E74A1C;
  border: 1px solid #E74A1C;
  padding: 13px 15px 14px 15px;
  border-radius: 56px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.resources-cards-section .resources-card-button .btn-orange-outline:hover {
  background: #E74A1C;
  color: #fff;
}
@media (max-width: 1200px) {
  .resources-cards-section .resources-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .resources-cards-section .resources-cards-header-btn {
    position: static;
    transform: none;
    margin-top: 20px;
  }
}
@media (max-width: 992px) {
  .resources-cards-section {
    padding: 80px 0;
  }
  .resources-cards-section .resources-cards-header {
    margin-bottom: 60px;
  }
  .resources-cards-section .resources-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .resources-cards-section .resources-card {
    padding: 30px 25px;
  }
  .resources-cards-section .resources-cards-title {
    font-size: 38px;
  }
  .resources-cards-section .resources-cards-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .resources-cards-section {
    padding: 60px 0;
  }
  .resources-cards-section .resources-cards-header {
    margin-bottom: 40px;
  }
  .resources-cards-section .resources-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .resources-cards-section .resources-card {
    padding: 25px 20px;
  }
  .resources-cards-section .resources-cards-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .resources-cards-section .resources-cards-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .resources-cards-section {
    padding: 40px 0;
  }
  .resources-cards-section .resources-cards-title {
    font-size: 28px;
  }
  .resources-cards-section .resources-cards-subtitle {
    font-size: 14px;
  }
  .resources-cards-section .resources-card {
    padding: 20px 15px;
  }
}
.faq-section {
  padding: 100px 0;
}
.faq-section .faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.faq-section .faq-header .left .faq-title {
  color: #000;
  margin-bottom: 12px;
}
.faq-section .faq-header .left .faq-subtitle {
  color: #000;
  opacity: 0.7;
}
.faq-section .faq-header .right .faq-header-btn .btn-orange-outline {
  background: transparent;
  color: #E74A1C;
  border: 1px solid #E74A1C;
  padding: 13px 15px 14px 15px;
  border-radius: 56px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.faq-section .faq-header .right .faq-header-btn .btn-orange-outline:hover {
  background: #E74A1C;
  color: #fff;
}
.faq-section .faq-accordion {
  max-width: 100%;
}
.faq-section .faq-item {
  border-bottom: 1px solid #E5E5E5;
}
.faq-section .faq-item:last-child {
  border-bottom: none;
}
.faq-section .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-section .faq-item .faq-question:hover {
  background-color: rgba(231, 74, 28, 0.02);
}
.faq-section .faq-item .faq-question .faq-question-text {
  color: #000;
  margin: 0;
  flex-grow: 1;
  padding-right: 20px;
}
.faq-section .faq-item .faq-question .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.faq-section .faq-item .faq-question .faq-toggle .faq-icon {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-section .faq-item .faq-question .faq-toggle .faq-icon::before, .faq-section .faq-item .faq-question .faq-toggle .faq-icon::after {
  content: "";
  position: absolute;
  background-color: #000;
  transition: all 0.3s ease;
}
.faq-section .faq-item .faq-question .faq-toggle .faq-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-section .faq-item .faq-question .faq-toggle .faq-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-section .faq-item .faq-answer .faq-answer-content {
  color: #666;
  line-height: 1.6;
}
.faq-section .faq-item.active .faq-question .faq-toggle .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-section .faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 30px;
}
@media (max-width: 992px) {
  .faq-section {
    padding: 80px 0;
  }
  .faq-section .faq-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  .faq-section .faq-header .left .faq-title {
    font-size: 20px;
  }
  .faq-section .faq-header .left .faq-subtitle {
    font-size: 15px;
  }
  .faq-section .faq-item .faq-question {
    padding: 25px 0;
  }
  .faq-section .faq-item .faq-question .faq-question-text {
    font-size: 16px;
  }
  .faq-section .faq-item.active .faq-answer {
    max-height: 400px;
    padding-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-section .faq-header {
    margin-bottom: 30px;
  }
  .faq-section .faq-header .left .faq-title {
    font-size: 18px;
  }
  .faq-section .faq-header .left .faq-subtitle {
    font-size: 14px;
  }
  .faq-section .faq-item .faq-question {
    padding: 20px 0;
  }
  .faq-section .faq-item .faq-question .faq-question-text {
    font-size: 15px;
    padding-right: 15px;
  }
  .faq-section .faq-item .faq-question .faq-toggle {
    width: 20px;
    height: 20px;
  }
  .faq-section .faq-item .faq-question .faq-toggle .faq-icon::before {
    width: 14px;
  }
  .faq-section .faq-item .faq-question .faq-toggle .faq-icon::after {
    height: 14px;
  }
  .faq-section .faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
  }
  .faq-section .faq-item.active .faq-answer .faq-answer-content {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .faq-section {
    padding: 40px 0;
  }
  .faq-section .faq-item .faq-question {
    padding: 15px 0;
  }
  .faq-section .faq-item .faq-question .faq-question-text {
    font-size: 14px;
  }
  .faq-section .faq-item.active .faq-answer {
    max-height: 250px;
    padding-bottom: 15px;
  }
  .faq-section .faq-item.active .faq-answer .faq-answer-content {
    font-size: 13px;
  }
}
.youtube-section {
  max-width: fit-content;
  margin: 0 auto;
  padding: 120px 0;
}
.youtube-section .youtube-title {
  margin-bottom: 12px;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  color: #000;
}
.youtube-section .youtube-subtitle {
  margin-bottom: 24px;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  color: #000;
  opacity: 0.8;
}
