/* ── CSS Variables ── */
:root {
    --tl-dark:    #182878;
    --tl-blue:    #3A58EF;
    --tl-light:   #EBEEFD;
    --tl-lighter: #D8DEFC;
    --tl-body:    #475467;
    --tl-heading: #2A3343;
    --tl-muted:   #5D667B;
    --tl-border:  #EAECF0;
    --tl-bg:      #F9FAFB;
    --tl-hover:   #D0D8FC;
    --tl-green:   #12B76A;
    --tl-red:     #F04438;
}

/* ── Buttons (hover aligned with global Blue_Fill_Btn pattern) ── */
.tl-btn-primary {
    background: var(--tl-blue);
    border: 1px solid var(--tl-blue);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 4px;
    transition: .4s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 2px 0 rgb(16 24 40 / .05);
}
.tl-btn-primary:hover { background: #283fb1; border-color: #283fb1; color: #fff; }

.tl-btn-outline {
    border: 1px solid var(--tl-blue);
    color: var(--tl-blue);
    background: var(--tl-light);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 4px;
    transition: .4s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.tl-btn-outline:hover {
    background: var(--tl-blue) !important;
    color: #fff;
}

.tl-btn-outline:hover svg path {
    stroke: #fff;
}

.tl-btn-outline-white {
    border: 1px solid rgba(255,255,255,0.7);
    color: #fff;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 4px;
    transition: .4s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.tl-btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

/* ── Section badge ── */
.tl-badge {
    display: inline-block;
    background: var(--tl-light);
    padding: 5px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    color: #101828;
}

/* ── Section heading ── */
.tl-heading {
    font-weight: 700;
    font-size: 36px;
    color: #26244A;
    letter-spacing: -0.72px;
    line-height: 1.2;
}
.tl-heading .accent { color: var(--tl-blue); }
.What_Educators .tl-subtitle {
    color: var(--Text-Grey-600, #475467);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

/* ── Hero ── */
.tl-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(1100px 600px at 65% 10%, rgba(58,88,239,0.28) 0%, transparent 60%),
                radial-gradient(800px 500px at 15% 90%, rgba(18,183,255,0.18) 0%, transparent 65%),
                linear-gradient(110deg, #0e2764 0%, #182878 50%, #1a2f8a 100%);
    color: #fff;
}
.tl-hero::before {
    /* content: '';
    position: absolute;
    inset: -100px -100px auto auto;
    width: 460px; height: 460px;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, rgba(58,88,239,0.28), transparent 70%);
    pointer-events: none; */
}
.tl-hero h1 {
    font-weight: 700;
    font-size: 48px !important;
    line-height: 60px !important;
    letter-spacing: -0.96px;
    color: #fff !important;
    margin-bottom: 0;
}
@media (max-width: 991.98px) { .tl-hero h1 { font-size: 36px !important; line-height: 44px !important; } }
@media (max-width: 575.98px) { .tl-hero h1 { font-size: 28px !important; line-height: 36px !important; } .tl-heading { font-size: 26px; } }

/* ── Hero photo grid ── */
.tl-hero-panel {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
}
.tl-hero-cell {
    overflow: hidden;
}
.tl-hero-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

/* ── Stat card ── */
.tl-stat-card {
    border: 1px solid var(--tl-border);
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    height: 100%;
    text-align: center;
}
.tl-stat-num {
    color: var(--Theme-Blue-500, #3A58EF);
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.96px;
}

.tl-stat-num span {
    color: var(--Theme-Blue-800, #182878);
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.96px;
}

.tl-stat-card p.text-muted {
    color: var(--Text-Grey-700, #344054);
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

/* ── Intel / opportunity cards ── */
.tl-card {
    border: 1px solid var(--tl-border);
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    height: 100%;
    transition: transform 0.2s, border-color 0.2s, border-width 0.2s;
    cursor: default;
}
.tl-card:hover {
    transform: translateY(-3px);
    border-color: #26244A;
    border-bottom-width: 3px;
    border-right-width: 2px;
}
.tl-card.featured { background: var(--tl-light); }
.tl-card .icon-wrap {
    width: 48px; height: 48px;
    background: var(--tl-light);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    margin-bottom: 16px;
    border-radius: 8px;
    background: var(--Theme-Blue-100, #D8DEFC);
}
.tl-card .icon-wrap i { color: var(--tl-blue); font-size: 22px; transition: color 0.2s; }
.tl-card:hover .icon-wrap { background: #26244A; }
.tl-card:hover .icon-wrap i { color: #fff; }

.tl-chip {
    display: inline-block;
    border-radius: 29px;
    background: var(--Theme-Blue-100, #D8DEFC);
    color: var(--Theme-Blue-800, #182878);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 6px 11px;
}

/* ── Donut ── */
.tl-donut {
    width: 156px; height: 156px;
    border-radius: 50%;
    background: conic-gradient(#314BD0 0deg 330deg, #D0D5DD 330deg 360deg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tl-donut-inner {
    width: 116px; height: 116px;
    border-radius: 50%;
    background: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}

/* ── Step circle ── */
.tl-step-circle {
   width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border-radius: 80px;
    border: 3px solid var(--Text-Grey-100, #F2F4F7);
    background: var(--White, #FFF);
    color: var(--Text-Grey-800, #1D2939);
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 110%;
    letter-spacing: -0.48px;
}

h6.fw-bold.mb-2 {
    color: var(--Text-Grey-700, #344054);
    text-align: center;

/* Text xl / Bold */
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 150% */
}

.Your_Session p.text-muted.small.mb-0 {
    color: var(--Text-Grey-700, #344054);
    /* text-align: center; */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.tl-step {
    position: relative;
}
@media (min-width: 768px) {
    .tl-step::after {
        content: '';
        position: absolute;
        top: 0px;
        left: 25%;
        width: 470px;
        height: 88px;
        display: inline-block;
        background: url('../../v2/images/thought-leaders/Step_Line.png');
        transform: translateX(28px);
    }
    .tl-step:last-child::after { display: none; }
}

/* ── Instructor photos ── */
.tl-instr-img {
    width: 110px; height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--tl-lighter);
}
@media (min-width: 768px) { .tl-instr-img { width: 130px; height: 130px; } }

/* ── Testimonial card ── */
.tl-testimonial {
    border: 1px solid var(--tl-border);
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    height: 100%;
}
.tl-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

/* ── Arrow button ── */
.tl-arrow-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid #D0D5DD;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
}
.tl-arrow-btn:hover { border-color: #26244A; }

/* ── Numbered circle ── */
.tl-num-circle {
    width: 32px; height: 32px; min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--Theme-Blue-50, #EBEEFD);
    color: var(--Theme-Blue-500, #3A58EF);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

/* ── Standards card ── */
.tl-standards-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--tl-border);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border-top: 1px solid var(--Success-Green-500, #12B76A);
    border-right: 1px solid var(--Success-Green-500, #12B76A);
    border-bottom: 1px solid var(--Success-Green-500, #12B76A);
    border-left: 12px solid var(--Success-Green-500, #12B76A);
    background: var(--White, #FFF);
}
.tl-standards-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 5px;
    background: transparent;
}

/* ── Evergreen stat ── */
.tl-ev-val {
    font-weight: 700;
    font-size: 22px;
    color: var(--tl-blue);
}

/* ── CTA section ── */
.tl-cta {
    background: linear-gradient(135deg, #0e2764 0%, #182878 60%, #1a3096 100%);
    color: #fff;
    border-radius: 20px;
}

/* ── SVG icons ── */
.tl-icon {
    display: inline-block;
    vertical-align: -0.125em;
    fill: currentColor;
}
.tl-icon-sm { width: 14px; height: 14px; }
.tl-icon-md { width: 20px; height: 20px; }
.tl-icon-lg { width: 24px; height: 24px; }
.tl-icon-xl { width: 32px; height: 32px; }

.d-lg-block {
    text-align: right;
}


section.spleaker_grid {
    padding: 72px 0;
    background: #ffffff;
}
section.spleaker_grid h2.ins_ttl {
    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: -0.72px;
    margin-bottom: 48px;
}
.speker_imge {
    width: 100%;
    border-radius: 50%;
    background: var(--Theme-Blue-100, #D8DEFC);
    overflow: hidden;
    height: 272px;
    display: flex;
}
.speaker_man:hover .speker_imge {
    background: #3A58EF;
    transition: .4s linear all;
    transform: scale(1) translateY(0px);
}

.speaker_man:hover .speker_imge img {
    transform: scale(1.1) translateY(10px);
    transition: .4s linear all;
}
.speaker_description {
    padding-top: 16px;
}
.speaker_desc_title {
    color: var(--Theme-Dark-Blue-800, #26244A);
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.speaker_desc_title a {
    color: var(--Theme-Dark-Blue-800, #26244A);
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.specker_desgignation > span {
    color: var(--Text-Grey-600, #475467);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: block;
    height: 24px;
}
.specker_desgignation p {
    color: var(--Text-Grey-600, #475467);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-top: 8px;
    margin-bottom: 16px;
    height: 60px;
}
.specker_desgignation_without_audio p {
    color: var(--Text-Grey-600, #475467);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-top: 8px;
    margin-bottom: 16px;
    height: 135px;
}
.speaker_audio {
    height: 60px;
}
.speaker_btns a {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 4px;
    border: 1px solid var(--Theme-Blue-500, #3A58EF);
    width: 100%;
    color: var(--Theme-Blue-500, #3A58EF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    transition: all 0.3s ease;
}
.speaker_btns a:hover,
.speaker_man:hover .speaker_btns a {
    transition: all 0.3s ease;
    background-color: var(--Theme-Blue-500, #3A58EF);
    color: #ffffff;
}
.speaker_btns {
    margin-top: 16px;
}
.speaker_man {
    border-radius: 12px;
    border: 1px solid var(--Text-Grey-200, #EAECF0);
    background: var(--White, #FFF);
    padding: 16px;
    height: 100%;
}
ul.ins_lst {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 4px;
    align-items: center;
}
ul.ins_lst li {
    list-style: none;
    display: flex;
}
ul.ins_lst li:last-child {
    color: var(--Theme-Blue-500, #3A58EF);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-left: 4px;
}
section.spleaker_grid button.slick-prev.custom-prev.slick-arrow {
    width: 40px;
    height: 40px;
}

section.spleaker_grid button.slick-next.custom-next.slick-arrow {
    width: 40px;
    height: 40px;
}

.spleaker_grid .slick-dots li button:before {
    width: 23px;
    height: 8px;
    background: #E3E0FB;
    border-radius: 26px;
    font-size: 0;
    opacity: 1;
}
.spleaker_grid .slick-dots li.slick-active button:before {
    background: #3A58EF;
}
.spleaker_grid > img {
    margin: 0 auto;
}
.spleaker_grid .slick-dots li {
    width: 30px;
}
.spleaker_grid .slick-dots {
    bottom: -67px;
}
.spleaker_grid .slick-prev:before,
.spleaker_grid .slick-next:before {
    content: none;
}
.spleaker_grid .slick-prev,
.spleaker_grid .slick-next {
    width: 40px;
    height: 40px;
    z-index: 9;
}
.All_Speakers a.Speakers_Btn {
    border-radius: 4px;
    background: var(--Theme-Blue-500, #3A58EF);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: var(--White, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding: 12px 20px;
    display: inline-block;
}
.All_Speakers {
    text-align: center;
    margin-top: 100px;
}

section.spleaker_grid.New_Speakers .speker_imge {
    width: 146px;
    height: 146px;
}

section.spleaker_grid.New_Speakers .speker_imge img.img-fluid {
    min-width: 146px;
    height: 146px;
    transform: scale(1);
    filter: grayscale(1);
}

section.spleaker_grid.New_Speakers .speaker_man {
    border-radius: 12px;
    border: 0 solid var(--Text-Grey-200, #eaecf0);
    background: transparent;
}

section.spleaker_grid.New_Speakers .speaker_man:hover .speker_imge img.img-fluid {
    filter: grayscale(0);
}

.New_Speakers .speaker_desc_title h3 {
    font-size: 16px;
}

.speaker_desc_title,
.speaker_desc_title a {
    color: var(--Theme-Dark-Blue-800, #26244a);
    text-align: center;
}
.specker_desgignation > span {
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: block;
    height: 24px;
}

.about_us_slider1 .slick-slide {
    height: auto;
}

.Testimonials .SlideBox_Test_Author h3,.Testimonials h2 {
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color: #26244a;
}

.Testimonials .slideBoxLeft,.Testimonials h2 {
	/* text-align: center; */
}

.Testimonials {
	padding: 0 0;
	/* background: #ebeefd; */
	background: #fff;
}

.Testimonials .slideBoxLeft h3.Heading_H3 {
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color: #475467;
	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;
}

.Testimonials img.SlideBox_Test_Author_Img {
	min-width: 57px;
	margin-right: 16px;
}

.Testimonials .slideBoxRgt,section.Accreditation_by .Support_img a {
	display: flex;
	align-items: center;
	justify-content: center;
}
.Testimonials .slideBoxRgt{
    justify-content: left;
}
.Testimonials .slideBoxRgt .slideBoxRgt_Author_Img {
    min-width: 58px;
    margin-right: 16px;
    border-radius: 50%;
    max-width: 58px;
    max-height: 58px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.Testimonials .SlideBox_Test_Author h3 {
	text-align: left;
}

.Testimonials .SlideBox_Test_Author p {
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color: #475467;
}

.Testimonials h2 {
	font-family: Inter;
	font-size: 36px;
	font-weight: 700;
	line-height: 43.2px;
	letter-spacing: -.02em;
	margin-bottom: 0px;
}

.Testimonials .Center_Test ul.slick-dots,.Testimonials .Center_Test1 ul.slick-dots,.Testimonials.Shorts_Video .Center_Video ul.slick-dots {
	bottom: -62px;
}

.Testimonials .Center_Test .slick-dots li button,.Testimonials .Center_Test1 .slick-dots li button,.Testimonials.Shorts_Video .Center_Video .slick-dots li button {
	background: #d8defc;
	width: 22px;
	height: 8px;
	border-radius: 26px;
}

.Testimonials .Center_Test .slick-dots li.slick-active button,.Testimonials .Center_Test button.slick-next.slick-arrow,.Testimonials .Center_Test1 .slick-dots li.slick-active button,.Testimonials .Center_Test1 button.slick-next.slick-arrow,.Testimonials.Shorts_Video .Center_Video .slick-dots li.slick-active button,.Testimonials.Shorts_Video .Center_Video button.slick-next.slick-arrow,.about_us_slider_New_Home1 button.slick-next.slick-arrow {
	background: #3a58ef;
}

.Testimonials .slick-arrow:hover,.slick-arrow:focus {
	border: 0;
	outline: 0;
}

.Testimonials .slick-arrow {
	width: 100%;
	background-color: #fff0;
	border: 0;
	background-position: center;
	background-repeat: no-repeat;
	font-size: 0;
	height: 18px;
	position: absolute;
	right: 0;
	z-index: 99;
}

.Testimonials .slick-prev {
	top: 0;
}

.Testimonials .slick-next {
	bottom: 0;
	background-color: #fff;
}

.Testimonials .slideBoxLeft h2 {
	letter-spacing: normal;
	color: #344054;
	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;
}

.Testimonials .SlideBox_Test_Author h3,.Testimonials_Title h2 {
	color: var(--Theme-Dark-Blue-800,#26244a);
	font-style: normal;
	font-weight: 700;
	font-family: Inter;
}

.Testimonials .Center_Test .slick-slide,.Testimonials .Center_Test1 .slick-slide,.Testimonials.Shorts_Video .Center_Video .slick-slide {
	padding: 0 15px;
	color: #e67e22;
	transform: scale(1);
	filter: blur(0px);
    height: auto;
}

.Testimonials .Center_Test .slick-slide.slick-current,.Testimonials .Center_Test1 .slick-slide.slick-current,.Testimonials.Shorts_Video .Center_Video .slick-slide.slick-current {
	transform: scale(1);
	filter: blur(0);
}

.Testimonials .Center_Test button.slick-next:before,.Testimonials .Center_Test button.slick-prev:before,.Testimonials .Center_Test1 button.slick-next:before,.Testimonials .Center_Test1 button.slick-prev:before,.Testimonials.Shorts_Video .Center_Video button.slick-next:before,.Testimonials.Shorts_Video .Center_Video button.slick-prev:before,.about_us_slider_New_Home1 button.slick-prev.slick-arrow:before {
	content: '';
}

.Testimonials .Center_Test button.slick-prev.slick-arrow,.Testimonials .Center_Test1 button.slick-prev.slick-arrow,.Testimonials.Shorts_Video .Center_Video button.slick-prev.slick-arrow,.about_us_slider_New_Home1 button.slick-prev.slick-arrow {
	position: absolute;
	background: #3a58ef;
	z-index: 9;
}

.Testimonials .Center_Test .slick-arrow,.Testimonials .Center_Test1 .slick-arrow,.Testimonials.Shorts_Video .Center_Video .slick-arrow,.about_us_slider_New_Home1 button.slick-arrow {
	width: 40px;
	height: 40px;
	background-size: 40px;
}

.Testimonials .Center_Test .slick-next,.Testimonials .Center_Test1 .slick-next,.Testimonials.Shorts_Video .Center_Video .slick-next,.about_us_slider_New_Home1 button.slick-prev {
	right: 17%;
	top: 50%;
}

#hear_it_from_our_subscribers,#learn_from_the_best_in_the_business,#trusted_by_top_professionals,#upcoming_webinars_and_virtual_events,.Testimonials .slick-dots li button:before {
	display: none;
}

.Testimonials .Center_Test button.slick-prev:before,.Testimonials .Center_Test1 button.slick-prev:before,.Testimonials.Shorts_Video .Center_Video button.slick-prev:before,.about_us_slider_New_Home1 button.slick-prev.slick-arrow:before {
	content: '';
	background-image: url(../images/new-home-151025/Arrow_Left.svg);
	width: 24px;
	height: 24px;
	display: inline-block;
}

.Testimonials .Center_Test button.slick-next:before,.Testimonials .Center_Test1 button.slick-next:before,.Testimonials.Shorts_Video .Center_Video button.slick-next:before,.about_us_slider_New_Home1 button.slick-next.slick-arrow:before {
	content: '';
	background-image: url(../images/new-home-151025/Arrow_Right.svg);
	width: 24px;
	height: 24px;
	display: inline-block;
}

.Testimonials .Center_Test button.slick-prev.slick-arrow,.Testimonials .Center_Test1 button.slick-prev.slick-arrow,.Testimonials.Shorts_Video .Center_Video button.slick-prev.slick-arrow,.about_us_slider_New_Home1 button.slick-prev.slick-arrow {
	left: auto;
	right: 56px;
	top: -19%;
	border-radius: 43px;
	border: 1px solid var(--Text-Grey-300,#d0d5dd);
	background: var(--White,#fff);
}

.Testimonials .Center_Test button.slick-next.slick-arrow,.Testimonials .Center_Test1 button.slick-next.slick-arrow,.Testimonials.Shorts_Video .Center_Video button.slick-next.slick-arrow,.about_us_slider_New_Home1 button.slick-next.slick-arrow {
	right: 0;
	top: -19%;
	border-radius: 43px;
	border: 1px solid var(--Text-Grey-300,#d0d5dd);
	background: var(--White,#fff);
}

.Testimonials .Center_Test1 button.slick-prev.slick-arrow,.about_us_slider_New_Home1 button.slick-prev.slick-arrow {
	left: -4%;
	top: 45%;
}

.Testimonials .Center_Test1 button.slick-next.slick-arrow,.about_us_slider_New_Home1 button.slick-next.slick-arrow {
	right: -4%;
	top: 45%;
}

.Testimonials_Title h2 {
	font-size: 36px;
	line-height: 120%;
	letter-spacing: -.72px;
	text-align: left;
}

.Testimonials_Title {
	margin-bottom: 48px;
}

.Testimonials .slideBox.Bg_Dark_Blue_800 {
	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);
}

.Testimonials .slideBox.Bg_Dark_Blue_800 .Rating_Top {
	display: flex;
	align-items: self-start;
	justify-content: space-between;
}

.Testimonials .SlideBox_Test_Author h3 {
	font-size: 16px;
	line-height: 24px;
}

.Testimonials .SlideBox_Test_Author p {
	color: var(--Text-Grey-600,#475467);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.News_Box_Content h6,.News_Box_Content p.Topic {
	margin-bottom: 4px;
	color: var(--Text-Light-Blue,#0b7bff);
	line-height: 150%;
	letter-spacing: 1.68px;
	text-transform: uppercase;
	font-style: normal;
	font-family: Inter,sans-serif;
	font-size: 14px;
	font-weight: 600;
}

.Testimonials .slideBox.Bg_Dark_Blue_800:hover {
	transition: .4s ease-in-out;
	transform: translate(0,-10px);
}

.New_Speakers .All_Speakers a.Speakers_Btn svg path,.Testimonials .slideBox.Bg_Dark_Blue_800:hover .Rating_Top_Right svg path {
	fill: #3A58EF;
}

section.Testimonials.Latest_News_Updates.Shorts_Video button.slick-next.slick-arrow,section.Testimonials.Latest_News_Updates.Shorts_Video button.slick-prev.slick-arrow {
	top: -9%;
}

.Upcoming_Webinars_Main .Testimonials {
	padding: 0;
}


.Testimonials .Center_Test button.slick-next.slick-arrow:hover,.Testimonials .Center_Test button.slick-prev.slick-arrow:hover,.Testimonials .Center_Test1 button.slick-next.slick-arrow:hover,.Testimonials .Center_Test1 button.slick-prev.slick-arrow:hover,.about_us_slider_New_Home1 button.slick-next.slick-arrow:hover,.about_us_slider_New_Home1 button.slick-prev.slick-arrow:hover,section.Testimonials.Latest_News_Updates.Shorts_Video button.slick-next.slick-arrow:hover,section.Testimonials.Latest_News_Updates.Shorts_Video button.slick-prev.slick-arrow:hover {
	border-radius: 43px;
	border: 1px solid var(--Text-Grey-500,#5d667b);
	background: var(--White,#fff);
}

.Testimonials .Center_Test button.slick-prev.slick-arrow:hover:before,.about_us_slider_New_Home1 button.slick-prev.slick-arrow:hover:before,section.Testimonials.Latest_News_Updates.Shorts_Video button.slick-prev.slick-arrow:hover:before {
	content: '';
	background-image: url(../images/new-home-151025/Hover_Arrow_Left.svg);
}

.Testimonials .Center_Test button.slick-next.slick-arrow:hover:before,.about_us_slider_New_Home1 button.slick-next.slick-arrow:hover:before,section.Testimonials.Latest_News_Updates.Shorts_Video button.slick-next.slick-arrow:hover:before {
	content: '';
	background-image: url(../images/new-home-151025/Hover_Arrow_Right.svg);
}


.Testimonials .Center_Test1 button.slick-prev.slick-arrow:hover:before {
	background: url(../images/new-home-151025/up_web_left_hover.svg);
}

.Testimonials .Center_Test1 button.slick-next.slick-arrow:hover:before {
	background: url(../images/new-home-151025/up_web_right_hover.svg);
}

.tl-hero .px-lg-5 {
    padding-left: 140px !important;
    max-width: 870px;
}

section.tl-hero p {
    color: var(--White, #FFF);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

section.bg-grey {
    background: var(--Text-Grey-50, #F9FAFB);
}

.tl-standards-card li svg {
    min-width: 20px;
    margin-top: 3px;
}

@media (max-width: 1366.51px) {
    section.spleaker_grid.New_Speakers .speker_imge {
        width: 146px;
        height: 146px;
        margin: 0 auto;
    }
}

@media (max-width: 1199.51px) {
    section.spleaker_grid.New_Speakers .speker_imge {
        width: 146px;
        height: 146px;
        margin: 0 auto;
    }
}

@media (max-width: 767.51px) {
    section.spleaker_grid.New_Speakers .about_us_slider_New_Home button.slick-arrow img {
        display: none;
    }
    .spleaker_grid .slick-dots {
        bottom: -47px;
    }
    section.spleaker_grid.New_Speakers .about_us_slider_New_Home button.slick-prev.slick-arrow {
        right: auto;
        left: 0;
    }

    .Center_Test .slick-slide,.Center_Test1 .slick-slide,.New_Speakers .All_Speakers a.Speakers_Btn,.Testimonials.Shorts_Video .Center_Video .slick-slide {
		padding: 0;
	}

	.Center_Test button.slick-prev.slick-arrow,.Center_Test1 button.slick-prev.slick-arrow,.Testimonials.Shorts_Video .Center_Video button.slick-prev.slick-arrow {
		top: -14%;
		left: 8%;
	}

	.Center_Test button.slick-next.slick-arrow,.Center_Test1 button.slick-next.slick-arrow,.Testimonials.Shorts_Video .Center_Video button.slick-next.slick-arrow {
		right: 8%;
		top: -14%;
	}

	.slick-dotted.slick-slider {
		margin-bottom: 30px;
		margin-top: 30px;
	}

	section.Testimonials.Latest_News_Updates.Shorts_Video button.slick-next.slick-arrow,section.Testimonials.Latest_News_Updates.Shorts_Video button.slick-prev.slick-arrow {
		top: -6%;
	}

	.New_Speakers .All_Speakers {
		margin-top: 0;
		text-align: start;
	}

	.Testimonials .Center_Test button.slick-prev.slick-arrow,.Testimonials .Center_Test1 button.slick-prev.slick-arrow,.Testimonials.Shorts_Video .Center_Video button.slick-prev.slick-arrow {
		left: 30%;
		right: 0;
		top: -7%;
	}

	.Testimonials .Center_Test button.slick-next.slick-arrow,.Testimonials .Center_Test1 button.slick-next.slick-arrow,.Testimonials.Shorts_Video .Center_Video button.slick-next.slick-arrow {
		right: 30%;
		top: -7%;
	}

	.Accreditation_by_Bottom_Imgs {
		display: inline-block;
		margin-top: 12px;
	}

	section.Accreditation_by .Accreditation_by_Bottom_Imgs .Support_img {
		padding: 0;
		float: left;
	}

	ul.qualifications_list_slider button.slick-prev.slick-arrow {
		left: -40px;
	}

	ul.qualifications_list_slider button.slick-next.slick-arrow {
		right: -30px;
	}

	.Testimonials,section.Connect_with,section.Qualification_Wise,section.Upcoming_Webinars,section.Why_Pay {
		padding-block: 32px;
	}

	.Testimonials_Title h2,section.Accreditation_by h2,section.Connect_with h2,section.Qualification_Wise h2,section.Upcoming_Webinars h2,section.Why_Pay .Why_Pay_Left h2 {
		font-size: 24px;
	}

	.Testimonials .Center_Test ul.slick-dots,.Testimonials .Center_Test1 ul.slick-dots,.Testimonials.Shorts_Video .Center_Video ul.slick-dots {
		bottom: -32px;
	}

    .Testimonials .Center_Test button.slick-prev.slick-arrow,.Testimonials .Center_Test1 button.slick-prev.slick-arrow {
		right: 50px;
		left: auto;
	}

	.Testimonials .Center_Test button.slick-next.slick-arrow,.Testimonials .Center_Test1 button.slick-next.slick-arrow,section.spleaker_grid.New_Speakers .about_us_slider_New_Home button.slick-next.slick-arrow {
		right: 0;
	}

    .tl-hero .px-lg-5 {
        padding: 1rem !important;
    }



}
