:root {
  --dark-blue: #1D3461;
  --dark-black: #1A1C1E;
  --gray: #2e2e2e;
  --accent: #E12329;
  --dark-gold: #CBBEA4;
  --light-gold: #FEF5E2;
  --white: #fff;
  --heading: Toronto Academy Heading;
}
body{
	margin:0px;
	padding:0px;
}

.tae-announcement-bar {
  display: flex;
  align-items: center;
}
.notice-bar {
	background: var(--dark-gold);
	color: var(--dark-blue);
	padding: 0px 15px;
	margin-right: 10px;
	position: relative;
	z-index: 2;
	font-weight: 500;
	font-size: 14px;
}
.tae-announcement-slide {
	color: var(--white);
  font-size: 14px;
}

.swiper-cube .swiper-cube-shadow{
  display:none;
}

.partners-wrapper {
  width: 100%;
}

.partners-wrapper {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
}
.partners-outer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo-main a {
  display: inline-block;
}

.partners-wrapper .partners-outer img {
	width: auto;
	height: auto;
	max-width: 160px;
	max-height: 90px;
	filter: brightness(0) invert(1);
	transition: 0.3s ease-in;
}

.tae-announcement-track {
	width: 100%;
	display: flex;
}
.star_rating .star { width: 24px; height: 24px; }
.star_rating .star.filled { fill: #f5a623; }
.star_rating .star.empty  { fill: #d8d8d8; }

.review_box {
	background: #FFFAF0;
	padding: 20px;
	display: block;
	min-height: 310px;
}
.review_box p, .review_box h4 {
	margin: 0px;
	padding: 0px;
}
.review_image_box {
	width: 50px;
	height: 50px;
	display: flex;
}
.review_image_box {
	width: 50px;
	height: 50px;
	display: flex;
	border-radius: 50px;
	overflow: hidden;
}
.review_name_container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
}
.review_name_wrapper p small {
	line-height: 20px;
	display: block;
}
.review_wrapper .slick-slide {
	padding: 10px;
}
.review_wrapper .review_slider {
	padding: 0px 40px;
}

.course_information ul {
	padding: 0px;
	margin: 0px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.course_information ul li {
	display: flex;
	align-items: center;
	margin: 0px;
	gap:10px;
	justify-content: space-between;
}
.course_information ul li h5, .course_information ul li p {
	margin: 0px;
	padding: 0px;
	font-size: 16px;
}
.course_information ul li h5 {
	font-weight: 500;
}

.career_outcome_cont h4, .career_outcome_cont p {
	margin: 0px;
	padding: 0px;
}
.career_outcome_cont {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 21px;
}
.career_outcome_cont h4 {
	font-weight: 500;
	color: var(--dark-blue);
}

.label-alignment.field-label {
	color: #fff !important;
}
.accordian-heading {
	padding: 15px 20px;
	background: var(--light-gold);
	font-size: 20px;
	color: var(--dark-blue);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	transition:0.3s ease-in-out;
	cursor: pointer;
	user-select: none;
}
.accordian-main.is-open .accordian-heading {
	background: var(--dark-blue);
	color: var(--light-gold);
	transition:0.3s ease-in-out;
}

.accordian-icon {
	position: relative;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
}
.accordian-icon::before,
.accordian-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	transform: translateY(-50%);
	transition: transform .3s ease, opacity .3s ease;
}
.accordian-icon::after {
	transform: translateY(-50%) rotate(90deg);
}
.accordian-main.is-open .accordian-icon::after {
	transform: translateY(-50%) rotate(0deg);
	opacity: 0;
}

.accordian-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-top: 20px;   /* was margin-top */
	margin-top: 0;
}
.accordian-main.accordian-js .accordian-content {
	max-height: 0;
	padding-top: 0;
	overflow: hidden;
	transition: max-height .35s ease, padding-top .35s ease;
}

.accordian-heading h3{
margin:0px;
font-family: var(--heading);
font-weight: 400;
padding:0px;
}

