/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #cb4524;
  text-decoration: none;
}

a:hover {
  color: #cb4524;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .logo-hidden {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Chart Section
--------------------------------------------------------------*/
.chart-container {
  width: 70%;
  max-width: 500px;
  margin: auto;
}

.chart-info {
  flex: 1;
  padding: 20px;
}

.strongheart-chart-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

#netOilChart {
  display: block;
  width: 100%; /* Makes the chart responsive */
  height: auto; /* Adjusts height automatically */
}

@media (min-width: 1000px) {
  .chart-info {
    margin-top: 100px !important;
  }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .chart-container {
    width: 100%; /* Increase width on smaller screens */
    margin: 0;
  }

  .chart-info p {
    font-size: 0.9em; /* Slightly smaller text for mobile */
  }
}

@media (max-width: 480px) {
  .chart-container {
    width: 100% !important; /* Full width on very small screens */
  }

  .chart-info {
    padding: 5px;
  }

  .chart-info p {
    font-size: 0.85em;
  }

  #netOilChart {
    height: 350px !important; /* Increase height for better visibility on mobile */
  }
}

/*--------------------------------------------------------------
# Table Section
--------------------------------------------------------------*/
.strongheart-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.strongheart-info, .strongheart-table-container {
  flex: 1;
  min-width: 300px;
}

.strongheart-info {
  max-width: 50%;
}

/* Container for table with horizontal scroll on small screens */
.strongheart-table-container {
  flex: 1;
  border: 2px solid #ff4d4d;
  border-radius: 12px;
  padding: 10px;
  overflow-x: auto; /* Enables horizontal scrolling on small screens */
}

/* Ensure the table width does not exceed its container */
.strongheart-table {
  width: 100%;
  line-height: 1;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  min-width: 500px; /* Minimum width for responsiveness */
}

.strongheart-table th, .strongheart-table td {
  padding: 10px 12px;
  text-align: center;
  color: #333333;
}

/* Adjust padding on smaller screens */
@media (max-width: 768px) {
  .strongheart-table th, .strongheart-table td {
    padding: 8px 10px;
  }

  /* Stack table and info container vertically on small screens */
  .strongheart-row {
    flex-direction: column;
  }

  .strongheart-info, .strongheart-table-container {
    max-width: 100%; /* Make both sections full width on mobile */
  }
}

.strongheart-table .main-row {
  font-weight: bold;
  background-color: rgba(255, 77, 77, 0.1); /* Transparent red background */
}

