/* Global Colors */
:root {
    --background-color: #ffffff;
    --background-color-rgb: 255, 255, 255;
    --default-color: #212529;
    --default-color-rgb: 33, 37, 41;
    --primary-color: #e84545;
    --primary-color-rgb: 232, 69, 69;
    --secondary-color: #32353a;
    --secondary-color-rgb: 50, 53, 58;
    --contrast-color: #ffffff;
    --contrast-color-rgb: 255, 255, 255;
  }

  /* Nav Menu Colors */
  :root {
    --nav-color: #3a3939;
    --nav-hover-color: #e84545;
    --nav-dropdown-color: #3a3939;
    --nav-dropdown-hover-color: #e84545;
    --nav-dropdown-background-color: #ffffff;
    --nav-mobile-background-color: #ffffff;
  }

/* Services Section - Home Page
------------------------------*/
.services .service-item {
    position: relative;
    padding-top: 40px;
  }

  .services .service-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(var(--default-color-rgb), 0.1);
  }

  .services .service-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-right: 5px solid var(--background-color);
  }

  .services .service-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-right: 50px;
    line-height: 0;
  }

  .services .service-item .icon i {
    color: rgba(var(--default-color-rgb), 0.7);
    font-size: 56px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
  }

  .services .service-item .icon:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    background: rgba(var(--primary-color-rgb), 0.3);
    border-radius: 50px;
    z-index: 1;
    bottom: -15px;
    right: -15px;
    transition: 0.3s;
  }

  .services .service-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }

  .services .service-item .title a {
    color: var(--secondary-color);
  }

  .services .service-item .title a:hover {
    color: var(--primary-color);
  }

  .services .service-item .description {
    line-height: 24px;
    font-size: 14px;
  }

/*--------------------------------------------------------------
# Services Details Page
--------------------------------------------------------------*/
/* Service-details Section - Services Details Page
------------------------------*/
.service-details .service-box {
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(var(--default-color-rgb), 0.12);
  }

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

  .service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid rgba(var(--default-color-rgb), 0.08);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .service-details .services-list a {
    color: rgba(var(--default-color-rgb), 0.8);
    background-color: rgba(var(--default-color-rgb), 0.04);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    transition: 0.3s;
  }

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

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

  .service-details .services-list a.active {
    color: var(--contrast-color);
    background-color: var(--primary-color);
  }

  .service-details .services-list a.active i {
    color: var(--contrast-color);
  }

  .service-details .services-list a:hover {
    background-color: rgba(var(--primary-color-rgb), 0.05);
    color: var(--primary-color);
  }

  .service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
  }

  .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: var(--primary-color);
  }

  .service-details .download-catalog a:hover {
    color: var(--primary-color);
  }

  .service-details .help-box {
    background-color: var(--primary-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
  }

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

  .service-details .help-box h4,
  .service-details .help-box a {
    color: var(--contrast-color);
  }

  .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: var(--primary-color);
  }
