.material-detail-container {
    min-height: 100vh;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}
.material-detail-title {
    font-size: 26px;
    background-color: #df336c;
    color: #fff;
    text-align: left;
    margin-left: -10px;
    margin-right: -10px;
    /* margin-top: -2px; */
    padding: 5px 10px;
}
.material-breadcrumb {
    font-size: 14px;
}
.material-breadcrumb a {
    color: #545454;
}
.material-breadcrumb span {
    color: #df336c;
}
.material-img {
    width: 100%;
    min-height: 200px;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 5px;
}
.material-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}
.material-basic {
    flex: 0 0 280px;
    text-align: left;
}
.material-content {
    flex: 1;
        min-width: 300px;
}
/* .material-resoiurces {
    display: inline-block;
    padding: 5px 10px;
    background-color: #df336c;
    color: #fff !important;
} */
/* .Imp-Link {
    padding: 15px 0;
    margin-top: 20px;
    background-color: #f5f7fa;
}
.Imp-Link h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-left: 15px;
}
.Imp-Link .useful_link {
    margin-bottom: 8px;
    padding: 5px 15px;
    background-color: #ffffff;
    display: inline-block;
    border-left: 4px solid #df336c;
    transition: all 0.3s ease;
    width: calc(100% - 5px);
}
.Imp-Link .useful_link:hover {
    background-color: #ecf0f1;
    border-left-color: #df336c;
}
.Imp-Link a {
    color: #df336c !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.Imp-Link a:hover {
    color: #df336c !important;
} */

.useful-links-section {
    padding: 10px;
    margin-top: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.useful-links-section h4 {
    font-size: 18px;
    /* font-weight: 700; */
    color: #e91e63;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.useful-links-section .useful-link {
    margin-bottom: 12px;
    padding: 8px 12px;
    background-color: #fff;
    border-left: 5px solid #e91e63;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.useful-links-section .useful-link:hover {
    background-color: #f8e7eb;
    transform: translateX(5px);
}
.useful-links-section a {
    color: #e91e63 !important;
    text-decoration: none;
    font-size: 15px;
    /* font-weight: 500; */
    transition: color 0.3s ease;
}
.useful-links-section a:hover {
    color: #c2185b !important;
}

.resources-button {
    display: inline-block;
    padding: 5px 25px;
    margin-top: 15px;
    background: linear-gradient(45deg, #df336c, #df336c);
    color: #fff !important;
    font-size: 16px;
    /* font-weight: 600; */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.resources-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.resources-button:hover::before {
    width: 300px;
    height: 300px;
}
.resources-button:hover {
    background: linear-gradient(45deg, #df336c, #df336c);
    transform: scale(1.05);
}

.bamboo-accordian .outerText {
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 10px;
}
.accordion {
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 10px;
}
.accordion .card {
    border: none;
}
.card-header {
    border: none;
    background: transparent;
}
.toggle-icon {
    font-size: inherit;
    line-height: 1.3;
    transition: transform 0.2s ease;
    margin-right: 10px;
}
.accordion-header {
    color: #df336c !important;
    text-decoration: none !important;
    box-shadow: none !important;
    font-size: 18px;
    padding: 0;
    display: flex;
    
}

.outerText > div {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
}

.outerText > div::before {
  content: "•";
  position: absolute;
  left: 0;
  color: black;
  font-size: inherit;
  line-height: 1.5;
}
.mobile-material-img {
    display: none;
    height: 150px;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}
.mobile-material-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.mobile-sec {
    display: none;
    width: 100%;
    text-align: left;
}
@media screen and (max-width: 634px) {
    .mobile-material-img {
        display: block;
    }
    .material-img{
        display: none;
    }
    .mobile-sec {
        display: block;
    }
    .desktop-sec {
        display: none;
    }
}