/* IMAGE WITH TEXT STYLE START */
.iamge-with-text {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}
.iamge-with-text .content-block p:empty {
	display: none;
}
.iamge-with-text .media-block {
	width: 55.8%;
}
.iamge-with-text .media-block img {
	width: 100%;
}
.iamge-with-text .content-block {
	width: 44.2%;
	padding: 0 36px;
	row-gap: 36px;
	display: flex;
	flex-direction: column;
}
.iamge-with-text .content-block p {
	margin: 0;
}
.iamge-with-text .content-block .multi-line strong {
	padding-top: 10px;
	display: inline-block;
}
.cta a {
	display: inline-block;
	text-decoration: none;
	padding: 9px 16px;
	border-radius: 100px;
	background: #365594;
	border: 1px solid #365594;
	color: #fff;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
  font-family: "Source Sans Pro";
}
.cta a:hover {
	border: 1px solid #1F3165;
	background: #1F3165;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 4px 8px 0 rgba(0, 0, 0, 0.00);
}

.cta button {
	display: inline-block;
	text-decoration: none;
	padding: 9px 16px;
	border-radius: 100px;
	background: #365594;
	border: 1px solid #365594;
	color: #fff;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	font-family: "Source Sans Pro";
	transition: all .3s ease;
}

@media (max-width: 991px) {
  .iamge-with-text {
    row-gap: 30px;
  }
  .iamge-with-text .media-block {
    width: 100%;
  }
  .iamge-with-text .content-block {
    width: 100%;
    padding-left: 0;
    row-gap: 30px;
  }
}


/* TOP 20 UNIVRSITY STYLE START */
/* .top-twenty-university {
  background: #121D2F;
} */
.top-twenty-university .top-twenty-university-inner {
	display: flex;
	height: 100%;
	flex-wrap: wrap;
	row-gap: 36px;
	margin: 0 -18px;
}
.top-twenty-university-items {
	padding: 0 18px;
	width: 20%;
}
.top-twenty-university-block {
	background: #365594;
	padding: 20px 16px;
	display: flex;
	align-items: center;
	flex-direction: column;
	row-gap: 12px;
	width: 100%;
	height: 100%;
}
.top-twenty-university-block img {
	width: 96px;
}
.top-twenty-university-block h4 {
	color: #FFF;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
}

@media (max-width: 991px) {
	.top-twenty-university-items {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.top-twenty-university .top-twenty-university-inner {
		flex-wrap: wrap;
		gap: 30px;
		margin: 0;
	}
	.top-twenty-university-block {
		width: 100%;
	}
	.top-twenty-university-items {
		width: 100%;
		padding: 0;
	}	
	.top-twenty-university-block h4 {
		font-size: 18px;
	}	
}

/* PROGRAM UG PG STYLE START */
.program-ug-pg .program-card a {
	color: #444444;
	text-decoration: none;
}
.row.program-ug-pg-row {
	row-gap: 36px;
}
.program-card a {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 36px;
	color: #444444;
	text-decoration: none;
}
.program-ug-pg .program-card a {
	color: #444444;
	text-decoration: none;
	gap: 0;
}
.program-card-image {
	position: relative;
	width: 100%;
	height: 327px;
	overflow: hidden;
}
.program-ug-pg .program-card a:hover .program-card-image  {
	/*background: rgb(31, 49, 101);*/
}
.program-ug-pg .program-card a:hover .program-card-image::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(53, 75, 140, 0.50) 0%, rgba(53, 75, 140, 0.50) 100%);
	z-index: 1;
}
.program-ug-pg .program-card a:hover .cta button  {
	border: 1px solid #1F3165;
	background: #1F3165;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 4px 8px 0 rgba(0, 0, 0, 0.00);
}
.program-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform .3s ease-in-out,opacity .3s ease-in-out;
}
.program-ug-pg .program-card a:hover img {
	/*opacity: .5;*/
	transform: scale(1.1);
}
.program-card .program-card-title {
	position: relative;
	margin: -43px 0 0 -1px;
	width: auto;
}
.program-card .program-card-title h3 {
    position: relative;
    padding: 13px 22px 4px 1px;
    text-transform: capitalize;
    display: inline-block;
    background: #F1F1F1;
    z-index: 1;
    text-decoration: none;
    margin-right: -1px;
}
.program-card .program-card-title::before {
	content: "";
	display: block;
	width: 75px;
	height: 3px;
	background-color: #FBCB3B;
	margin: 0;
	bottom: -16px;
	position: absolute;
}
.program-card .program-card-title::after {
	border-bottom: 45px solid #f1f1f1;
	border-right: 45px solid transparent;
	content: " ";
	display: inline-block;
	position: absolute;
	z-index: 1;
	right: auto;
}
.program-card-details {
	display: flex;
	flex-direction: column;
	gap: 36px;
}
.program-card-date-duration {
	padding-top: 14px;
}
@media (max-width: 767px) {
.row.program-ug-pg-row {
	row-gap: 30px;
}  
.program-card-image {
	height: 181px;
}
  .program-card-details {
    gap: 30px;
  }
  .program-card .program-card-title h3{
    padding: 15.5px 17px 5.5px 1px;
  }
  .program-card a {
	gap: 30px;
  }
}

