.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.career-service-content {
    padding-right: 35px;
}

.blog-title {
    margin-bottom: 40px;
}

.blog-title h2 {
    color: var(--blackColor);
    font-family: Var(--heading-fontFamily2);
    font-size: 32px;
    font-weight: 400;
    padding-left: 30px;
    position: relative;
    margin-bottom: 30px;
    border-left: 4px solid rgb(176, 194, 255);
}

.blog-title p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.accessibility-link-widget {
  background: #E8E9ED;
  padding: 5px 0;
  margin: 0 0 30px;
}
.accessibility-link-widget .accessibility-link-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.accessibility-link-widget .accessibility-link-list a.active {
  color: #353688;
}
.accessibility-link-widget .accessibility-link-list a .icon {
  font-size: 20px;
  line-height: 1;
}
.accessibility-link-widget .accessibility-link-list a .icon i {
  line-height: 1;
}
.accessibility-link-widget .accessibility-link-list a:last-child {
  border: none;
}
.accessibility-link-widget .accessibility-link-list a:hover {
  color: #353688;
  letter-spacing: 1px;
}
.accessibility-link-widget h5 {
  padding: 25px;
  color: var(--blackColor);
  font-size: 18px;
  margin-bottom: 0;
  border-bottom: solid 1px var(--whiteColor);
}

.row-student {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row-student>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

@media (min-width: 992px) {
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    
    .col-lg-1-5 {
        flex: 0 0 auto;
        width: 12.5%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

.course_instructor_featured_block_wrapper {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem;
    border-radius: 1rem;
    background: #ffffff;
    width: 330px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.FAQ {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 90%;
  padding: 20px;
   position: relative;
}
.accordian {
  overflow-y: auto; /* Enable vertical scrolling */
  max-height: 470px;
}

.accordian {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px 20px;
/*  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);*/
  border-radius: 8px;
}

.item1 {
  background-color: white;
  margin-bottom: 10px;
  padding: 15px 20px;
  border: 1px solid whitesmoke;
  border-left: 7px solid #bf2228;
  border-radius: 8px;
  position: relative;
  transition: background-color 0.3s ease;
}

.item1.selected {
  background-color: #ffffff;
}
.accordian h5{
   color: #bf2228;
}


.FAQ-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: #bf2228;
}

.faqQuestion {
  font-size: 15px;
  color: #131414;
  text-align: start;
}

.FAQ-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0, 1, 0, 1);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
}

.FAQ-content.show {
  max-height: 9999px;
  transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}

.expandToggle {
  background: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}

.FAQ-ShowMore {
  text-align: center;
  margin-top: 10px;
}

.FAQ-ShowMore button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #06965c;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.FAQ-ShowMore button:hover {
  background-color: #8ee0c4;
  color: black;
  font-weight: 700;
}

/* Fix AddToAny and social media sharing buttons styling */
.a2a_kit a, 
.a2a_kit a:hover,
.share_widget a,
.share_widget a:hover,
.a2a_button,
.a2a_dd,
.addtoany_list a,
.addtoany_list a:hover,
div.addtoany_list a,
div.addtoany_list a:hover {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 4px !important;
    text-decoration: none !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.a2a_kit a .a2a_svg,
.share_widget a .a2a_svg,
.a2a_kit a svg,
.share_widget a svg,
.a2a_svg,
.a2a_kit a img,
.share_widget a img,
.addtoany_list a .a2a_svg,
.addtoany_list a svg,
.addtoany_list a img {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    width: 32px !important;
    height: 32px !important;
}

/* For small / customized versions */
.a2a_kit.a2a_kit_size_24 a .a2a_svg,
.a2a_kit.a2a_kit_size_24 a svg,
.a2a_kit.a2a_kit_size_24 a img,
.addtoany_list.a2a_kit_size_24 a .a2a_svg,
.addtoany_list.a2a_kit_size_24 a svg,
.addtoany_list.a2a_kit_size_24 a img {
    width: 24px !important;
    height: 24px !important;
}

.a2a_kit.a2a_kit_size_16 a .a2a_svg,
.a2a_kit.a2a_kit_size_16 a svg,
.a2a_kit.a2a_kit_size_16 a img,
.addtoany_list.a2a_kit_size_16 a .a2a_svg,
.addtoany_list.a2a_kit_size_16 a svg,
.addtoany_list.a2a_kit_size_16 a img {
    width: 16px !important;
    height: 16px !important;
}

/* Hide duplicate social sharing buttons automatically appended to content */
.singleContentBlock .addtoany_share_save_container {
    display: none !important;
}

/* Inline SVG share icon links */
.share-icon-link {
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 4px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    line-height: 1 !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.share-icon-link:hover {
    opacity: 0.82 !important;
    transform: translateY(-2px) !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.share-icon-link svg {
    display: block !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
}