.strongheart-table tbody tr:hover {
  background-color: rgba(255, 77, 77, 0.05); /* Light red background on hover */
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
  color: white;
  background: url('assets/img/testimonials-bg.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.testimonials span {
  color: white;
  font-weight: normal;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, black, transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background-attachment: fixed !important;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, white, transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, white, transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, white, transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, white, transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: white;
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
/* Carousel Section */
/* Default: Hide the mobile version */
.mobile-version {
  display: none;
}

/* Show the mobile version and hide the desktop version on small screens */
@media (max-width: 768px) {
  .desktop-version {
    display: none;
  }
  .mobile-version {
    display: block;
  }
}

/* Desktop Styles */
/*--------------------------------------------------------------
# Desktop Version Carousel
--------------------------------------------------------------*/
/* General Container Styles */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

.carousel-background {
  background: linear-gradient(180deg, rgba(0, 0, 0) 70%, rgba(0, 0, 0) 70%);
  padding-bottom: 40px;
}

/* Carousel Info Section */
.carousel-info {
  padding: 90px 40px 130px 40px;
  color: white;
}

.carousel-info h2 {
  color: white;
  font-size: 35px;
  font-weight: bold;
}

.carousel-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.carousel-info ul li {
  margin-bottom: 10px;
}

/* Update the CSS for the desktop version tabs */
.desktop-version .carousel-tabs ul li {
  background-color: transparent;
  color: white;
  padding: 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  position: relative; /* Set relative positioning to add the line */
}

/* For the active tab with the gray line */
.desktop-version .carousel-tabs ul li.active {
  background-color: white;
  color: black;
  border-radius: 10px 10px 0 0;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

.desktop-version .carousel-tabs ul li.active::after {
  content: '';
  position: absolute;
  bottom: -1px; /* Positioning the line at the bottom */
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgb(215, 215, 215); /* Set the color of the line */
}

/* Adjust the width to match the carousel-details */
.desktop-version .carousel-details {
  border-top: 1px solid gray; /* Ensure the line is the same color */
  margin-top: 0;
}

/* Carousel Details with Dividers and Centralized */
.carousel-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: white;
  color: black;
  border-radius: 0 0 10px 10px;
  text-align: center;
}

.carousel-details div {
  flex: 1;
  text-align: center;
}

.carousel-details div:not(:first-child) {
  border-left: 1px solid #ddd;
  padding-left: 20px;
}

/* Button Style */
.cta-btn {
  display: inline-block;
  background-color: red;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-btn:hover {
  background-color: rgb(144, 0, 0);
  color: white;
}

.btn-cards {
  width: 40px !important;
}

.cta-btn i {
  font-size: 18px;
}

/* Mobile Styles */
.mobile-version .carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.mobile-version .carousel-background {
  background: linear-gradient(180deg, rgba(0, 0, 0) 70%, rgba(0, 0, 0) 70%);
  padding: 30px 0;
  margin: 0;
}

.mobile-version .carousel-info {
  margin: 0 10px;
}

.mobile-version .carousel-info ul {
  padding: 0;
  line-height: 2rem;
}

.mobile-version .accordion-button {
  background-color: white;
  color: black;
  font-weight: bold;
}

.mobile-version .accordion-button:focus {
  box-shadow: none;
}

.mobile-version .cta-btn {
  display: inline-block;
  width: calc(100% - 20px);
  padding: 10px 20px;
  background-color: red;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin: 10px;
}

.mobile-version .accordion {
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 10px;
}

.mobile-version .accordion-body {
  margin-left: 10px;
  margin-right: 10px;
}

.mobile-version .accordion-header {
  margin: 0 10px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #cb4524;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* General styles for the top bar */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Default layout: space between elements */
  background-color: #0f101e;
  color: white;
  padding: 10px 20px;
  font-size: 13px;
  opacity: 0.9;
  position: relative;
}

/* Center oil prices */
.oil-prices {
  position: absolute; /* Center in the top bar */
  left: 50%; /* Move to the center horizontally */
  transform: translateX(-50%); /* Adjust for exact centering */
  display: flex;
  gap: 10px; /* Add spacing between prices */
  align-items: center;
}

/* Phone number on the right */
.phone-number {
  margin-left: auto; /* Push the phone number to the far right by default */
  margin-right: 90px; /* Add 80px margin on the right */
}

.phone-number a {
  color: white;
  text-decoration: none;
  display: flex; /* Align icon and text horizontally */
  align-items: center;
  gap: 5px; /* Add spacing between icon and text */
}

.phone-number a:hover {
  text-decoration: underline; /* Add underline on hover */
}

/* Responsive design for mobile */
@media (max-width: 767px) {
  .oil-prices {
    display: none; /* Hide oil prices on mobile */
  }

  .top-bar {
    justify-content: center; /* Center elements on mobile */
  }

  .phone-number {
    margin-left: 0; /* Reset left margin */
    margin-right: 0; /* Remove right margin for centering */
  }

  .phone-number a {
    font-size: 12px; /* Adjust font size for smaller screens */
  }
}

#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.9);
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #cb4524;
}

#header .logo img {
  max-height: 90px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 8px 30px !important;
  margin-left: auto !important;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #cb4524;
}

.get-started-btn:hover {
  background: #cb4524;
  color: #fff !important;
}

/* Hide the mobile button on larger screens */
.mobile-button {
  display: none !important;
}

/* Hide the desktop button on smaller screens */
@media (max-width: 767px) {
  .desktop-button {
    display: none !important;
  }
  .mobile-button {
    display: inline-block !important;
  }
  .get-started-btn {
    display: none;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
  display: flex;
  justify-content: center !important; /* Center the content horizontally */
}

.navbar ul {
  margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #cb4524;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #cb4524;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: #cb4524;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: #cb4524;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-btn {
  color: #fff;
  background-color: #b43c1e;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #b43c1e;
  margin-bottom: 10px;
}

.hero-btn:hover {
  background: #77210c;
  border: 2px solid #77210c;
  color: #ffffff;
}

.btn-hiw {
  color: #fff;
  background: #1a6c24;
  border-radius: 4px;
  padding: 7px 74px 8px 74px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #1a6c24;
  margin-bottom: 80px;
}

.btn-hiw:hover {
  background: #117f19;
  border: 2px solid #117f19;
  color: #ffffff;
}

@media (max-width: 992px) {
  .hero-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

#hero {
  width: 100%;
  position: relative;
  padding: 120px 0 0 0;
}

#hero:before {
  content: "";
  background: linear-gradient(rgba(12, 13, 14, 0.75), rgba(12, 13, 14, 0.2)), url("../img/hero2.jpg") fixed center center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 140px 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(255, 255, 255, 0.88);
}

#hero h1 span {
  color: #fff;
  border-bottom: 4px solid #cb4524;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #cb4524;
}