/* STUDENT STORIES STYLE START */
.custom-section.student-stories {
	padding: 72px 0 128px 0;
}
.student-stories-slider {
	background: #F5F5F5;
	padding: 24px;
}
.student-stories-slider .iamge-with-text .media-block {
	width: 47.8%;
	height: 317px;
	overflow: hidden;
}
.student-stories-slider .iamge-with-text .media-block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.student-stories-slider .iamge-with-text .content-block {
	width: 52.2%;
}
.owl-carousel.student-stories-slider .owl-nav button {
	position: absolute;
	top: 50%;
	margin-top: -25px;
	background: #eee;
	z-index: 1;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-size: 21.053px;
	line-height: 18.421px;
}
.owl-carousel.student-stories-slider .owl-nav button.owl-prev {
	left: 0;
}
.owl-carousel.student-stories-slider .owl-nav button.owl-next {
	right: 0;
}
.student-stories-slider .owl-dots {
	display: flex;
	justify-content: center;
	gap: 16px;
	padding: 8px 0 0 0;
	position: absolute;
	bottom: -46px;
	margin: 0 auto;
	width: 100%;
}
.student-stories-slider .owl-dots .owl-dot {
	width: 30px;
	height: 30px;
	display: inline-block;
	background: rgba(217, 205, 153, 0.4);
	border-radius: 100px;
  border: 0;
}
.student-stories-slider .owl-dots .owl-dot.active {
	background: rgba(251, 203, 59, 1);
}

@media (max-width: 991px) {
.custom-section.student-stories {
	padding: 45px 4px 89px 4px;
}  
.student-stories-slider .iamge-with-text .media-block {
	width: 100%;
}
.student-stories-slider .iamge-with-text .content-block {
	width: 100%;
	row-gap: 14px;
}
.student-stories-slider {
	padding: 15px;
}
.mini-custom-title h4::after {
	width: 75px;
}
.student-stories-slider .owl-dots {
	gap: 5.42px;
	padding: 0;
	bottom: -44px;
}
.student-stories-slider .owl-dots .owl-dot {
	width: 23px;
	height: 23px;
}
.owl-carousel.student-stories-slider .owl-nav button {
	width: 76px;
	height: 76px;
	font-size: 32px;
	top: 173.5px;
	margin-top: -38px;
}
}

.hero-section {
	overflow: hidden;
}
.hero-section .container {
	position: relative;
	z-index: 1;
	padding: 48px;
}
.row.hero-section-inner {
	justify-content: space-between;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: #fff;
}
.hero-section-inner {
	display: flex;
	flex-wrap: wrap;
	min-height: 744px;
	align-items: center;
}
.hero-section .hero-banner-image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 1006px;
}
.herosection-left {
	width: 50%;
	padding-right: 10px;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	flex-direction: column;
}
.herosection-left h1 {
	color: #FFF;
}
.herosection-left p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  margin: 0;
  padding: 8px 0;  
  color: #FFF;
  letter-spacing: 0.12px;
}
.herosection-left li {
	margin-bottom: 8px;
}
.herosection-left li:last-child {
	margin-bottom: 0;
}
.herosection-right {
	width: 50%;
	color: #fff;
}
.register-form {
	background: #fff;
	color: #333;
}
.herosection-right .register-form .form-title {
	padding: 20px 28px;
	border-bottom: 1px solid #aaa;
}
.register-form .lp-form-body {
	padding: 28px 16px;
	row-gap: 28px;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
.register-form .fieldset .field label {
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	color: #444;
	width: 100%;
	font-family: 'Source Sans Pro';
}
.register-form .full-field.field {
	width: 100%;
}
.register-form .field {
	display: flex;
	flex-wrap: wrap;
	row-gap: 8px;
	padding: 0 12px;
}
.register-form .fieldset .field label span {
	color: #B01C2E;
	margin-left: 6px;
	border: 0;
}
.register-form .field input, .register-form .field select {
	width: 100%;
	border: 1px solid #aaaaaa;
	border-radius: 0;
	padding: 6px;
	min-height: 35px;
	background-color: #fff;
	outline: none;
	font-size: 18px;
	line-height: 28px;
}
.register-form .field select {
	background: #fff url("https://s48606.p938.sites.pressdns.com/wp-content/uploads/2026/01/form-dropdown-arrown.svg") no-repeat right 16px center;
	appearance: none;
  padding: 8px;
}
.register-form-submit {
	/*padding: 0 12px;*/
}
.form-note {
	background: #FFF;
	font-size: 18px;
	line-height: 28px;
	color: #444444;
	margin: 0;
}
.form-note a {
	color: #444444;
}
.lp-form-footer {
	padding: 28px;
	border-top: 1px solid #aaa;
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}
.herosection-left ul {
	list-style: disc;
	padding-left: 15px;
	display: inline-block;
}
.herosection-left li {
	font-size: 18px;
	line-height: 28px;
}
.title-with-button {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	border-bottom: 1px solid #aaaaaa;
	gap:10px;
}
.register-form-popup .form-title {
	padding: 28px;
	/*border-bottom: 1px solid #AAA;*/
}

.register-form-tahnkyou-msg .thankyou-title {
	color: #444;
	/*border-bottom: 1px solid #aaaaaa;*/
}
.register-form-tahnkyou-msg .lp-form-body {
	padding: 28px;
}
.register-form-tahnkyou-msg .lp-form-footer {
	padding: 28px;
	border-top: 1px solid #aaa;
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}
.download-link {
	width: 100%;
}
.download-link a {
	color: #365594;
	font-weight: 400;
	text-decoration: none;
	font-family: 'Source Sans Pro';
	font-size: 18px;
	line-height: 28px;
}
.download-link span {
	gap: 8px;
	display: flex;
	align-items: center;
}

.register-form-popup {
	max-width: 1270px;
}
.register-form-popup .modal-content .modal-inner {
	background:#121D2F;
	display: flex;
	flex-wrap: wrap;
}
.modal-left {
	width: 44%;
	padding: 32px;
	color: #fff;
}
.modal-right {
	width: 56%;
}
.modal-content .btn-close {
	position: absolute;
	right: 32px;
	top: 32px;
	padding: 0;
	opacity: 1;
	width: 14px;
	height: 14px;
	cursor: pointer;
}
.modal-program {
	display: flex;
	flex-wrap: wrap;
	row-gap: 36px;
}
.modal-program > img {
	width: 100%;
}
.modal-program-duration-details {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-between;
}
.modal-program-duration-details > * {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	font-weight: 400;
	color: #fff;
}
.modal-program-duration-details > * span {
	font-weight: 700;
}
.modal-program-duration-details > * span img {
	margin-left: -32px;
	margin-right: 8px;
}
.modal-program-duration-details .modal-program-year {
	padding-left: 32px;
}
.modal-program-duration-details .modal-program-duration {
	min-width: 129px;
}

.modal-content .btn-close {
	padding: 0;
	background-image: none;
	width: 14px;
	height: 14px;
	background-size: 14px;
	box-shadow: none;
	outline: none;
	position: relative;
	right: 28px;
	top: 0;
	color: #444444;
	line-height: 14px;
}
/*.modal-program p {
	margin-bottom: 0;
}
*/

.register-form-popup.show-thank-you {
	max-width: 720px;
}
#register-thankyou-popup .register-form-popup {
	max-width: 720px;
}
#register-thankyou-popup .register-form-popup .modal-content .modal-inner {
}
/*#register-thankyou-popup .register-form-popup .modal-content .modal-inner .btn-close {
	background-image: url(../images/close.svg);
}*/

