/*
Theme Name: trueeastdigital
Theme URI: https://trueeastdigital.com/
Author: trueeastdigital
Author URI: https://example.com
Description: A custom WordPress theme
Version: 1.0
Text Domain: my-theme-name
*/

.cs-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.cs-card img {
  width: 100%;
  object-fit: cover;
}

.cs-content {
  padding: 15px;
}

.cs-title {
  font-weight: 600;
}

.cs-tags {
  font-size: 13px;
  color: #777;
}

.cs-card:hover {
  transform: translateY(-5px);
}

/* Custom Tab Style */
.nav-pills .nav-link.active {
  background-color: red;
}
.cs-title {
    font-size: 20px;
        line-height: 35px;
}
.downlode {
    font-size: 21px;
    color: red;
    font-weight: 800;
}

/* WRAP */
#pills-tab {
  background: #f1f1f1;
  border-radius: 50px;
  padding: 5px;
  display: inline-flex;
  gap: 0;
}

/* TAB BUTTON */
#pills-tab .nav-link {
  border-radius: 50px;
  padding: 12px 60px;
  font-weight: 500;
  color: #555;
  background: transparent;
  border: none;
  transition: 0.3s;
}

/* ACTIVE TAB (RED) */
#pills-tab .nav-link.active {
  background: #e60000;
  color: #fff;
}

/* REMOVE DEFAULT BOOTSTRAP BLUE */
.nav-pills .nav-link {
  background: transparent;
}

.nav-pills .nav-link:focus {
  box-shadow: none;
}