:root {
  --card-title: #2E3868;
  --card-text: #6D6D6D;
  --card-bg-hover: #1480EC;
  --card-tilte-hover: #fff;
  --card-text-hover: #fff;
  --card-img-backdrop: #DEEEFF;
  --card-img-backdrop-hover: #ffffff20;
  --benefits-bg: #1264E3;
  --benefits-bg-border: #1480EC;
}

/* Solutions */

#solutions-section-home,
#solutions-section-home h2 {
  font-family: var(--gothambold);
}

#solutions-section-home p {
  font-family: var(--gothambook);
}

#solutions-section-home .service-card {
  border-radius: 10px;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.1s ease-in-out;
}

#solutions-section-home .service-card .card-title {
  color: #2E3868;
  font-family: var(--roboto-font);
  font-weight: 700;
  text-transform: capitalize;
  transition: all 0.1s ease-in-out;
}

#solutions-section-home .service-card .card-text {
  color: #6D6D6D;
  font-family: var(--rubik-font);
  font-weight: 400;
  transition: all 0.1s ease-in-out;
}

#solutions-section-home .service-card .img-backdrop {
  border-radius: 50%;
  height: 100px;
  width: 100px;
  background-color: var(--card-img-backdrop);
}

#solutions-section-home .service-card .img-backdrop img {
  aspect-ratio: 1/1;
  object-fit: contain;
  height: auto;
  width: 100%;
}

#solutions-section-home .service-card:hover {
  background-color: var(--card-bg-hover);
  transition: all 0.2s ease-in-out;
}

#solutions-section-home .service-card:hover .card-title {
  color: var(--card-tilte-hover);
  transition: all 0.1s ease-in-out;
}

#solutions-section-home .service-card:hover .card-text {
  color: var(--card-text-hover);
  transition: all 0.1s ease-in-out;
}

#solutions-section-home .service-card:hover .img-backdrop {
  background-color: var(--card-img-backdrop-hover);
}

#solutions-section-home .service-card:hover .img-backdrop img {
  filter: brightness(0) invert(1);
}

/* Integrated Solution */
#integrated-section-home .integrated-solution-backdrop {
  background-image: url(../../images/home/section-3-backdrop.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  border-radius: 20px;
}

#integrated-section-home .integrated-solution-heading {
  color: #fff;
  font-family: var(--roboto-font);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: capitalize;
  text-decoration: underline;
}

#integrated-section-home .integrated-solution-text {
  color: #ffffff90;
  font-family: var(--roboto-font);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-decoration: underline;
  text-transform: capitalize;
}

/* Time Sheet Section */

#timesheet-section-home,
#timesheet-section-home h2 {
  font-family: var(--gothambold);
}

#timesheet-section-home p {
  font-family: var(--gothambook);
}

#timesheet-section-home .timesheet-benefits-backdrop {
  background-color: var(--card-img-backdrop);
}

#timesheet-section-home .timesheet-benefits-backdrop .key-benefit-line {
  background-color: var(--benefits-bg);
  border-radius: 8px;
  border: 1px solid var(--benefits-bg-border);
  color: var(--card-tilte-hover);
  font-family: var(--gothambold);
}

#timesheet-section-home .timesheet-benefits-backdrop .report-card {
  box-shadow: 0px 25px 39px rgba(0, 0, 0, 0.098043);
  border-radius: 28px;
}

#timesheet-section-home .timesheet-benefits-backdrop .report-card span {
  background: #00740A10;
  mix-blend-mode: normal;
  color: #00000040;
  font-weight: 400;
  font-family: var(--rubik-font);
  padding: 0 6px;
}

#timesheet-section-home .timesheet-benefits-backdrop .report-card .search-backdrop {
  background: #A0FFDD;
  box-shadow: 2px 2px 4px rgba(1, 85, 36, 0.317406);
  border-radius: 28px;
  height: 100%;
  color: 000;
}

#timesheet-section-home .timesheet-benefits-backdrop .report-card .report-label {
  font-family: var(--rubik-font);
  font-weight: 700;
}

#timesheet-section-home .timesheet-benefits-backdrop .report-card .report-icon {
  background: #00740A10;
  box-shadow: 2px 2px 4px rgba(1, 85, 36, 0.317406);
  border-radius: 12px;
  height: 50px;
  width: 50px;
  font-size: 1.5rem;
  color: #00740A;
}

.vertical-line {
  border-left: 1px solid #00000040;
  height: 35px;
  display: block;
}

@media (max-width: 992px) {}

@media (max-width: 768px) {
  #main-home h2 {
    font-size: 2rem !important;
  }

  #main-home h3 {
    font-size: 1.8rem !important;
  }

  #main-home h4 {
    font-size: 1.5rem !important;
  }

  #main-home h5 {
    font-size: 1.3rem !important;
  }

  #main-home h6 {
    font-size: 1.2rem !important;
  }

  #main-home p,
  #main-home span {
    font-size: 1.1rem !important;
  }

  .vertical-line {
    transform: rotate(90deg);
  }
}

@media (max-width: 576px) {}

@media (max-width: 480px) {
  #main-home h2 {
    font-size: 1.5rem !important;
  }

  #main-home h3 {
    font-size: 1.3rem !important;
  }

  #main-home h4 {
    font-size: 1.1rem !important;
  }

  #main-home h5 {
    font-size: 1rem !important;
  }

  #main-home h6 {
    font-size: 0.9rem !important;
  }

  #main-home p,
  #main-home span {
    font-size: 0.8rem !important;
  }
}