.success-note {
	border: 1px solid #2E7D32;
	background: #2E7D32;
	padding: 16px;
	position: relative;
	padding-left: 56px;
	color: #fff;
	margin: 0;
}
.success-note::before {
	content: "";
	background: url("https://s48606.p938.sites.pressdns.com/wp-content/uploads/2026/01/check-circle-white.svg") no-repeat;
	width: 32px;
	height: 32px;
	display: inline-block;
	position: absolute;
	top: 16px;
	left: 16px;
}
.success-note strong {
	width: 100%;
	display: block;
}
.title-with-button.title-with-button-responsive {
	display: none;
}
.lp-btn {
	background: #365594;
	border: 1px solid #365594;
	outline: none;
	padding: 20px;
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	min-width: 210px;
	font-family: "Source Sans Pro";
	text-decoration: none;
}
.lp-btn:hover {
	border: 1px solid #1F3165;
	background: #1F3165;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 4px 8px 0 rgba(0, 0, 0, 0.00);
    color: #ffffff;
}
.lp-btn span {
	padding: 0 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lp-btn span img {
	padding-left: 8px;
}


.modal-content .register-form-tahnkyou-msg .btn-close {
	/*background-image: url(../images/close.png);*/
	color: #444444;
}

@media (min-width: 768px) {
	.form-popup-title-mobile {
		display: none;
	}
}

@media (min-width: 992px) {
	.header-logo .header-logo-responsive {
		display: none;
	}
	.hero-banner-media-responsive {
		display: none;
	}  
	.hero-section {
		background-repeat: no-repeat;
		background-size: cover;
		position: relative;
		background: linear-gradient(359deg, #121D2F 2.07%, rgba(8, 43, 64, 0.00) 99.16%);
	}
	/*.hero-section::after {
		background: linear-gradient(270deg, rgba(22, 27, 32, 0.12) 35%, rgba(22, 27, 32, 0.75) 70%);
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}*/
	.read-more-btn {
		display: none;
	}
}

@media (max-width: 991px) {
.header-container {
	padding: 14px 0;
	background: #fff;
	text-align: center;
}	
.header-logo .header-logo-desktop {
	display: none;
}
.header-logo img {
	width: 122px;
}
.hero-section .container {
	max-width: 100%;
	padding: 0;
}
.hero-section-inner {
	min-height: inherit;
}
.hero-banner-media-responsive {
	width: 100%;
}
.hero-banner-media-responsive img{
	width: 100%;
}	
.hero-section .herosection-left {
	background: #121D2F;
	padding: 45px 12px;
	width: 100%;
	gap: 30px;
	align-content: center;
	text-align: center;
}
/*.hero-section .herosection-left::after {
	background: linear-gradient(270deg, rgba(22, 27, 32, 0.12) 35%, rgba(22, 27, 32, 0.75) 70%);
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}*/
.hero-section .herosection-left > * {
	z-index: 1;
}
.herosection-right {
	width: 100%;
}
.logo {
	left: 0;
	top: 0;
	position: relative;
	margin-bottom: 8px;
}
.register-form .field {
	width: 100%;
}
.register-form .lp-form-body {
	padding: 30px 22px 0 22px;
	row-gap: 24px;
}
.herosection-right .register-form .form-title {
	padding: 45px 22px 30px 22px;
}
.herosection-right .register-form.register-form-tahnkyou-msg .form-title {
	padding: 45px 22px 20px 22px;
}
.herosection-right .register-form.register-form-tahnkyou-msg .lp-form-body{
	padding: 30px 22px;
}
.herosection-right .register-form.register-form-tahnkyou-msg .lp-form-footer {
	gap: 16px;
	padding: 30px 22px 45px 22px;
}
.register-form.register-form-tahnkyou-msg .lp-form-body {
	padding: 28px;
}
.herosection-left ul {
	max-width: 280px;
	text-align: left;
}
.herosection-left li {
	font-size: 16px;
	line-height: 24px;
}
.hero-section .herosection-left h1 {}

.form-note {
	margin: 0;
}
.lp-form-footer {
	padding: 22px 22px 45px 22px;
	border: 0;
	gap: 22px;
}
.herosection-left p {
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0.1px;
}
.register-form-popup .form-title {
	padding: 28px;
	/*width: 100%;*/
	padding-right: 50px;
}
.register-form-popup .register-form-tahnkyou-msg .form-title {
	color: #444444;
}
.modal-content .btn-close {
	/*right: 16px;
	top: 29px;
	padding: 6px 0;
	background-image: url(../images/close-white.svg);*/
}
.modal-program-duration-details .modal-program-duration {
	min-width: inherit;
}
}

@media (max-width: 767px) {
.register-form .field {
	width: 100%;
  padding: 0;
}	
.title-with-button{
	display: none;
}  
.register-form-popup .form-title {
	color: #ffffff;
}
.title-with-button.title-with-button-responsive {
	display: flex;
  width: 100%;
}
.register-form-popup .modal-content .modal-inner .btn-close {
	color: #fff;
}
.register-form-tahnkyou-msg .title-with-button {
	display: flex;
}  
.modal-left {
	width: 100%;
	padding: 20px 22px;
	color: #262626;
}
.modal-program > img {
	width: 100%;
}
.modal-right {
	width: 100%;
}
/*.modal-content .btn-close {
	background-image: url(../images/close-white.svg);
	position: inherit;
	padding: 24px;
	line-height: normal;
	background-position: top 24px right 24px;
	width: 100%;
}*/
.modal-program {
	gap: 0;
}
.register-form-popup .register-form .custom-modal-title {
	display: none;
}

.register-form-tahnkyou-msg .form-title {
	padding: 20px 22px;
}
.register-form-popup .register-form .lp-form-body {
	padding: 20px 22px;
}
.register-form-popup .register-form .lp-form-footer {
	padding: 20px 22px;
	gap: 16px;
}

.modal-program-duration-details {
	margin: 30px 0;
}
.read-more-text {
	max-height: 60px;
	overflow: hidden;
	transition: max-height 0.4s ease;
	margin: 0;
}
.read-more-text.expanded {
  max-height: 500px;         /* enough to show full text */
}
.read-more-text.expanded +.read-more-btn  {
  margin-top: 0;    
}
.read-more-btn {
	color: #fff;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	position: relative;
	margin-top: 12px;
}
.read-more-btn a {
	color: #fff;
	font-weight: 600;
}
.read-more-btn::after {
	background: url('https://s48606.p938.sites.pressdns.com/wp-content/uploads/2026/01/arrow-white.png') no-repeat center;
	width: 20px;
	height: 20px;
	display: inline-block;
	content: "";
}
.read-more-text.expanded + .read-more-btn::after {
	transform: rotate(180deg);
}
.read-more-text p {
	color: #fff;
	margin-bottom: 20px;
}
.modal-program-duration-details > * {
	display: flex;
	flex-wrap: wrap;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
}
.lp-btn {
	/*width: 100%;*/
}
}

.video-block {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.video-block iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}
.bg-blue{
	background-color: #1F3165;
}
.bg-light-blue{
	background-color: #365594;
}
/* IMAGE WITH TEXT STYLE START */
.iamge-with-text {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}
.iamge-with-text .media-block {
	width: 55.8%;
}
.iamge-with-text .media-block img {
	width: 100%;
}
.iamge-with-text .content-block {
	width: 44.2%;
	padding: 0 36px;
	row-gap: 36px;
	display: flex;
	flex-direction: column;
}
.iamge-with-text .content-block p {
	margin: 0;
}
.cta a {
	display: inline-block;
	text-decoration: none;
	padding: 9px 16px;
	border-radius: 100px;
	background: #354B8C;
	border: 1px solid #354B8C;
	color: #fff;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
  font-family: "Source Sans Pro";
}
.cta a:hover {
	border: 1px solid #1F3165;
	background: #1F3165;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 4px 8px 0 rgba(0, 0, 0, 0.00);
}

.cta button {
	display: inline-block;
	text-decoration: none;
	padding: 9px 16px;
	border-radius: 100px;
	background: #354B8C;
	border: 1px solid #354B8C;
	color: #fff;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	font-family: "Source Sans Pro";
	transition: all .3s ease;
}

@media (max-width: 991px) {
  .iamge-with-text {
    row-gap: 30px;
  }
  .iamge-with-text .media-block {
    width: 100%;
  }
  .iamge-with-text .content-block {
    width: 100%;
    padding-left: 0;
    row-gap: 30px;
  }
}


/* TOP 20 UNIVRSITY STYLE START */
.top-twenty-university {
  background: #121D2F;
}
.top-twenty-university .top-twenty-university-inner {
	display: flex;
	height: 100%;
	flex-wrap: wrap;
	row-gap: 36px;
	margin: 0 -18px;
}
.top-twenty-university-items {
	padding: 0 18px;
	width: 20%;
}
.top-twenty-university-block {
	background: #333333;
	padding: 20px 16px;
	display: flex;
	align-items: center;
	flex-direction: column;
	row-gap: 12px;
	width: 100%;
	height: 100%;
}
.top-twenty-university-block img {
	width: 96px;
}
.top-twenty-university-block h4 {
	color: #FFF;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
}

@media (max-width: 991px) {
	.top-twenty-university-items {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.top-twenty-university .top-twenty-university-inner {
		flex-wrap: wrap;
		gap: 30px;
		margin: 0;
	}
	.top-twenty-university-block {
		width: 100%;
	}
	.top-twenty-university-items {
		width: 100%;
		padding: 0;
	}	
	.top-twenty-university-block h4 {
		font-size: 18px;
	}	
}

/* PROGRAM UG PG STYLE START */
.program-ug-pg .program-card a {
	color: #444444;
	text-decoration: none;
}
.row.program-ug-pg-row {
	row-gap: 36px;
}
.program-card a {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 36px;
	color: #444444;
	text-decoration: none;
}
.program-ug-pg .program-card a {
	color: #444444;
	text-decoration: none;
	gap: 0;
}
.program-card-image {
	position: relative;
	width: 100%;
	height: 327px;
	overflow: hidden;
}
.program-ug-pg .program-card a:hover .program-card-image  {
	/*background: rgb(31, 49, 101);*/
}
.program-ug-pg .program-card a:hover .program-card-image::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(53, 75, 140, 0.50) 0%, rgba(53, 75, 140, 0.50) 100%);
	z-index: 1;
}
.program-ug-pg .program-card a:hover .cta button  {
	border: 1px solid #1F3165;
	background: #1F3165;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 4px 8px 0 rgba(0, 0, 0, 0.00);
}
.program-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform .3s ease-in-out,opacity .3s ease-in-out;
}
.program-ug-pg .program-card a:hover img {
	/*opacity: .5;*/
	transform: scale(1.1);
}
.program-card .program-card-title {
	position: relative;
	margin: -43px 0 0 -1px;
	width: auto;
}
.program-card .program-card-title h3 {
    position: relative;
    padding: 13px 22px 4px 1px;
    text-transform: capitalize;
    display: inline-block;
    background: #F1F1F1;
    z-index: 1;
    text-decoration: none;
    margin-right: -1px;
}
.program-card .program-card-title::before {
	content: "";
	display: block;
	width: 75px;
	height: 3px;
	background-color: #FBCB3B;
	margin: 0;
	bottom: -16px;
	position: absolute;
}
.program-card .program-card-title::after {
	border-bottom: 45px solid #f1f1f1;
	border-right: 45px solid transparent;
	content: " ";
	display: inline-block;
	position: absolute;
	z-index: 1;
	right: auto;
}
.program-card-details {
	display: flex;
	flex-direction: column;
	gap: 36px;
}
.program-card-date-duration {
	padding-top: 14px;
}
@media (max-width: 767px) {
.row.program-ug-pg-row {
	row-gap: 30px;
}  
.program-card-image {
	height: 181px;
}
  .program-card-details {
    gap: 30px;
  }
  .program-card .program-card-title h3{
    padding: 15.5px 17px 5.5px 1px;
  }
  .program-card a {
	gap: 30px;
  }
}

