/* Practical Training Programs Banner - Start */

section.Practical_Training_Programs {
    background: var(--White, #FFF);
    padding-block: 72px;
}

.Practical_Training_Programs_Left {}

.Practical_Training_Programs_Left h1 {
    color: var(--Text-Grey-900, #101828);

/* Display lg / Bold */
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px; /* 125% */
    letter-spacing: -0.96px;
    margin-bottom: 16px;
}

.Practical_Training_Programs_Left h1 span {
    color: var(--Theme-Blue-500, #3A58EF);

/* Display lg / Bold */
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.96px;
}

.Practical_Training_Programs_Left ul {
    margin-bottom: 24px;
}

.Practical_Training_Programs_Left ul li {
    list-style: none;
    display: flex;
    align-items: start;
    gap: 8px;
    color: var(--Text-Grey-700, #344054);

/* Text md / Regular */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 12px;
}

.Practical_Training_Programs_Left ul li svg {
    min-width: 20px;
}

.Practical_Training_Programs_Btns {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 24px;
}

.Access_Unlimited_Btn_Box {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.Access_Unlimited_Btn_Box a.Access_Unlimited_Btn {
    border-radius: 4px;
    background: var(--Theme-Blue-500, #3A58EF);

/* Shadow/xs */
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    padding: 12px 20px;
    color: var(--White, #FFF);

/* Text md / Semibold */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}

.Access_Unlimited_Btn_Box a.Access_Unlimited_Btn:hover {
    border-radius: 4px;
    background: var(--Theme-Blue-800, #182878);

/* Shadow/xs */
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

.Individual_Course_Btn_Box {}

.Individual_Course_Btn_Box a.Individual_Course_Btn {
    border-radius: 4px;
    border: 1px solid var(--Theme-Blue-500, #3A58EF);
    padding: 12px 20px;
    color: var(--Theme-Blue-500, #3A58EF);

/* Text md / Semibold */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    display: inline-block;
}

.Access_Unlimited_Btn_Box label {
    color: var(--Text-Grey-500, #5D667B);

/* Text md / Semibold */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    margin-top: 8px;
}

.Individual_Course_Btn_Box a.Individual_Course_Btn:hover {
    background: var(--Theme-Blue-500, #3A58EF);
    color: #fff;
}

.Practical_Training_Programs_Right iframe {
    border-radius: 24px;
}




/* Trending Topics for Today’s CPAs - Start */

section.Trending_Topics_Todays .icons a {
    background: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
}
.trending_topics_card:hover .icons a{
        background: #3A58EF;   
        transition: all .2s linear;
}
.trending_topics_card:hover .icons a svg path{
    stroke: #ffffff;   
    transition: all .2s linear;
}

.Trending_Topics_Todays {
    padding-block: 72px;
    background: var(--Text-Grey-50, #F9FAFB);
}

section.Trending_Topics_Todays h2 {
    color: var(--Theme-Dark-Blue-800, #26244A);
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.72px;
    margin-bottom: 40px;
}

section.Trending_Topics_Todays h2 span {
    color: var(--Theme-Blue-500, #3A58EF);
    text-align: center;

    /* Webpage/Header 2 */
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 43.2px */
    letter-spacing: -0.72px;
 }

section.Trending_Topics_Todays .list_trending_topics .trending_topics_card {
    display: flex;
    padding: 16px 24px;
    align-items: center;
    gap: 16px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.15);
    justify-content: space-between;
    flex-wrap: wrap;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
}
section.Trending_Topics_Todays .list_trending_topics .trending_topics_card:hover {
    box-shadow: 0px 4px 35px 0px #dedede;
    animation-name: bounce;
    animation-timing-function: ease;
}
@keyframes bounce {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }

  .Topics_Main ul li {
    border-radius: 4px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    padding: 8px 16px;
    display: inline-flex;
    cursor: pointer;
    color: #344054;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

  
  .Topics_Main ul li.Active {
    border-radius: 4px;
    border: 1px solid var(--Text-Grey-300, #D0D5DD);
    background: var(--Theme-Purple-500, #3A58EF);
    color: var(--White, #FFF);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
  }
  .Topics_Main ul {
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}
  .Topic_Slider .carousel-control-prev {
    width: 36px;
    top: 5px;
    opacity: 1;
    bottom: auto;
    right: auto;
    height: 36px;
    border-radius: 55px;
    border-radius: 43px;
    border: 1px solid var(--Text-Grey-300, #d0d5dd);
    background: var(--White, #fff);
  }
  .Topic_Slider .carousel-control-next {
    right: 0;
    width: 36px;
    opacity: 1;
    top: 4px;
    bottom: auto;
    height: 36px;
    border-radius: 55px;
    border-radius: 43px;
    border: 1px solid var(--Text-Grey-300, #d0d5dd);
    background: var(--White, #fff);
  }
  .Topic_Slider .carousel-control-next-icon,.Topic_Slider .carousel-control-prev-icon {
    background-image: url(../images/practical-training-programs/Arrow_Right.svg);
    width: 24px;
    height: 24px;
    display: inline-block;
  }
  .Topic_Slider {
    margin-bottom: 40px;
}
  .Topic_Slider .carousel-control-next-icon {
    transform: rotate(360deg);
  }
  .Topic_Slider .carousel-control-prev-icon {
    transform: rotate(180deg);
  }

section.Trending_Topics_Todays .list_trending_topics .trending_topics_card .titles h6 {
    color: var(--Theme-Dark-Blue-500, #51506E);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

section.Trending_Topics_Todays .list_trending_topics .trending_topics_card .titles p {
    color: var(--Text-Grey-600, #475467);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

section.Trending_Topics_Todays .list_trending_topics .trending_topics_card .titles p span {
    color: var(--Text-Grey-600, #475467);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

section.Trending_Topics_Todays .browse_all_topics {
    margin-top: 40px;
}
/* Trending Topics for Today’s CPAs - End */



/*Top Courses for Today’s CPAs Start*/
.Trending_Tabs ul li.nav-item button {
    border-radius: 4px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    padding: 8px 18px;
    color: #344054;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.Trending_Tabs ul li.nav-item button.active {
    border-radius: 4px;
    border: 1px solid #3A58EF;
    background: #E3E0FB;
    color: #101828;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.Trending_Tabs ul {
    gap: 16px;
	justify-content: center;
	margin-bottom: 24px;
}
section.Trending_Main {
    padding-bottom: 110px;
}
.Course_Box {
    border-radius: 8px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.10);
    background: #FFF;
    margin-bottom: 30px;
}
.Course_Img {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}
.Course_Img img {
    border-radius: 8px 8px 0px 0px;
    width: 100%;
    transition: 0.3s;
}
.Course_Img img:hover {
    transform: scale(1.1);
    border-radius: 47px 47px 0 0;
}
.Course_Can {
    padding: 12px 10px;
}
.Credit_Speker {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.Credit_Speker p.Credits {
    padding: 4px 8px;
    display: block;
    border-radius: 5px;
    background: var(--Theme-Blue-100, #D8DEFC);
    color: var(--Text-Grey-900, #101828);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}
.Credit_Speker p.Speaker {
    padding: 4px 8px;
    display: block;
    border-radius: 5px;
    background: var(--Theme-Blue-100, #D8DEFC);
    color: var(--Text-Grey-900, #101828);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}
.Course_Can a {
    color: var(--Text-Grey-700, #344054);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    overflow: hidden;
    height: 45px;
    margin-bottom: 8px;
    display: inline-block;
}
.Course_Can p.Date-Time {
    color: var(--Text-Grey-500, #5D667B);
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 15px;
}
.Course_Can ul.Qulification_Chips li {
    border-radius: 4px;
    background: var(--Theme-Blue-50, #EBEEFD);
    display: inline-block;
    padding: 6px 10px;
    font-size: 14px;
}
.Course_Can ul.Qulification_Chips {
    margin-bottom: 15px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.Learn_Rating {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.Learn_Rating a {
    text-align: center;
    text-transform: capitalize;
    height: auto;
    margin-bottom: 0;
    border-radius: 4px;
    border: 0;
    padding: 0;
    color: var(--Theme-Blue-500, #3A58EF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: auto;
}
.Rating_Course ul {
    display: flex;
    gap: 4px;
    align-items: flex-start;
    margin-bottom: 0;
}
section.Trending_Main h2 {
    color: var(--Theme-Dark-Blue-800, #26244A);
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.72px;
    margin-top: 30px;
    margin-bottom: 24px;
}
.Rating_Course ul li.Rat_Count {
    color: #FFB21E;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}
.Rating_Course ul li {
    display: inline-block;
}
.Courses_Top_Filter {
    margin-bottom: 24px;
}
.Course_Img a {
   position: relative;
}


.Learn_Rating a:hover {
    background: transparent;
    color: var(--Theme-Blue-500, #3A58EF);
}

.Learn_Rating a:hover svg path {
    fill: var(--Theme-Blue-500, #3A58EF);
}

/*Top Courses for Today’s CPAs End*/


section.Why_Learners {
    background: var(--White, #FFF);
    padding-block: 72px;
}

section.Why_Learners h2 {
    color: var(--Theme-Dark-Blue-800, #26244A);
    text-align: center;

/* Webpage/Header 2 */
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 43.2px */
    letter-spacing: -0.72px;
    margin-bottom: 48px;
}

section.Why_Learners h2 span {
    color: var(--Theme-Blue-500, #3A58EF);

/* Webpage/Header 2 */
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.72px;
}

.Why_Learners_Box {
    border-radius: 12px;
    border: 1px solid var(--Text-Grey-200, #EAECF0);
    background: var(--White, #FFF);
    padding: 24px;
    text-align: center;
    margin-top: 12px;
    transition: 0.5s all ease-in-out;
}

.Why_Learners_Box span {
    border-radius: 8px;
    background: var(--Theme-Blue-50, #EBEEFD);
    padding: 12px;
    display: inline-block;
}

.Why_Learners_Box h3 {
    color: var(--Text-Grey-700, #344054);
    text-align: center;

/* Text xl / Semibold */
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 150% */
    margin-top: 24px;
}

.Why_Learners_Box:hover {
    border-radius: 12px;
    border: 1px solid var(--Text-Grey-500, #5D667B);
    background: var(--White, #FFF);
    box-shadow: 4px 4px 0 0 #000;
    margin-top: 0;
    transition: 0.5s all ease-in-out;
}

.Why_Learners_Box:hover span {
    border-radius: 8px;
    background: var(--Theme-Blue-900, #04092A);
}

.Why_Learners_Box:hover span svg {}

.Why_Learners_Box:hover span svg path {
    stroke: #fff;
}

.Why_Learners_Box:hover span svg path {}

.Why_Learners_Box:hover span svg circle {
    fill: #fff;
    stroke: #fff;
}



section.Trial_Main.Subscription_Plan {
    background: var(--Text-Grey-50, #F9FAFB);
    padding-block: 72px;
}

section.Subscription_Plan .Sec_title {
    margin-bottom: 48px;
}

section.Subscription_Plan .Sec_title h2 {
    color: var(--Theme-Dark-Blue-900, #17162C);
    text-align: center;

/* Webpage/Header 2 */
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 43.2px */
    letter-spacing: -0.72px;
    margin-bottom: 8px;
}

section.Subscription_Plan .Sec_title h2 span {
    color: var(--Theme-Blue-500, #3A58EF);

/* Webpage/Header 2 */
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.72px;
}

section.Subscription_Plan .Sec_title p {
    color: var(--Text-Grey-600, #475467);
    text-align: center;

/* Text lg/Regular */
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

.Individual_Course {
    border-radius: 16px;
    border: 1px solid var(--Text-Grey-300, #D0D5DD);
    background: var(--White, #FFF);
    padding: 24px;
    margin-top: 12px;
    transition: 0.5s all ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Individual_Course:hover {
    border-radius: 16px;
    border: 1px solid var(--Text-Grey-500, #5D667B);
    background: var(--White, #FFF);
    box-shadow: 4px 4px 0 0 #000;
    margin-top: 0;
    transition: 0.5s all ease-in-out;
}

.Individual_Course_Top {}

.Individual_Course_Top label.Individual_Course_lbl {
    border-radius: 50px;
    background: var(--Theme-Blue-100, #D8DEFC);
    padding: 2px 12px;
    color: var(--Text-Grey-700, #344054);
    text-align: center;

/* Text md/Bold */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    margin-bottom: 10px;
}

.Individual_Course_Top h3 {
    color: var(--Text-Grey-700, #344054);

/* Display lg / Bold */
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px; /* 125% */
    letter-spacing: -0.96px;
}

.Individual_Course_Top h3 sub {
    color: var(--Text-Grey-700, #344054);

/* Text xs/Medium */
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    bottom: 0;
    letter-spacing: 0;
}

.Individual_Course_Top ul {
    border-top: 1px solid var(--Text-Grey-200, #EAECF0);
    margin-top: 16px;
    padding-top: 16px;
}

.Individual_Course_Top ul li {
    list-style: none;
    display: flex;
    align-items: start;
    gap: 8px;
    color: var(--Text-Grey-700, #344054);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 24px;
}

.Individual_Course_Top ul li svg {}

.Subscription_Plan .CPE_Subscription_Gold_Plan {
    border-radius: 16px;
    border: 1px solid var(--Text-Grey-500, #5D667B);
    padding: 24px;
    margin-top: 12px;
    transition: 0.5s all ease-in-out;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.Subscription_Plan .CPE_Subscription_Gold_Plan:hover {
    border-radius: 16px;
    border: 1px solid var(--Text-Grey-500, #5D667B);
    box-shadow: 4px 4px 0 0 #000;
    transition: 0.5s all ease-in-out;
    margin-top: 0;
}

.Subscription_Plan .CPE_Subscription_Gold_Plan label.Most_Popular_lbl {
    background: var(--Success-Green-700, #027A48);
    padding: 10px;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    min-width: 184px;
    text-align: center;
    position: absolute;
    right: -45px;
    top: 30px;
    transform: rotate(45deg);
    overflow: hidden;
}

.Subscription_Plan .CPE_Subscription_Gold_Plan label.Gold_Plan_lbl {
    border-radius: 50px;
    background: var(--Theme-Yellow-400, #F1C94E);
    padding: 2px 12px;
    color: var(--Text-Grey-700, #344054);
    text-align: center;

/* Text md/Bold */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    margin-bottom: 10px;
}

.Subscription_Plan .CPE_Subscription_Gold_Plan h3 {
    color: var(--Text-Grey-700, #344054);

/* Display lg / Bold */
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px; /* 125% */
    letter-spacing: -0.96px;
}

.Subscription_Plan .CPE_Subscription_Gold_Plan h3 sub {
    color: var(--Text-Grey-700, #344054);

/* Text xs/Medium */
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0;
    bottom: 0;
}

.Subscription_Plan .CPE_Subscription_Gold_Plan .CPE_Subscription_Inner_Box {
    border-top: 1px solid var(--Text-Grey-200, #EAECF0);
    margin-top: 16px;
    padding-top: 16px;
}

.Subscription_Plan .CPE_Subscription_Gold_Plan ul {

}

.Subscription_Plan .CPE_Subscription_Gold_Plan ul li {
    list-style: none;
    display: flex;
    color: var(--Text-Grey-700, #344054);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    gap: 8px;
    align-items: start;
    margin-bottom: 24px;
}

.Subscription_Plan .CPE_Subscription_Gold_Plan a.Subscribe_Now_Btn {
    border-radius: 4px;
    background: var(--Theme-Blue-500, #3A58EF);

/* Shadow/xs */
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    padding: 12px;
    color: var(--White, #FFF);

/* Text md / Semibold */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    display: inline-block;
    width: 100%;
    text-align: center;
}

.Individual_Course_Bottom {}

.Individual_Course_Bottom a.Browse_Course_Btn {
    border-radius: 4px;
    border: 1px solid var(--Theme-Blue-500, #3A58EF);
    padding: 12px;
    width: 100%;
    display: inline-block;
    color: var(--Theme-Blue-500, #3A58EF);

/* Text md / Semibold */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    text-align: center;
}

.Individual_Course:hover a.Browse_Course_Btn, .Individual_Course:hover a.Browse_Course_Btn:hover {
    border-radius: 4px;
    background: var(--Theme-Blue-500, #3A58EF);

/* Shadow/xs */
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    color: #fff;
}

.Subscription_Plan .CPE_Subscription_Gold_Plan ul li svg {
    min-width: 20px;
}



/*about_us Start*/
.about_us .slick-dots li button:before {
    width: 23px;
    height: 8px;
    background: #E3E0FB;
    border-radius: 26px;
    font-size: 0;
    opacity: 1;
}
.about_us .slick-dots li.slick-active button:before{
    background: #3A58EF;
}
.about_us_slide > img {
    margin: 0 auto;
}
.about_us .slick-dots li {
    width: 30px;
}
.about_us .slick-dots {
    bottom: -67px;
}
.about_us .slick-prev:before,.about_us .slick-next:before{
    content: none;
}
.about_us .slick-prev,.about_us .slick-next {
    width: 40px;
    height: 40px;
    z-index: 9;
}
.about_us .slick-prev
{
    left: 16%;
}
.about_us .slick-next
{
    right: 16%;
}
section.about_us {
    margin-bottom: 0;
    background: var(--White, #FFF);
    padding-block: 72px;
}
section.about_us h2 {
    margin-top: 0;
    margin-bottom: 36px;
    color: var(--Theme-Dark-Blue-800, #26244A);
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.72px;
    text-align: left;
}
section.about_us h2 span { 
    color: var(--Theme-Blue-500, #3A58EF);
    text-align: center;

    /* Webpage/Header 2 */
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 43.2px */
    letter-spacing: -0.72px;
}
.about_us_slide {
    text-align: center;
    opacity: 1;
    border-radius: 12px;
    border: 1px solid var(--Text-Grey-200, #eaecf0);
    background: var(--White, #fff);
    padding: 24px;
    transition: .4s ease-in-out;
    transform: translate(0, 0);
    margin-top: 12px;
}
.about_us_slide-itm.slick-slide.slick-current.slick-active.slick-center .about_us_slide{
    opacity: 1;
}
/* .about_us_slide-itm{
    max-width: 800px;
} */
.about_us_slide h4 {
    letter-spacing: normal;
    color: var(--Text-Grey-700, #344054);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 0;
    text-align: left;
    margin-top: 24px;
}
.about_us_slide h4 + p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--Text-Grey-600, #475467);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
    text-align: left;
    margin-top: 8px;
}
.about-client {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}
.about-client img {
    border-radius: 50%;
    height: 58px;
    width: 58px;
}
.about-client .cle-info h6 {
    color: var(--Theme-Dark-Blue-800, #26244a);
    font-style: normal;
    font-weight: 700;
    font-family: Inter;
    font-size: 16px;
    line-height: 24px;
}
.about-client .cle-info p {
    color: var(--Text-Grey-600, #475467);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.education_tags_individual span:last-child:hover {
    border: 1px solid #D0D5DD;
    background: #3A58EF;
    color: #fff;
}

.Rating_Top {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
}

.about_us_slide:hover {
    transition: .4s ease-in-out;
    transform: translate(0, -10px);
}

.slick-dotted.slick-slider button.slick-prev.custom-prev.slick-arrow {
    top: -16%;
    right: 5%;
    left: auto;
    border-radius: 43px;
    border: 1px solid var(--Text-Grey-300, #d0d5dd);
    background: var(--White, #fff);
}

.slick-dotted.slick-slider button.slick-next.custom-next.slick-arrow {
    top: -16%;
    right: 0%;
    left: auto;
    border-radius: 43px;
    border: 1px solid var(--Text-Grey-300, #d0d5dd);
    background: var(--White, #fff);
}

.slick-initialized .slick-slide {
    padding: 0 15px; 
}

.about_us_slide:hover .Rating_Top_Right svg path {
    fill: #3A58EF;
}

button.slick-prev.custom-prev.slick-arrow:before {
    content: '';
    background-image: url(../images/practical-training-programs/Arrow_Left.svg);
    width: 24px;
    height: 24px;
    display: inline-block;
}

button.slick-next.custom-next.slick-arrow:before {
    content: '';
    background-image: url(../images/practical-training-programs/Arrow_Right.svg);
    width: 24px;
    height: 24px;
    display: inline-block;
}

.slick-dotted.slick-slider button.slick-prev.custom-prev.slick-arrow img {
    display: none;
}

.slick-dotted.slick-slider button.slick-next.custom-next.slick-arrow img {
    display: none;
}

::before {}

button.slick-prev.custom-prev.slick-arrow:hover:before {
    content: '';
    background-image: url(../images/practical-training-programs/Hover_Arrow_Left.svg);
}

button.slick-next.custom-next.slick-arrow:hover:before {
    content: '';
    background-image: url(../images/practical-training-programs/Hover_Arrow_Right.svg);
}
/*about_us End*/


section.Lets_Build {
    padding: 72px 0;
}

section.Lets_Build .Sec_Title h2 {
    color: var(--Theme-Dark-Blue-800, #26244A);
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -.72px;
    text-align: center;
    margin-bottom: 36px
}

section.Lets_Build .Sec_Title h2 span {
    color: var(--Theme-Blue-500, #3A58EF);
    text-align: center;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -.72px
}

.Lets_Build_Box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px
}

.Lets_Build_Box a.Schedule_Call_Btn {
    border-radius: 4px;
    background: var(--Theme-Blue-500, #3A58EF);
    box-shadow: 0 1px 2px 0 rgb(16 24 40 / .05);
    padding: 12px 20px;
    display: inline-block;
    color: var(--White, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px
}

.Lets_Build_Box a.Chat_Btn {
    border-radius: 4px;
    border: 1px solid var(--Theme-Blue-500, #3A58EF);
    padding: 12px 20px;
    color: var(--Theme-Blue-500, #3A58EF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px
}

.Lets_Build_Box a.Chat_Btn:hover {
    background: var(--Theme-Blue-500, #3A58EF);
    color: #fff
}

.Lets_Build_Box a.Chat_Btn:hover svg path {
    stroke: #fff
}

.Lets_Build_Box a.Schedule_Call_Btn:hover {
    border-radius: 4px;
    background: var(--Theme-Blue-800, #182878);
    box-shadow: 0 1px 2px 0 rgb(16 24 40 / .05)
}

.Lets_Build a.Call_Btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--Text-Grey-500, #5D667B);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px
}


section.bg-grey {
    background: var(--Text-Grey-50, #F9FAFB);
}



.FAQ_Box .sticky-top {
    top: 130px;
    z-index: 9
}

.FAQ_Main {
    background: #fff0
}

.FAQ_Main h2.Sec_Title {
    text-align: center;
    letter-spacing: .36px;
    text-transform: capitalize;
    padding: 0;
    margin-bottom: 35px;
    color: var(--Theme-Dark-Blue-800, #26244A);

    /* Webpage/Header 2 */
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 43.2px */
    letter-spacing: -0.72px;
}

.FAQ_Main .FAQ_Box .accordion-header .accordion-button::before {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: 0;
    margin-right: 24px;
    content: "";
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    width: 32px;
    height: 32px;
    background-size: cover
}

.FAQ_Main .FAQ_Box .accordion-header .accordion-button::before {
    background-image: url(../images/practical-training-programs/Open_Accordion_Icon.svg);
    transition: all .3s;
    transform: rotate(45deg)
}

.FAQ_Main .FAQ_Box .accordion-flush .accordion-item .accordion-button.collapsed::before {
    transform: rotate(0)
}

.FAQ_Main .FAQ_Box .accordion-button {
    color: #667085;
    background: #fff0;
    border: 0;
    padding-left: 0
}

.FAQ_Main .FAQ_Box .accordion-button::after {
    display: none
}

.FAQ_Main .FAQ_Box .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 0;
    border: 0;
    background: #fff0;
    padding-left: 0
}

.FAQ_Main .FAQ_Box .accordion-item {
    margin: 0;
    border: 0;
    margin-bottom: 16px;
    border-radius: 0;
    background: #fff0;
    border-bottom: 1px solid #d9d9d9
}

.FAQ_Main .FAQ_Box .accordion-body {
    border-radius: 0 0 12px 12px;
    border: 0;
    background: var(--White, #FFF);
    border-top: 0;
    border: 0;
    background: #fff0;
    padding: 0;
    padding-left: 55px
}

.FAQ_Main .FAQ_Box .accordion-button {
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--Text-Grey-700, #344054);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    border: 0;
    box-shadow: none;
}

.FAQ_Main .FAQ_Box .accordion-body p {
    color: var(--secondary-secondary-100, #171a1f);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 0;
    margin-bottom: 15px;
}

.FAQ_Main .FAQ_Box .accordion-body ul {
    margin-left: 20px
}

.FAQ_Main .FAQ_Box .accordion-body ul li {
    color: var(--secondary-secondary-100, #171a1f);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    list-style: disc;
    margin-bottom: 10px
}

.FAQ_Main .FAQ_Box .collapse {
    border: 0
}


.Watch_Video_Btn_Box {
    display: none;
}

.Practical_Training_Programs_Right.Watch_Video_Btn_Box { 
    display: block;
}


.Watch_video .modal-content {
    border: 0;
    width: 100%;
    max-width: inherit;
    background: transparent;
}

.Watch_video .modal-header .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #1d46f0;
    opacity: 1;
    padding: 15px;
    border-radius: 50%;
    z-index: 9;
}

.Watch_video .modal-header {
    position: relative;
    padding: 0;
}


.Credit_Text_Price {
    position: relative;
    width: 100%;
}

.Credit_Text_Price a {
    color: var(--Text-Grey-700, #344054);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 166.667% */
    height: 58px;
    overflow: hidden;
}

.Credit_Text_Price span {
    color: var(--Theme-Blue-500, #3A58EF);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
}



section.Connect_with {
    padding: 72px 0 72px 0;
    background: var(--Text-Grey-50, #F9FAFB);
}

section.Connect_with h2 {
	color: var(--Theme-Dark-Blue-800,#26244a);
	text-align: center;
	font-family: Inter;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -.72px;
	margin-bottom: 48px;
}

.Connect_with_Main .Connect_with_Box {
	border-radius: 12px;
	border: 1px solid var(--Text-Grey-300,#d0d5dd);
	background: var(--White,#fff);
	padding: 14px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	min-height: 189px;
    margin-top: 12px;
    transition: .5s all ease-in-out;
}

.Connect_with_Main .Connect_with_Box a.Schedule_Call_Btn {
	border-radius: 4px;
	border: 1px solid var(--Theme-Blue-500,#3a58ef);
	padding: 10px 18px;
	color: var(--Theme-Blue-500,#3a58ef);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	display: inline-block;
}

.Connect_with_Main .Connect_with_Box svg {
	min-height: 68px;
}

.Connect_with_Main .Connect_with_Box:hover {
    border-radius: 12px;
    border: 1px solid var(--Text-Grey-500, #5D667B);
    background: var(--White, #FFF);
    box-shadow: 4px 4px 0 0 #000;
    margin-top: 0;
    transition: .5s all ease-in-out;
}

.Connect_with_Main .Connect_with_Box:hover a.Schedule_Call_Btn {
    border-radius: 4px;
    background: var(--Theme-Blue-500, #3A58EF);

/* Shadow/xs */
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    color: #fff;
     transition: .5s all ease-in-out;
}

@media screen and (max-width:1366.51px) {
    .Why_Learners_Box h3 {
        font-size: 19px;
    }
}

@media screen and (max-width: 1199.51px) {
    .Connect_with_Main .Connect_with_Box a.Schedule_Call_Btn {
		padding: 10px 28px;
	}
}

@media screen and (max-width:991px) {

   
}

@media screen and (max-width:767px) {
    section {
        padding-block: 46px !important;
    }

    section h1, section h2 {
        text-align: center;
        font-size: 24px !important;
        line-height: 130% !important; /* 31.2px */
        margin-bottom: 24px !important; 
    }

    section h1 span, section h2 span {
        font-size: 24px !important;
        line-height: 130% !important;
    } 

    .Practical_Training_Programs_Btns {
        flex-direction: column;
        margin-bottom: 24px; 
    }

    .Access_Unlimited_Btn_Box {
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .Individual_Course_Btn_Box {
        width: 100%;
        text-align: center;
    }

    .Access_Unlimited_Btn_Box a.Access_Unlimited_Btn {
        display: inline-block;
        width: 100%;
        color: var(--White, #FFF);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        padding: 10px 16px;
    }

    .Access_Unlimited_Btn_Box label {
        margin-top: 0px;
        color: var(--Text-Grey-500, #5D667B);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
    }

    .Individual_Course_Btn_Box a.Individual_Course_Btn {
        width: 100%;
        color: var(--Theme-Blue-500, #3A58EF);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        padding: 10px 16px;
    }

    .Topics_Main ul {
        padding-inline: 40px;
        justify-content: start;
    }

    .Why_Learners_Box {
        margin-top: 24px;
    }

    section.Subscription_Plan .Sec_title {
        margin-bottom: 24px;
    }

    .Individual_Course {
        height: auto;
        margin-top: 0;
    }

    .Subscription_Plan .CPE_Subscription_Gold_Plan {
        height: auto;
        margin-top: 24px;
    }

    .Subscription_Plan .CPE_Subscription_Gold_Plan label.Most_Popular_lbl {
        overflow: hidden;
        position: relative;
        transform: none;
        right: 0;
        top: 0;
        border-radius: 50px;
        background: var(--Success-Green-700, #027A48);
        padding: 2px 12px;
        color: var(--White, #FFF);
        text-align: center;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        margin-bottom: 10px;
        min-width: auto;
    }

    section.about_us h2 {
        text-align: center;
    }

    .about_us .slick-dots {
        display: none !important;
    }

    .slick-dotted.slick-slider button.slick-prev.custom-prev.slick-arrow {
        top: auto;
        bottom: -17%;
        right: 0;
        left: -15%;
        margin: 0 auto;
    }

    .slick-dotted.slick-slider button.slick-next.custom-next.slick-arrow {
        top: auto;
        bottom: -17%;
        right: -15%;
        left: 0;
        margin: 0 auto;
    }

    .about-client img {
        margin: 0;
    }

    .Lets_Build_Box {
        flex-direction: column;
    }

    .FAQ_Main h2.Sec_Title {
        text-align: center !important; 
    }

    .Watch_Video_Btn_Box {
        display: block;
        width: 100%;
    }

    a.Watch_Video_Btn {
        width: 100%;
        border-radius: 4px;
        background: var(--Theme-Blue-500, #3A58EF);
        box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
        color: var(--White, #FFF);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        padding: 10px 16px;
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
    }

    section.Connect_with {
		padding-block: 32px;
	}

	section.Connect_with h2 {
		font-size: 24px;
	}

    .Connect_with_Main .Connect_with_Box {
		margin-bottom: 16px;
	}

    .Credit_Text_Price a {
        height: 60px;
    }
}


@media screen and (max-width:580px) {
    
}

@media screen and (max-width:480px) {
    
}

@media screen and (max-width:375.51px) { 
   
}

@media screen and (max-width:320.51px) { 
  
}


