:root {
  --header: #c5613c;
  --main-theme-color: #FF7F50;
  --light-bg: #f8f9fa;
  --header-bg: rgba(40, 40, 40, 0.9);
  --table-hover: #FF7F50;
  --table-subheading-bg: rgba(0, 0, 0, 0.8);
  --feature-gradient: linear-gradient(135deg, #FF7F50 0%, #713823 100%);
  /* Add more as needed */
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #headerSub {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--header);
  }
  
  #headerSub.header-scrolled, #headerSub.header-inner-pages {
    background: var(--header-bg);
  }
  
  #headerSub .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  #headerSub .logo a {
    color: #fff;
  }
  
  #headerSub .logo img {
    max-height: 45px;
  }
  
  @media (max-width: 992px) {
    #headerSub {
      border: 0;
      padding: 15px 0;
    }
  }
  
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro-section {
    position: relative;
    height: 100vh;
  
  }
  
  @media (min-width: 800px) {
    #intro-section:before {
      position: absolute;
      top: 0px;
      right: -350px;
      content: "";
      display: inline-block;
      /*background: url(../img/bg-round.png);
      background-repeat: no-repeat;
      background-position: top right;
      background-size: contain; */
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: 0.65;
    }
  }
  
  @media (max-width: 575.98px) {
    .main-sup {
      font-size: 0.75rem;
      vertical-align: super;
    }
  }
  
  @media (min-width: 576px) {
    .main-sup {
      font-size: 1.5rem;
      vertical-align: super;
    }
  }
  
  
  .subtitle {
    color: #6f8ba4;
    text-transform: uppercase;
    font-weight: 700;
  }
  
  
  .highlight {
    color: var(--main-theme-color);
  }
  
  /* Button Groups */
  .button-styling {
    background-color: var(--main-theme-color);
    color: white;
    border-radius: 25px;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--main-theme-color);
    display: inline-block;
  }
  
  .button-styling:hover {
    text-decoration: none;
    background-color: white;
    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
    color: var(--main-theme-color);
  }
  
/* .nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
} */


/* .mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
} */

/*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/
/* Features Section of the Company */
#feature-section {
    background-image: url(../images/background-2.jpeg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    z-index: -1;
    background: var(--feature-gradient);
    padding: 60px 0;
  }
  
  @media (min-width: 992px) {
    .column-2 {
      margin-right: -75px;
    }
    .column-3 {
      margin-left: -75px;
    }
    .feature-list-left .fixed-containers, .feature-list-right div {
      padding-bottom: 20px;
    }
    .fixed-containers {
      text-align: right;
    }
  }
  
  @media (min-width: 767.98px) and (max-width: 991.98px) {
    .fixed-containers {
      text-align: center;
      margin: 20px 0;
    }
    .feature-list-right div {
      margin: 20px 0;
      text-align: center;
    }
  }
  
  @media (max-width: 767.98px) {
    .fixed-containers, .feature-list-right div {
      text-align: center;
    }
  }
  
    #about-section, .feature-section {
      background-color: var(--light-bg);
    }
  
  .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: #009961;
  }
  
  .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;
  }

  .breadcrumbs h2 {
    font-size: 26px;
    font-weight: 500;
    font-family: "Raleway", sans-serif;
  }

  

/* General Body Properties ------ Start */
h1, h2, h3, h4, h5, h6, .table-subheading, .table-heading {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
  }
  
  h1 {
    font-size: 65px;
  }
  
  h2 {
    font-size: 50px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  h4 {
    font-size: 20px;
  }
  
  h5 {
    font-size: 18px;
  }
  
  @media (max-width: 575.98px) {
    h1 {
      font-size: 50px;
    }
    h2 {
      font-size: 35px;
    }
  }
  
  /*----------------------------------------------------------
  # Table Section
  --------------------------------------------------------------*/
  /* Tables Section */
  .table-subheading {
    background: var(--table-subheading-bg);
    color: white;
    font-size: 18px;
  }
  
  .table-subheading:hover {
    background: var(--table-subheading-bg);
    color: white;
    font-size: 18px;
  }
  
  tbody tr th {
    font-weight: 400;
  }
  
  #tbody tr td {
    text-align: center;
    vertical-align: middle;
  }
  
  tbody tr:hover {
    background-color: var(--table-hover);
    color: white;
  }
  
  .table-heading {
    background-color: var(--header);
    color: white;
    font-size: 20px;
  }

  .portfolio-details .portfolio-description  {
    width: 50%;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  