/* STUDENT STORIES STYLE START */
.custom-section.student-stories {
	padding: 72px 0 128px 0;
}
.student-stories-slider {
	background: #F5F5F5;
	padding: 24px;
}
.student-stories-slider .iamge-with-text .media-block {
	width: 47.8%;
	height: 317px;
	overflow: hidden;
}
.student-stories-slider .iamge-with-text .media-block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.student-stories-slider .iamge-with-text .content-block {
	width: 52.2%;
}
.owl-carousel.student-stories-slider .owl-nav button {
	position: absolute;
	top: 50%;
	margin-top: -25px;
	background: #eee;
	z-index: 1;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-size: 21.053px;
	line-height: 18.421px;
}
.owl-carousel.student-stories-slider .owl-nav button.owl-prev {
	left: 0;
}
.owl-carousel.student-stories-slider .owl-nav button.owl-next {
	right: 0;
}
.student-stories-slider .owl-dots {
	display: flex;
	justify-content: center;
	gap: 16px;
	padding: 8px 0 0 0;
	position: absolute;
	bottom: -46px;
	margin: 0 auto;
	width: 100%;
}
.student-stories-slider .owl-dots .owl-dot {
	width: 30px;
	height: 30px;
	display: inline-block;
	background: rgba(217, 205, 153, 0.4);
	border-radius: 100px;
  border: 0;
}
.student-stories-slider .owl-dots .owl-dot.active {
	background: rgba(251, 203, 59, 1);
}