accordian-main {
margin-top: 30px;
}
.accordian-content h4, .accordian-content p {
margin: 0px;
padding: 0px;
}
.accordian-content {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 0px;
	transition:0.3s ease-in-out;
}
.module-box h4 {
font-weight: 500;
color: var(--dark-blue);
}

.accordian-main {
	margin-top: 25px;
}

.accordian-main.is-open .accordian-content {
	margin-top: 10px;
	transition:0.3s ease-in-out;
}

.accordian-content ul {
	margin: 0px;
}

.faq-inner {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 15px 20px;
	cursor: pointer;
	user-select: none;
	color: var(--dark-blue);
}
.faq-question h5 { margin: 0; padding: 0; }

.faq-icon {
	position: relative;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
}
.faq-icon::before,
.faq-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	transform: translateY(-50%);
	transition: transform .3s ease, opacity .3s ease;
}
.faq-icon::after { transform: translateY(-50%) rotate(90deg); }
.faq-wrapper.is-open .faq-icon::after {
	transform: translateY(-50%) rotate(0deg);
	opacity: 0;
}

.faq-answer { padding: 0 20px 15px; }
.faq-answer p { margin: 0; }

.faq-inner.faq-js .faq-answer {
	max-height: 0;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
	transition: max-height .35s ease, padding .35s ease;
}
.faq-inner.faq-js .faq-wrapper.is-open .faq-answer {
	padding-bottom: 15px;
	padding-top: 10px;
}

.faq-main {
	padding-top: 80px;
}
.faq-container h2 {
	margin: 0px;
	color: var(--dark-main);
}
.faq-question {
	background: var(--light-gold);
}

.faq-question h5 {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
}
.faq-inner.faq-js {
	margin-top: 30px;
}

.faq-wrapper.is-open .faq-question {
	background: var(--dark-blue);
	color: var(--white);
}

.elementor-element .course_featured img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: 100%;
	max-height: 100%;
	object-position: center;
}
.course_featured .elementor-element {
	height: 100%;
}

.img_content_wrapper {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.img_content_wrapper img {
	width: 200px;
	height: auto;
}
.img_content_right h3, .img_content_right p {
	margin: 0px;
	padding: 0px;
}

.img_with_content {
	padding: 50px 0px 0px;
}
.img_content_right {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.img_content_right h3 {
	color: var(--dark-main);
}

.team_member_outer {
	width: 100%;
	max-width: 1380px;
	margin: auto;
}
.team_member_heading {
	text-align: center;
}
.team_member_heading h2, .team_member_heading p {
	margin: 0px;
	padding: 0px;
}
.team_member_heading p {
	max-width: 700px;
	margin: 10px auto 0;
}

.team_member_group {
	margin-top: 30px;
}
.team_member_group {
	margin-top: 30px;
	display: flex;
	gap: 20px;
	justify-content: space-between;
}
.team_member_box {
	width: 33%;
}
.team_member_content h4, .team_member_content p {
	margin: 0px;
}
.team_member_content h4 {
	font-family: var(--heading);
	font-weight: 400;
	color: var(--dark-blue);
	font-size: 22px;
	line-height: 34px;
}
.team_member_content {
	text-align: center;
	margin-top: 10px;
}


.tae-marquee {
	display: flex;
	align-items: center;
	overflow: hidden;
}
.tae-marquee .notice-bar {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
    margin: 0px;
    padding: 5px 20px;
}
.tae-marquee-viewport {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}
.tae-marquee-track {
	display: flex;
	width: max-content;
	animation: tae-marquee var(--tae-duration, 20s) linear infinite;
}
.tae-marquee-group {
	display: flex;
	flex-shrink: 0;
}
.tae-marquee-item {
	white-space: nowrap;
	padding-right: 20px;   /* space between announcements */
}
.tae-marquee.is-paused .tae-marquee-track {
	animation-play-state: paused;
}
@keyframes tae-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}


.tae-marquee {
    background: var(--dark-blue);
}
.tae-marquee-viewport span {
    color: #fff;
    font-size: 16px;
}

.header-button a {
    padding: 10px 15px !important;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
}
div#mob-menu-button.header-button a i {
    font-size: 24px;
}