#hero .btn-get-started:hover {
  background: #cb4524;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    max-width: 50%;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.us-map-op {
  padding-top: 20px;
  height: 100% auto;
}

.content-opp {
  padding-left: 88px;
}

.img-fluid {
  border-radius: 3px;
}

section {
  overflow: hidden;
  padding: 30px 0 30px 0;
}

.section-title {
  padding-bottom: 50px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #cb4524;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

@media (max-width: 600px) {
  .about-video {
    display: none;
  }
}

.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #cb4524;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.2s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cb4524;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.bx--bxs-quote-alt-left {
  display: inline-block;
  width: 1em;
  height: 1em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.5 10c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.318.142-.686.238-1.028.466c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.945c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 6.5 10zm11 0c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.317.143-.686.238-1.028.467c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.944c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 17.5 10z' fill='%23000'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.bxs--quote-alt-right {
  display: inline-block;
  width: 1em;
  height: 1em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m21.95 8.721l-.025-.168l-.026.006A4.5 4.5 0 1 0 17.5 14c.223 0 .437-.034.65-.065c-.069.232-.14.468-.254.68c-.114.308-.292.575-.469.844c-.148.291-.409.488-.601.737c-.201.242-.475.403-.692.604c-.213.21-.492.315-.714.463c-.232.133-.434.28-.65.35l-.539.222l-.474.197l.484 1.939l.597-.144c.191-.048.424-.104.689-.171c.271-.05.56-.187.882-.312c.317-.143.686-.238 1.028-.467c.344-.218.741-.4 1.091-.692c.339-.301.748-.562 1.05-.944c.33-.358.656-.734.909-1.162c.293-.408.492-.856.702-1.299c.19-.443.343-.896.468-1.336c.237-.882.343-1.72.384-2.437c.034-.718.014-1.315-.028-1.747a7.028 7.028 0 0 0-.063-.539m-11 0l-.025-.168l-.026.006A4.5 4.5 0 1 0 6.5 14c.223 0 .437-.034.65-.065c-.069.232-.14.468-.254.68c-.114.308-.292.575-.469.844c-.148.291-.409.488-.601.737c-.201.242-.475.403-.692.604c-.213.21-.492.315-.714.463c-.232.133-.434.28-.65.35l-.539.222c-.301.123-.473.195-.473.195l.484 1.939l.597-.144c.191-.048.424-.104.689-.171c.271-.05.56-.187.882-.312c.317-.143.686-.238 1.028-.467c.344-.218.741-.4 1.091-.692c.339-.301.748-.562 1.05-.944c.33-.358.656-.734.909-1.162c.293-.408.492-.856.702-1.299c.19-.443.343-.896.468-1.336c.237-.882.343-1.72.384-2.437c.034-.718.014-1.315-.028-1.747a7.571 7.571 0 0 0-.064-.537'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #cb4524;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  width: 100%;
}