@media (max-width: 991px) {
.custom-section.student-stories {
	padding: 45px 4px 89px 4px;
}  
.student-stories-slider .iamge-with-text .media-block {
	width: 100%;
}
.student-stories-slider .iamge-with-text .content-block {
	width: 100%;
	row-gap: 14px;
	padding: 0;
}
.student-stories-slider {
	padding: 15px;
}
.mini-custom-title h4::after {
	width: 75px;
}
.student-stories-slider .owl-dots {
	gap: 5.42px;
	padding: 0;
	bottom: -44px;
}
.student-stories-slider .owl-dots .owl-dot {
	width: 23px;
	height: 23px;
}
.owl-carousel.student-stories-slider .owl-nav button {
	width: 76px;
	height: 76px;
	font-size: 32px;
	top: 173.5px;
	margin-top: -38px;
}
}

.hero-section {
	overflow: hidden;
}
.hero-section .container {
	position: relative;
	z-index: 1;
	padding: 72px 0;
}
.row.hero-section-inner {
	justify-content: space-between;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: #fff;
}
.hero-section-inner {
	display: flex;
	flex-wrap: wrap;
	min-height: 744px;
	align-items: center;
}
.hero-section .hero-banner-image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 1006px;
}
.herosection-left {
	width: 50%;
	padding-right: 10px;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	flex-direction: column;
}
.herosection-left h1 {
	color: #FFF;
}
.herosection-left p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  margin: 0;
  padding: 8px 0;  
  color: #FFF;
  letter-spacing: 0.12px;
}
.herosection-left li {
	margin-bottom: 8px;
}
.herosection-left li:last-child {
	margin-bottom: 0;
}
.herosection-right {
	width: 50%;
	color: #fff;
}
.register-form {
	background: #fff;
	color: #333;
}
.herosection-right .register-form .form-title {
	padding: 20px 28px;
	border-bottom: 1px solid #aaa;
}
.register-form .lp-form-body {
	padding: 28px 16px;
	row-gap: 28px;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
.register-form .fieldset .field label {
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	color: #444;
	width: 100%;
	font-family: 'Source Sans Pro';
}
.register-form .full-field.field {
	width: 100%;
}
.register-form .field {
	display: flex;
	flex-wrap: wrap;
	row-gap: 8px;
	padding: 0 12px;
}
.register-form .fieldset .field label span {
	color: rgba(255, 0, 0, 0.80);
	margin-left: 6px;
	border: 0;
}
.register-form .field input, .register-form .field select {
	width: 100%;
	border: 1px solid #aaaaaa;
	border-radius: 0;
	padding: 6px;
	min-height: 35px;
	background-color: #fff;
	outline: none;
	font-size: 18px;
	line-height: 28px;
}
.register-form .field select {
	background: #fff url("https://s48606.p938.sites.pressdns.com/wp-content/uploads/2026/01/form-dropdown-arrown.svg") no-repeat right 16px center;
	appearance: none;
  padding: 8px;
}
.register-form-submit {
	/*padding: 0 12px;*/
}
.form-note {
	background: #FFF;
	font-size: 18px;
	line-height: 28px;
	color: #444444;
	margin: 0;
}
.form-note a {
	color: #444444;
}
.lp-form-footer {
	padding: 28px;
	border-top: 1px solid #aaa;
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}
.herosection-left ul {
	list-style: disc;
	padding-left: 15px;
	display: inline-block;
}
.herosection-left li {
	font-size: 18px;
	line-height: 28px;
}
.title-with-button {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	border-bottom: 1px solid #aaaaaa;
	gap:10px;
}
.register-form-popup .form-title {
	padding: 28px;
	/*border-bottom: 1px solid #AAA;*/
}

.register-form-tahnkyou-msg .thankyou-title {
	color: #444;
	/*border-bottom: 1px solid #aaaaaa;*/
}
.register-form-tahnkyou-msg .lp-form-body {
	padding: 28px;
}
.register-form-tahnkyou-msg .lp-form-footer {
	padding: 28px;
	border-top: 1px solid #aaa;
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}
.download-link {
	width: 100%;
}
.download-link a {
	color: #354B8C;
	font-weight: 400;
	text-decoration: none;
	font-family: 'Source Sans Pro';
	font-size: 18px;
	line-height: 28px;
}
.download-link span {
	gap: 8px;
	display: flex;
	align-items: center;
}

.register-form-popup {
	max-width: 1270px;
}
.register-form-popup .modal-content .modal-inner {
	background:#121D2F;
	display: flex;
	flex-wrap: wrap;
}
.modal-left {
	width: 44%;
	padding: 32px;
	color: #fff;
}
.modal-right {
	width: 56%;
}
.modal-content .btn-close {
	position: absolute;
	right: 32px;
	top: 32px;
	padding: 0;
	opacity: 1;
	width: 14px;
	height: 14px;
	cursor: pointer;
}
.modal-program {
	display: flex;
	flex-wrap: wrap;
	row-gap: 36px;
}
.modal-program > img {
	width: 100%;
}
.modal-program-duration-details {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-between;
}
.modal-program-duration-details > * {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	font-weight: 400;
	color: #fff;
}
.modal-program-duration-details > * span {
	font-weight: 700;
}
.modal-program-duration-details > * span img {
	margin-left: -32px;
	margin-right: 8px;
}
.modal-program-duration-details .modal-program-year {
	padding-left: 32px;
}
.modal-program-duration-details .modal-program-duration {
	min-width: 129px;
}

.modal-content .btn-close {
	padding: 0;
	background-image: none;
	width: 14px;
	height: 14px;
	background-size: 14px;
	box-shadow: none;
	outline: none;
	position: relative;
	right: 28px;
	top: 0;
	color: #444444;
	line-height: 14px;
}
/*.modal-program p {
	margin-bottom: 0;
}
*/

.register-form-popup.show-thank-you {
	max-width: 720px;
}
#register-thankyou-popup .register-form-popup {
	max-width: 720px;
}
#register-thankyou-popup .register-form-popup .modal-content .modal-inner {
}
/*#register-thankyou-popup .register-form-popup .modal-content .modal-inner .btn-close {
	background-image: url(../images/close.svg);
}*/