div#mob-menu-button.header-button a svg {
    width: 20px;
}
div#mob-menu-button.header-button a span {
    font-style: normal;
    font-size: 12px;
}
.mob-menu ul.e-n-menu-heading {
    flex-direction: column;
}
.mob-menu ul.e-n-menu-heading li {
    width: 100%;
    flex-direction: column;
    border-bottom: 1px solid #ddd;
}
.e-off-canvas__content .mob-menu ul.e-n-menu-heading li.e-n-menu-item .e-n-menu-content{
	
    padding: 0px !important;
    position: relative;
    width: 100%;
}
.e-off-canvas__content .mob-menu ul.e-n-menu-heading li.e-n-menu-item .e-n-menu-content.e-active {
	padding: 10px 0px 30px 16px !important;
}
.mob-menu .elementor-widget-container .elementor-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mob-menu .elementor-widget-container p.elementor-post__title a {
    padding: 10px;
    display: block;
    width: 100%;
    background: #fafaff;
    font-size: 14px !important;
    line-height: 22px !important;
    letter-spacing: 0px;
}


.mob-menu ul.e-n-menu-heading li .e-n-menu-title {
    padding: 0px;
    width: 100%;
}
.mob-menu ul.e-n-menu-heading li .e-n-menu-title span.e-n-menu-title-text {
    width: 100%;
    display: block;
    padding: 10px 10px;
}
.mob-menu ul.e-n-menu-heading li .e-n-menu-title a{
    width: 100%;
    display: block;
}
.mob-menu ul.e-n-menu-heading li .e-n-menu-title .e-n-menu-title-container {
    width: 100%;
}


.img-marquee {
	display: flex;
	gap: var(--marquee-gap, 20px);
	height: var(--marquee-height, 600px);
	overflow: hidden;
	/* fades the top and bottom edges so images don't cut off hard */
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
	mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}
.img-marquee-col {
	flex: 1 1 0;
	min-width: 0;
	overflow: hidden;
}
.img-marquee-track {
	display: flex;
	flex-direction: column;
	gap: var(--marquee-gap, 20px);
	animation: img-marquee-up var(--marquee-speed, 60s) linear infinite;
	will-change: transform;
}
.img-marquee-item img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}
.img-marquee:hover .img-marquee-track {
	animation-play-state: paused;
}
@keyframes img-marquee-up {
	from { transform: translateY(0); }
	to   { transform: translateY(calc(-50% - (var(--marquee-gap, 20px) / 2))); }
}
@media (prefers-reduced-motion: reduce) {
	.img-marquee-track { animation: none; }
	.img-marquee { mask-image: none; -webkit-mask-image: none; }
}



@media (prefers-reduced-motion: reduce) {
	.tae-marquee-track { animation: none; }
	.tae-marquee-viewport { overflow-x: auto; }
}


.highlight-effect span.char {
	color: #626469 !important;
	transition: none !important;   /* no fade - characters snap on */
}
.highlight-effect span.char.is-lit {
	color: #1D3461 !important;
}

/* The blinking block on the character currently being revealed. */
.highlight-effect span.char.is-cursor {
	border-right: 2px solid #1D3461;
	margin-right: -2px;
	animation: highlight-cursor-blink .7s step-end infinite;
}
@keyframes highlight-cursor-blink {
	50% { border-right-color: transparent; }
}

/* Keeps words from breaking mid-word across lines. */
.highlight-effect span.word {
	white-space: nowrap;
}




@media (prefers-reduced-motion: reduce) {
	.highlight-effect span.char {
		color: #1D3461 !important;
	}
	.highlight-effect span.char.is-cursor {
		border-right: none;
		animation: none;
	}
}



.color-blue{
	color:var(--dark-blue);
}
.heading-main {
    font-family: var(--heading);
    font-weight: 400;
    font-size: 52px;
    line-height: 60px;
}