.services .row > .col {
  flex: 1 1 0; /* Make all columns flexible and take equal space */
}

.services .icon-box .icon {
  margin: 0 auto;
  background: #cb4524;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #cb4524;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.help-form {
  padding: 88px 0 !important;
}

.service-details .service-box {
  padding: 20px;
  box-shadow: 0px 2px 20px color-mix(in srgb, rgba(0, 0, 0), transparent 88%);
}

.help-box {
  box-shadow: 0px 2px 20px color-mix(in srgb, rgba(0, 0, 0), transparent 88%);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, rgba(0, 0, 0), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .service-box a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, rgba(0, 0, 0), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .service-box a:first-child {
  margin-top: 0;
}

.service-details .service-box a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .service-box a.active {
  color: #cb4524;
}

.service-details .service-box a.active i {
  color: #cb4524;
}

.service-details .service-box a:hover {
  background-color: color-mix(in srgb, #cb4524, transparent 95%);
  color: #cb4524;
}

.service-details .download-catalog a {
  color: rgba(0, 0, 0);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, rgba(0, 0, 0), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: #444444;
}

.service-details .download-catalog a:hover {
  color: #444444;
}

.service-details .help-box {
  color: #444444;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: #444444;
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: #cb4524;
}

/*--------------------------------------------------------------
# Tax inner page
--------------------------------------------------------------*/

.service-details h3 {
  margin: 5px;
  padding: 20px 0;
}

.tax-table .counts-adv {
  transition: all ease-in-out 0.3s;
}

.tax-table th {
  padding-left: 10px;
  min-width: 18em;
  font-weight: normal;
}

@media (max-width: 991px) {
  .tax-table th {
    min-width: 9em;
    padding: 0px;
  }

  .tax-table td {
    padding-left: 0px;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

.tax-table td {
  padding: 5px;
}

.tax-adv h4 span, span {
  color: #cb4524;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Operations
--------------------------------------------------------------*/

.opportunities {
  margin: 0 auto;
}

.container-table {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.op-table {  
  flex: 1;
  width: 90%;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background-color: #fff;
}

.table-header {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.op-table th, .op-table td {
  padding: 10px;
  font-size: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.op-table th {
  text-align: left;
  background-color: #f8f8f8;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
  border-radius: 40%;
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, black, transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.call-to-action p {
  color: white;
}

.call-to-action .cta-btn {
  letter-spacing: 1px;
  max-width: 300px;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px auto;
  border: 2px solid white;
  color: white;
}

.call-to-action .cta-btn:hover {
  background: rgb(153, 1, 1);
  color: white;
  border: 2px solid white;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts-adv {
  margin: 0 auto;
  max-width: 40em;
  line-height: 2;
}

.counts-tax {
  padding: 50px;
  margin: 0 auto;
  max-width: 70em !important;
  line-height: 2;
}

.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts .content p {
  margin-bottom: 0;
}

.count-box span {
  margin-left: 10px;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #cb4524;
  float: left;
}

.counts .content .count-box span {
  font-size: 30px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
}

.counts-profit {
  margin-left: 0px !important;
  margin-bottom: 10px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  color: #3b3b3b;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background: url("../img/counts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

.count-box .count-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.op-words {
  margin-left: 10px;
  padding-left: 10px;
}

.count-box .counter-text {
  margin: 10px 0 0 0;
  text-align: left;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.purecounter {
  margin-left: 10px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .team-member {
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px color-mix(in srgb, #4b4240, transparent 90%);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, #312927, transparent 25%);
  color: color-mix(in srgb, #ddd9d8, transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: #c9aea7;
  background: #cb4524;
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

.bw-to-color {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.bw-to-color:hover {
  filter: grayscale(0%);
}

/* Ensure team members have equal widths on larger screens */
@media (min-width: 992px) {
  .team .col-lg {
    flex: 1 1 20%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  color: #cb4524;
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, #cb4524, transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs {
  padding: 210px 0 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  color: white;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 0px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
#faq {
  padding: 60px 0;
}

#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq .faq-list li {
  border-bottom: 1px solid #e9eaed;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #f82249;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #e0072f;
  transition: 0.3s;
}

#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

#faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

#faq .faq-list .icon-show {
  display: none;
}

#faq .faq-list .collapsed {
  color: black;
}

#faq .faq-list .collapsed:hover {
  color: #f82249;
}

#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# US-Map
--------------------------------------------------------------*/

#us-map {
  width: 98%;
}

#info-box {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border: 1px solid #ccc;
  display: none;
  pointer-events: none;
}

path:hover, circle:hover {
  stroke: #646464 !important;
  stroke-width:2px;
  stroke-linejoin: round;
  fill: #646464 !important;
  cursor: pointer;
}

#path67 {
  fill: none !important;
  stroke: #A9A9A9 !important;
  cursor: default;
}

.highlight:hover {
  stroke: #691500 !important;
  fill: #691500 !important;
}

/*--------------------------------------------------------------
# Contact-Page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-page .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact-page .info {
  background: #fff;
}

.contact-page .info i {
  font-size: 20px;
  color: #cb4524;
  float: left;
  width: 44px;
  height: 44px;
  border: 1px solid #cb4524;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s;
}

.contact-page .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.contact-page .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #444444;
}

.contact-page .info:hover i {
  background: #cb4524;
  color: #fff;
}

.contact-page .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.contact-page .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact-page .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact-page .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact-page .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #cb4524;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact-page .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact-page .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #cb4524;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact-page .php-email-form input,
.contact-page .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact-page .php-email-form input:focus,
.contact-page .php-email-form textarea:focus {
  border-color: #cb4524;
}

.contact-page .php-email-form input {
  height: 44px;
}

.contact-page .php-email-form textarea {
  padding: 10px 12px;
}

.contact-page .php-email-form button[type=submit] {
  background: #cb4524;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact-page .php-email-form button[type=submit]:hover {
  background: #cb4524;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Technology page
--------------------------------------------------------------*/

.tech .content ul {
  list-style: none;
  padding: 0;
}

.tech .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.tech .content ul {
  list-style: none;
  padding: 0;
}

.tech .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.tech .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #cb4524;
}

.tech .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .badge {
  margin-left: 20px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-disclaimer {
  font-size: small;
}

#footer .footer-top .footer-info h3 span {
  color: #cb4524;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #cb4524;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 20px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #cb4524;
  font-size: 12px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #cfcfcf;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #cb4524;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 5px;
  background: #fff;
  padding: 10px;
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Adds space between fields */
}

#footer .footer-top .footer-newsletter form input[type=email],
#footer .footer-top .footer-newsletter form input[type=tel] {
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  border-radius: 4px;
  box-sizing: border-box;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  border: 0;
  padding: 10px;
  font-size: 16px;
  background: #cb4524;
  color: #151515;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 0 0 4px 4px;
  width: 100%; /* Makes the button span the entire width */
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #cb4524;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .logo {
  height: 44px;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .row {
  display: flex;
  flex-wrap: wrap;
}

.blog .entry {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(25% - 20px); /* Ensures 4 columns per row with 20px spacing */
  box-sizing: border-box;
  min-height: 450px; /* Set a fixed minimum height for uniformity */
}

.blog .entry .entry-img {
  max-height: 220px;
  margin: -20px -20px 20px -20px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 22px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 10px 0;
}

.blog .entry .entry-title a {
  color: #111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #cb4524;
}

.blog .entry .entry-meta {
  margin-bottom: 10px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 10px;
}

.blog .entry .entry-meta i {
  font-size: 14px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #847872;
  font-size: 12px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content {
  /* Add padding to make space for the Read More button */
  padding-bottom: 40px;
}

.blog .entry .entry-content p {
  line-height: 20px;
}

.blog .entry .entry-content .read-more {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #cb4524;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #cb4524;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #1e1e1e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #cb4524;
}

@media (max-width: 768px) {
  .blog .entry {
    flex: 1 1 calc(50% - 20px); /* 2 columns on small screens */
  }
}

@media (max-width: 576px) {
  .blog .entry {
    flex: 1 1 100%; /* 1 column on extra small screens */
  }
}

/*--------------------------------------------------------------
# Calculator
--------------------------------------------------------------*/
/* Slider Container */
.slider-container {
  position: relative;
  width: 100%;
  line-height: 2rem;
  width: 500px;
}

/* Centering the Income Input Group */
.input-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.input-group label {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.input-wrapper {
  width: 80%;
  max-width: 300px; /* Limit the width to avoid it being too wide */
  text-align: center;
}

input[type="text"],
input[type="number"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px; 
  background: #ddd; /* Initial gray background */
  border-radius: 5px;
  outline: none;
  margin: 0;
  transition: background 0.3s ease;
  position: relative;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: white;
  border: 2px solid red;  /* Red border with white inside */
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: white;
  border: 2px solid red;
  border-radius: 50%;
  cursor: pointer;
}

/* Slider Labels */
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 8px;
}

label {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Small Vertical Line for Intermediate Values */
.slider-labels span {
  position: relative;
  display: inline-block;
}

.slider-labels span::before {
  content: '';
  width: 1px;
  height: 6px;
  background-color: #000;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Results Container */

.results-div {
  margin: 30px 50px 10px 50px;
}

.results-container {  
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.results-list-row {
  display: flex;
  justify-content: space-between;
  color: #333;
  padding: 0 !important;
}

.results-list-row div {
  margin: 3px;
  text-align: center; /* Center the text within each div */
}

/* Individual result labels */
.results-list-row span {
  display: block;
  color: #555; /* Darker gray for labels */
  font-size: 14px; /* Smaller font size for the labels */
  margin-bottom: 5px;
}

/* Result Value */
.results-list-row strong {
  font-size: 18px; /* Larger font size for the value */
  color: rgb(255, 87, 34); /* Red color */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  /* Adjust the results section to stack in a column */
  .results-div {
    flex-direction: column;
    align-items: flex-start;
  }

  .results-list-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .results-list-row div {
    width: 100%;
    text-align: left; /* Align text to the left for better readability on mobile */
    margin-bottom: 10px;
  }

  .invest-button {
    width: 50%;
    padding: 10px 0 !important;
    margin-left: 0 !important;
    margin-bottom: 20px;
  }

  /* Adjust the Key Benefits section for mobile */
  .styled-list li {
    font-size: 14px; /* Smaller font size for mobile */
    line-height: 1.2;
  }

  .key-benefits {
    display: none !important;
  }

  .styled-list {
    padding: 50px 20px; /* Add some padding to the list */
  }

  /* Adjust the margins and alignment for mobile */
  .slider-container {
    width: 100%; /* Make sliders full-width on mobile */
  }

  .results-div {
    margin: 0 !important;
  }

  /* Adjust the header and HR line for mobile */
  .features h3 {
    font-size: 18px;
    margin: 40px 0 5px 0;
  }

  .calculator {
    width: 100%;
    max-width: none;
  }
}

/* Feature List Styles */
.styled-list {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.styled-list li {
  padding: 10px 0;
  font-size: 17px;
  line-height: 1.5;
}

/* Buttons */
.cta {
  background: red;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin-left: 50px;
}

.cta:hover, .invest-button:hover {
  background: #780c00;
  color: white;
}