.success-note {
	border: 1px solid #2E7D32;
	background: #2E7D32;
	padding: 16px;
	position: relative;
	padding-left: 56px;
	color: #fff;
	margin: 0;
}
.success-note::before {
	content: "";
	background: url("https://s48606.p938.sites.pressdns.com/wp-content/uploads/2026/01/check-circle-white.svg") no-repeat;
	width: 32px;
	height: 32px;
	display: inline-block;
	position: absolute;
	top: 16px;
	left: 16px;
}
.success-note strong {
	width: 100%;
	display: block;
}
.title-with-button.title-with-button-responsive {
	display: none;
}
.lp-btn {
	background: #354B8C;
	border: 1px solid #354B8C;
	outline: none;
	padding: 20px;
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	min-width: 210px;
	font-family: "Source Sans Pro";
}
.lp-btn:hover {
	border: 1px solid #1F3165;
	background: #1F3165;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 4px 8px 0 rgba(0, 0, 0, 0.00);
    color: #ffffff;
}
.lp-btn span {
	padding: 0 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lp-btn span img {
	padding-left: 8px;
}


.modal-content .register-form-tahnkyou-msg .btn-close {
	/*background-image: url(../images/close.png);*/
	color: #444444;
}

@media (min-width: 768px) {
	.form-popup-title-mobile {
		display: none;
	}
}

@media (min-width: 992px) {
	.header-logo .header-logo-responsive {
		display: none;
	}
	.hero-banner-media-responsive {
		display: none;
	}  
	.hero-section {
		background-repeat: no-repeat;
		background-size: cover;
		position: relative;
		background: linear-gradient(359deg, #121D2F 2.07%, rgba(8, 43, 64, 0.00) 99.16%);
	}
	/*.hero-section::after {
		background: linear-gradient(270deg, rgba(22, 27, 32, 0.12) 35%, rgba(22, 27, 32, 0.75) 70%);
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}*/
	.read-more-btn {
		display: none;
	}
}

@media (max-width: 991px) {
.header-container {
	padding: 14px 0;
	background: #fff;
	text-align: center;
}	
.header-logo .header-logo-desktop {
	display: none;
}
.header-logo img {
	width: 122px;
}
.hero-section .container {
	max-width: 100%;
	padding: 0;
}
.hero-section-inner {
	min-height: inherit;
}
.hero-banner-media-responsive {
	width: 100%;
}
.hero-banner-media-responsive img{
	width: 100%;
}	
.hero-section .herosection-left {
	background: #121D2F;
	padding: 45px 12px;
	width: 100%;
	gap: 30px;
	align-content: center;
	text-align: center;
}
.hero-section .hero-banner-image {
	display: none;
}
/*.hero-section .herosection-left::after {
	background: linear-gradient(270deg, rgba(22, 27, 32, 0.12) 35%, rgba(22, 27, 32, 0.75) 70%);
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}*/
.hero-section .herosection-left > * {
	z-index: 1;
}
.herosection-right {
	width: 100%;
}
.logo {
	left: 0;
	top: 0;
	position: relative;
	margin-bottom: 8px;
}
.register-form .field {
	width: 100%;
}
.register-form .lp-form-body {
	padding: 30px 22px 0 22px;
	row-gap: 24px;
}
.herosection-right .register-form .form-title {
	padding: 45px 22px 30px 22px;
}
.herosection-right .register-form.register-form-tahnkyou-msg .form-title {
	padding: 45px 22px 20px 22px;
}
.herosection-right .register-form.register-form-tahnkyou-msg .lp-form-body{
	padding: 30px 22px;
}
.herosection-right .register-form.register-form-tahnkyou-msg .lp-form-footer {
	gap: 16px;
	padding: 30px 22px 45px 22px;
}
.register-form.register-form-tahnkyou-msg .lp-form-body {
	padding: 28px;
}
.herosection-left ul {
	max-width: 280px;
	text-align: left;
}
.herosection-left li {
	font-size: 16px;
	line-height: 24px;
}
.hero-section .herosection-left h1 {}

.form-note {
	margin: 0;
}
.lp-form-footer {
	padding: 22px 22px 45px 22px;
	border: 0;
	gap: 22px;
}
.herosection-left p {
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0.1px;
}
.register-form-popup .form-title {
	padding: 28px;
	/*width: 100%;*/
	padding-right: 50px;
}
.register-form-popup .register-form-tahnkyou-msg .form-title {
	color: #444444;
}
.modal-content .btn-close {
	/*right: 16px;
	top: 29px;
	padding: 6px 0;
	background-image: url(../images/close-white.svg);*/
}
.modal-program-duration-details .modal-program-duration {
	min-width: inherit;
}
}

@media (max-width: 767px) {
.register-form .field {
	width: 100%;
  padding: 0;
}	
.title-with-button{
	display: none;
}  
.register-form-popup .form-title {
	color: #ffffff;
}
.title-with-button.title-with-button-responsive {
	display: flex;
  width: 100%;
}
.register-form-popup .modal-content .modal-inner .btn-close {
	color: #fff;
}
.register-form-tahnkyou-msg .title-with-button {
	display: flex;
}  
.modal-left {
	width: 100%;
	padding: 20px 22px;
	color: #262626;
}
.modal-program > img {
	width: 100%;
}
.modal-right {
	width: 100%;
}
/*.modal-content .btn-close {
	background-image: url(../images/close-white.svg);
	position: inherit;
	padding: 24px;
	line-height: normal;
	background-position: top 24px right 24px;
	width: 100%;
}*/
.modal-program {
	gap: 0;
}
.register-form-popup .register-form .custom-modal-title {
	display: none;
}

.register-form-tahnkyou-msg .form-title {
	padding: 20px 22px;
}
.register-form-popup .register-form .lp-form-body {
	padding: 20px 22px;
}
.register-form-popup .register-form .lp-form-footer {
	padding: 20px 22px;
	gap: 16px;
}

.modal-program-duration-details {
	margin: 30px 0;
}
.read-more-text {
	max-height: 60px;
	overflow: hidden;
	transition: max-height 0.4s ease;
	margin: 0;
}
.read-more-text.expanded {
  max-height: 500px;         /* enough to show full text */
}
.read-more-text.expanded +.read-more-btn  {
  margin-top: 0;    
}
.read-more-btn {
	color: #fff;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	position: relative;
	margin-top: 12px;
}
.read-more-btn a {
	color: #fff;
	font-weight: 600;
}
.read-more-btn::after {
	background: url('https://s48606.p938.sites.pressdns.com/wp-content/uploads/2026/01/arrow-white.png') no-repeat center;
	width: 20px;
	height: 20px;
	display: inline-block;
	content: "";
}
.read-more-text.expanded + .read-more-btn::after {
	transform: rotate(180deg);
}
.read-more-text p {
	color: #fff;
	margin-bottom: 20px;
}
.modal-program-duration-details > * {
	display: flex;
	flex-wrap: wrap;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
}
.lp-btn {
	/*width: 100%;*/
}
}

.video-block {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.video-block iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}


/* Course Header */
.courser-header .header-container {
	padding: 26.5px 0;
	background: #1F3165;
	transition: all 0.3s ease-in-out;
}
.courser-header .header-container .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.course-page p {
	margin-bottom: 18px;
}
.header-section {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.header-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: all 0.3s ease-in-out;
}
.header-section.sticky .header-container {
	background: #fff;
}
.header-section.sticky .header-logo-normal {
	display: none;
}
.header-section.sticky .header-logo-sticky {
	display: block;
}
.header-section .header-logo-sticky {
	display: none;
}
.hero-section::before {
	content: "";
	background: linear-gradient(359deg, #121D2F 2.07%, rgba(8, 43, 64, 0.00) 99.16%);
}
.header-section.sticky .header-brn {
	display: block;
}
@media (min-width: 992px) {
	.courser-header .header-brn {
		display: none;
	}
}
@media (max-width: 991px) {
	.course-page .hero-section .herosection-left {
		background: #1F3165;
	}
	.course-page .hero-section .herosection-left > * {
		z-index: 1;
		padding: 0 22px;
		max-width: 100%;
	}
	.course-page .hero-section .hero-banner-image {

	}	
}

/* At a Glance */
.usp .usp-inner {
	display: flex;
	height: 100%;
	flex-wrap: wrap;
	row-gap: 36px;
	margin: 0 -18px;
	justify-content: center;
}
.usp-items {
	padding: 0 18px;
	width: 20%;
}
.at-a-glance .usp-block {
	background: #354B8C;
}
.usp-block {
	padding: 20px 16px;
	display: flex;
	align-items: center;
	flex-direction: column;
	row-gap: 12px;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background: #1F3165;
}
.usp-block svg {
	width: auto;
	height: 96px;
	color: #FFCD29;
}
.usp-block > * {
	color: #FFF;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
}
.usp-block .usp-caption {
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
}

@media (max-width: 991px) {
	.usp-items {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.usp .usp-inner {
		flex-wrap: wrap;
		gap: 30px;
		margin: 0;
	}
	.usp-block {
		width: 100%;
	}
	.usp-items {
		width: 100%;
		padding: 0;
	}	
	.usp-block > * {
		font-size: 18px;
	}	
}

/* Features USP */
.features .usp-items {
	width: 33.33%;
}
.usp-block .usp-caption {
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
	margin-top: -4px;
}

.program-card-details p {
	padding-top: 10px;
	margin: 0;
}

@media (max-width: 991px) {
	.features .usp-items {
		width: 50%;
	}
}
@media (max-width: 767px) {
	.features .usp-items {
		width: 100%;
	}
}

/* Testimonials */
.testi-designation {
	display: flex;
	flex-direction: column;
	margin-bottom: -18px;
}
@media (max-width: 991px) {
	.testi-designation {
		margin: 0;
	}
	.testi-coursepage .student-stories-slider .iamge-with-text .content-block {
		row-gap: 30px;
	}
}

.accordion {
	--bs-accordion-color: #444;
	--bs-accordion-bg: #fff;
	--bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
	--bs-accordion-border-color: transparent;
	--bs-accordion-btn-padding-x: 14px;
	--bs-accordion-btn-padding-y: 14px;
	--bs-accordion-btn-color: #fff;
	--bs-accordion-btn-bg: #1F3165;
	--bs-accordion-btn-icon-transform: rotate(-0deg);
	--bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
	--bs-accordion-btn-focus-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 4px 8px 0 rgba(0, 0, 0, 0.00);
	--bs-accordion-body-padding-x: 14px;
	--bs-accordion-body-padding-y: 14px;
	--bs-accordion-active-color: #ffffff;
	--bs-accordion-active-bg: #1F3165;
}
.accordion-item {
	margin-bottom: 18px;
}
.accordion-item .accordion-button {
	padding: 14px;
	font-size: 18px;
	line-height: 28px;
	border-radius: 5px;
	overflow: hidden;
	gap: 12px;
}
.accordion-item .accordion-button[aria-expanded="true"] {
	border-radius: 5px 5px 0 0;
	box-shadow: 0 -6px 20px rgba(0,0,0,.19);
}
.accordion-body {
	border: 1px solid #aaa;
	border-top: 0;
}
.accordion-body p:last-child {
	margin-bottom: 0;
}
.accordion-item .accordion-button::after {
	background-image: url(../../images/accordion-arrow.svg);
}
.accordion-item .accordion-button[aria-expanded="true"]::after {
	rotate: 180deg;
}

.entry-requirement table {
	width: 100%;
	table-layout: fixed;
}
.entry-requirement td {
	padding: 10px;
	border: 1px solid #aaaaaa;
	color: #444;
	font-weight: 400;
}



.gap-36-content {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}
.gap-36-content p:last-child {
  margin: 0;
}

.quote-box {
  max-width: 900px;
  background: #ffffff;
  padding: 30px 40px;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  color: #4a4a4a;
  line-height: 1.7;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.quote-box p {
  margin: 0;
  font-size: 18px;
}

.quote-mark {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 120px;
  line-height: 1;
  color: #f4c21f; /* yellow quote */
  font-family: Georgia, serif;
  pointer-events: none;
}

.course-page{
	scroll-margin-top: 200px;
}


/* TAB */
.tab-accordion {
	margin-top: 40px;
}
.tab-buttons {
  display: flex;
  border-bottom: 1px solid #DBE6EC;
}
.tab-btn {
	padding: 18px;
	cursor: pointer;
	border: none;
	background: transparent;
	color: #444;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	position: relative;
}
.tab-btn.active {
  background: transparent;
}
.tab-btn.active::after {
	content: "";
	display: block;
	width: 100%;
	height: 6px;
	background-color: #FBCB3B;
	margin: 0 auto;
	bottom: 0;
	position: absolute;
	left: 0;
	right: 0;	
}
.tab-panel {
	display: none;
	padding: 18px 14px;
	background: transparent;
	margin: 0;
}
.tab-panel.active {
  display: block;
}
.tab-panel.active .accordion-title.accordion-button {
	border-radius: 5px 5px 0 0;
}
.tab-panel.active .accordion-title.accordion-button:after {
	transform: rotate(180deg);
}
/* Accordion styles (mobile) */
.accordion-title {
  display: none;
  background: #007bff;
  color: #fff;
  padding: 12px;
  cursor: pointer;
}

@media (min-width: 992px) {
.accordion-content {
	padding: 0;
	border: 0;
}
}

@media (max-width: 991px) {
  .tab-buttons {
    display: none;
  }
  .accordion-title {
    display: block;
  }
  .tab-panel {
    display: block;
    padding: 0;
    border-bottom: 1px solid #ddd;
	margin-bottom: 18px;
  }
  .accordion-content {
    display: none;
    padding: 15px;
  }
  .tab-panel.active .accordion-content {
    display: block;
  }
  .accordion-item .accordion-button {
	display: flex;
	justify-content: space-between;
  }
}


.custom-section.student-stories.testi-coursepage.no-dots {
	padding: 72px 0;
}
@media (max-width: 991px) {
	.custom-section.student-stories.testi-coursepage.no-dots {
		padding: 45px 4px;
	}
}