.heading-2 {
    font-family: var(--heading);
    font-weight: 400;
    font-size: 42px;
    line-height: 50px;
}
.heading-3 {
	font-family: var(--heading);
	font-weight: 400;
	font-size: 32px;
	line-height: 36px;
}




.event_outer {
	width: 100%;
	padding: 80px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.event_outer h2, .event_outer p {
	margin: 0px;
}
.event_main {
	background: var(--light-gold);
	display: flex;
	gap: 20px;
	padding: 20px;
}
.event_main_rows {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.timing_sec {
	width: 200px;
}
.timing_sec ul {
	padding: 0px;
	margin: 0px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.event_heading h3, .event_heading p {
	margin: 0px;
	padding: 0px;
}
.event-timing .elementor-shortcode {
	color: #fff;
}
.event-timing .elementor-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}
.event_heading {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: calc(100% - 200px);
}
.event_heading a {
	color: var(--accent);
	font-size: 14px;
	font-weight: 600;
}
.timing_sec ul li {
	padding-left: 30px;
	position: relative;
}
.timing_sec ul li svg {
	position: absolute;
	left: 0px;
	color: var(--accent);
	width: 20px;
	height: auto;
	top: 5px;
}
.timing_sec ul li span {
	font-size: 16px;
	font-weight: 500;
	display: block;
}
.main-contain {
	width: 100%;
	max-width: 1380px;
	/* margin: auto; */
}
.ta_row {
	width: 100%;
	display: flex;
	gap: 20px;
}
.ta-col-4 {
	width: 40%;
}
.ta-col-6 {
	width: 60%;
}

.e-n-accordion .e-n-accordion-item-title {
	justify-content: space-between;
}


/***Event Single Page***/
.events_main_page_outer {
	width: 100%;
	padding: 80px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.events_main_page_container {
	width: 100%;
	max-width: 1380px;
}
.events_row {
	width: 100%;
	display: flex;
	gap: 20px;
}
.passed_events_side {
	width: 30%;
	padding-top: 12px;
}
.upcoming_events_main {
	width: 70%;
}
.events_main_page_container h2, .events_main_page_container h3, .events_main_page_container h4, .events_main_page_container p {
	margin: 0px;
	padding: 0px;
}
.upcoming_events_boxes_main {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 20px;
	border-top: 1px solid #888;
	padding-top: 20px;
}
.upcoming_event_box {
	display: flex;
	gap: 20px;
	align-items: center;
}
.upcoming_event_content {
	width: calc(100% - 300px);
}
.upcoming_event_img {
	width: 300px;
	height: 200px;
}
.upcoming_event_img a {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.elementor .upcoming_event_img img {
	width: 100%;
	height: 100%;
	object-position: top center;
	object-fit: cover;
	max-width: 100%;
}
.upcoming_event_content h3 a {
	font-size: 26px;
	color: var(--dark-blue);
	font-family: var(--heading);
	line-height: 36px;
	display: block;
	text-decoration: none;
}
.upcoming_event_content p {
	font-size: 14px;
	line-height: 24px;
}
.upcoming_event_schedule {
	background: var(--light-gold);
	margin-top: 15px;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}
.upcoming_event_inner {
	display: flex;
	gap: 20px;
}
.date_time_box {
	padding-left: 30px;
	position: relative;
}
.date_time_box svg {
	color: var(--color-red);
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0px;
	top: 4px;
}
.date_time_box p {
	font-size: 16px;
	line-height: 30px;
}
.upcoming_event_schedule .event_view_btn {
	background: var(--dark-blue);
	color: #fff !important;
	padding: 10px 20px;
	display: inline-block;
}
.passed_event_outer {
	display: flex;
	flex-direction: column;
	gap: 30px;
	border-top: 1px solid #888;
	margin-top: 20px;
	padding-top: 20px;
}

.passed_event_box a h4 {
	font-family: var(--heading);
	font-weight: 400;
	font-size: 22px;
	color: var(--dark-blue);
	line-height: 32px;
}
.event_schedule {
	display: flex;
	gap: 20px;
	align-items: center;
}
.event_schedule p {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--gray);
}


@media only screen and (max-width:1024px){
	.partners-wrapper {
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.ta_row {
	flex-direction: column;
}
.ta-col-4 {
	width: 100%;
}
.ta-col-6 {
	width: 100%;
}

.events_row {
	flex-direction: column;
}
.upcoming_events_main {
	width: 100%;
}
.passed_events_side {
	width: 100%;
	padding-top: 12px;
}
.partners-wrapper .partners-outer img {
	max-width: 130px;
	max-height: 40px;
}
}



@media only screen and (max-width:767px){
	.partners-wrapper {
	grid-template-columns: repeat(4, 1fr);
}
.partners-wrapper .partners-outer img {
	max-width: 75px;
	max-height: 30px;
}
.review_wrapper .review_slider {
	padding: 0PX;
}
.team_member_group {
	flex-wrap: wrap;
}
.team_member_box {
	width: 100%;
	margin: auto;
}

.img_content_wrapper {
    flex-direction: column;
}
.mob-center-menu ul li a {
    text-align: center;
    margin: auto;
    width: 100%;
    display: block;
}


.heading-main {
    font-size: 42px;
    line-height: 50px;
}
.heading-2 {
    font-size:36px;
    line-height: 42px;
}
.timing_sec {
	width: 140px;
}
.event_heading {
	width: calc(100% - 140px);
}
#breadcrumbs .elementor-icon-list-items {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		overflow: hidden;
	}

	#breadcrumbs .elementor-icon-list-item {
		flex: 0 0 auto;      /* Home, separators and short items keep their width */
		white-space: nowrap;
		min-width: 0;
	}

	/* Only the last crumb shrinks and truncates. */
	#breadcrumbs .elementor-icon-list-item:last-child {
		flex: 0 1 auto;
		min-width: 0;
		overflow: hidden;
	}

	#breadcrumbs .elementor-icon-list-item:last-child .elementor-icon-list-text {
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		min-width: 0;
	}

	.upcoming_event_img {
	width: 100%;
	height: 200px;
}
		.upcoming_event_content {
	width: 100%;
}
.upcoming_events_boxes_main {
	flex-direction: row;
	flex-wrap: wrap;
	flex-direction: unset;
}
.upcoming_event_box {
	width: calc(50% - 20px);
		flex-direction: column;
}
.upcoming_event_schedule {
	flex-direction: column;
}
.upcoming_event_inner {
	flex-direction: column;
	width: 100%;
	gap: 20px;
}
.date_time_box {
	padding-left: 0px;
	position: relative;
}
.date_time_box svg {
	position: unset;
	margin: auto;
	display: block;
}
.date_time_box p {
	display: block;
	text-align: center;
	margin-top: 5px;
}
.upcoming_event_schedule .event_view_btn {
	width: 100%;
	text-align: center;
}

}

@media only screen and (max-width:560px){
	.course_information ul li {
		flex-direction: column;
		gap: 0px;
	}
	.accordian-heading h3 {
		font-size: 18px;
		font-weight: bold;
	}
	.faq-question h5 {
		font-weight: 500;
		font-size: 14px;
		line-height: 22px;
	}
	.faq-answer p {
		font-size: 14px;
		line-height: 24px;
	}
	.faq-answer {
		padding-left: 0px;
		padding-right: 0px;
	}
	.accordian-content ul li {
		margin-bottom: 10px;
	}
	.event_main {
	flex-direction: column;
	}
	.timing_sec {
	width: 100%;
}
.event_heading {
	width: 100%;
}
.timing_sec ul {
	flex-direction: row;
}

	.partners-wrapper {
	grid-template-columns: repeat(3, 1fr);
}
.upcoming_event_box {
	width: 100%;
}
.upcoming_event_img {
	height: 220px;
}

}