*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	--color-text: #fff;
	--color-bg: #000;
	--color-link: #fff;
	--color-link-hover: #907030;
	--color-title: #907030;
	--perspective: 1500px;
	--grid-item-ratio: 1.5;
	--grid-width: 100%;
	--grid-height: auto;
	--grid-gap: 2vw;
	--grid-columns: 4;
	--grid-inner-scale: 1;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Page Loader */
.js .loading::before,
.js .loading::after {
	content: '';
	position: fixed;
	z-index: 1000;
}

.js .loading::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;

}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
	cursor: pointer;
}

a:hover {
	color: var(--color-link-hover);
	outline: none;
}

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:not(.card__image):focus {
	/* Provide a fallback style for browsers
	 that don't support :focus-visible */
	outline: none;
	background: #1B2C5C;
}

a:not(.card__image):focus:not(:focus-visible) {
	/* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
	/*background: transparent;*/
}

a:not(.card__image):focus-visible {
	/* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
	outline: 2px solid red;
	background: transparent;
}

.unbutton {
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
	cursor: pointer;
}

.unbutton:focus {
	outline: none;
}

main {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.frame {
	position: relative;
	width: 100%;
	padding: 1rem;
	display: grid;
	grid-template-columns: 100%;
	grid-template-areas: 'back' 'prev' 'sponsor';
	grid-gap: 0.5rem;
	justify-items: start;
	align-self: start;
	justify-self: start;
	pointer-events: none;
	align-items: center;
	text-transform: uppercase;
	font-size: 0.85rem;
	background: var(--color-bg-alt);
}

body #cdawrap {
    justify-self: start;
}

.frame a {
	pointer-events: auto;
}

.frame a:not(.frame__title-back) {
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}

.frame a:not(.frame__title-back)::before {
	content: '';
	height: 1px;
	width: 100%;
	background: currentColor;
	position: absolute;
	top: 90%;
	transition: transform 0.3s;
	transform-origin: 0% 50%;
}

.frame a:not(.frame__title-back):hover::before {
	transform: scaleX(0);
	transform-origin: 100% 50%;
}

.frame__title {
	grid-area: title;
	display: flex;
}

.frame__title-main {
	font-size: inherit;
	margin: 0;
	font-weight: inherit;
}

.frame__title-back {
	position: relative;
	display: flex;
	align-items: flex-end;
	margin-bottom: 0.15rem;
}

.frame__title-back span {
	display: none;
}

.frame__title-back svg {
	fill: currentColor;
}

.frame__prev {
	grid-area: prev;
}

.intro {
	height: calc(100vh - 3rem);
    text-align: center;
    place-items: center;
    display: grid;
    margin-bottom: 30vh;
    background: linear-gradient(0deg, transparent, var(--color-bg-alt));
}

.intro__title {
    place-items: center;
    margin: 0;
    line-height: .9;
    display: grid;
    margin-top: 15vh;
    font-weight: 400;
}

.intro__title-pre {
	font-weight: 300;
    font-size: clamp(2rem,8vw,5rem);
    color: var(--color-title);
    text-transform: uppercase;
}

.intro__title-sub {
    font-size: clamp(1.5rem,20vw,8rem);
    max-width: 15ch;
    margin: 0 auto;
}

.intro__info {
	max-width: 15ch;
    opacity: .6;
    margin-bottom: 4rem;
    padding-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    align-self: end;
}

.intro__info::after {
	content: "";
	width: 1px;
	height: 2rem;
	background: #fff;
	position: absolute;
	top: 100%;
	left: 50%;
}

.card-wrap {
	margin-top: 5vh;
	display: grid;
	grid-gap: 2rem;
	grid-auto-flow: row;
	grid-template-columns: 250px;
}

.card__image {
	display: block;
	border-radius: 7px;
	background-size: cover;
	background-position: 50% 50%;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	filter: contrast(0.8);
}

.credits {
	font-size: 1.5rem;
	text-align: center;
	margin: 50vh auto 0;
	padding-bottom: 50vh;
}

.content {
	position: relative;
	margin-bottom: 100px;
}

.content--spacing {
	margin-bottom: 100vh;
}

.content__title {
	position: absolute;
	height: 100vh;
	width: 100vw;
	top: 50%;
	left: 50%;
	margin: -50vh 0 0 -50vw;
	padding: 0 10vw;
	display: grid;
	place-items: center;
}

.content__title--top {
	align-items: start;
}

.content__title--bottom {
	align-items: end;
}

.content__title--left {
	justify-items: start;
	text-align: left;
}

.content__title--right {
	justify-items: end;
	text-align: right;
}

.outro {
	display: grid;
	place-items: center;
	margin: 40vh 0;
}

.grid {
	display: grid;
	place-items: center;
	padding: 2rem;
	width: 100%;
	perspective: var(--perspective);
}

.grid-wrap {
	height: var(--grid-height);
	width: var(--grid-width);
	display: grid;
	grid-template-columns: repeat(var(--grid-columns),1fr);
	gap: var(--grid-gap);
	transform-style: preserve-3d;
}

.grid__item_hm {
	aspect-ratio: var(--grid-item-ratio);
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
	border-radius: 8px;
	display: grid;
	place-items: center;
}

.grid__item-inner {
	position: relative;
	width: 100%;
	height: 100%;
	
/*	width: 300px;
	height: 200px;	*/
	background-size: contain;
	background-position: 50% 50%;
}

@media screen and (min-width: 53em) {
	.frame {
		grid-template-columns: auto auto auto 1fr;
		grid-template-areas: 'title prev ... sponsor';
		align-content: space-between;
		justify-items: start;
		grid-gap: 2rem;
	}
	.frame__demos {
		justify-self: end;
	}

	.content--outro {
		height: 100vh;
		justify-content: center;
	}

	.card-wrap {
		grid-template-columns: repeat(3,250px);
	}

	body #cdawrap {
	    justify-self: end;
	}
}


.timeless_dedication {
	padding: 50px 30px;
	background-color: #0F4B83;
}

.timeless_dedication h2 {
	font-size: 3.6rem;
	color: white;
}
.timeless_dedication p {
	color: white;
}


.osc_glance_container {
	height: 90vh;
	aspect-ratio: 4/5.2;
	background-color: rgba(0, 0, 66, 1);
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	border-radius: 10px;
}
.osc_glance_container h4 {
	font-size: 3.6rem;
	color: white;
	text-align: center;
	font-weight: 600;
	  margin: 0px 0px 0px 0px;
}
.osc_glance_container img {
	width: 80%;
	height: auto;
}

.msgs_section {
	padding: 0 0 0 50px;
	margin-bottom: 50px;
	background-color: white;
}
.message_container {
	position: relative;
	width: 100%;
	height: calc(100vh - 200px);
	background-color: white;
	margin-bottom: 100px;
	overflow: hidden;
	transform-origin: bottom center;
}
/* .message_container.end_trigger {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
} */
.message_container .message_grid {
	display: grid;
	grid-template-columns: 1fr 1.8fr;
	gap: 30px;
	align-items: end;
	height: 100%;
}
.message_container .message_grid > div {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 30px;
}
.message_container .message_grid .img_container {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}
.message_container .message_right_section p.message_text {
	position: absolute;
	bottom: -1px;
	left: 0;
	background-color: #1075D3;color: rgba(255,255,255,1.00);
	z-index: 6;
	margin: 0;
	width: 55%;
	font-size: 1.6rem;
	padding: 30px;
	font-weight: 400;
	  line-height: 1.3;
}
.message_container .message_grid .img_container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.message_container h4 {
	font-size: 5rem;
	font-weight: 600;
	margin: 0 0 30px 0;
	color: black;
	text-wrap: balance;
	line-height: 1.1;
}
.message_container .section_title {
	width: 130px;
	height: 130px;
	position: relative;
	margin: 0 0 30px 0;
}
.message_container .section_title img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	border-radius: 50%;
}
.message_container .section_title span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%);
	background-color: white;
	font-size: 1.6rem;
	font-weight: 500;
	padding: 7.5px 15px;
	border-radius: 25px;
}

.our_learning_model {
	display: flex;
	margin-bottom: 200px;
	position: relative;
}
.our_learning_model .left_section {
	width: 40%;
	aspect-ratio: 4/5;
	padding: 50px;
	position: relative;
}
.our_learning_model .right_section {
	width: 60%;
	padding: 100px 50px 50px 150px;
	margin-top: -50px;
	background-color: rgba(0, 24, 91, 1);
}
.our_learning_model .left_section img.bg_img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 4;
}
.our_learning_model .left_section .model_legends {
	position: absolute;
	left: 30px;
	bottom: 30px;
	z-index: 10;
	width: 250px;
	height: auto;
}
.our_learning_model .left_section h4 {
	position: relative;
	z-index: 6;
	font-size: 4.5rem;
	color: white;
	font-weight: 600;
	margin: 0;
}
.our_learning_model .right_section p {
	color: white;
	margin-bottom: 30px;
	font-size: 1.4rem;
}
.our_learning_model .middle_section {
	position: absolute;
	bottom: -140px;
	left: 40%;
	width: 500px;
	aspect-ratio: 1/1;
	padding: 30px;
	background-color: rgba(0, 24, 91, 1);
	z-index: 9;
	transform: translateX(-50%);
	border-radius: 50%;
}
.our_learning_model .middle_section object {
	width: 100%;
	height: auto;
}
.our_learning_model .right_section {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
}
.our_learning_model .right_section .img-zoom-anim {
	width: 60%;
	height: auto;
}

.member_msgs {
	padding: 0 30px;
	margin-bottom: 50px;
}
.member_msgs .msgs_swiper_wrapper {
	padding: 0 70px;
	position: relative;
}
.member_msgs .msgs_swiper_wrapper .member-next,
.member_msgs .msgs_swiper_wrapper .member-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: rgb(225, 225, 225);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 300ms;
	transform-origin: center;
}
.member_msgs .msgs_swiper_wrapper .swiper-button-disabled {
	opacity: 0.3;
}
.member_msgs .msgs_swiper_wrapper .member-next:hover,
.member_msgs .msgs_swiper_wrapper .member-prev:hover {
	transform: scale(1.1) translateY(-50%);
}
.member_msgs .msgs_swiper_wrapper .member-next i,
.member_msgs .msgs_swiper_wrapper .member-prev i {
	font-size: 1.6rem;
	color: #212E60;
}
.member_msgs .msgs_swiper_wrapper .member-next {
	right: 0;
}
.member_msgs .msgs_swiper_wrapper .member-prev {
	left: 0;
}
.member_msgs h2 {
	font-size: 4.5rem;
	font-weight: 600;
	color: #212E60;
	text-align: center;
	margin-bottom: 50px;
}
.msgs_swiper {
	width: 100%;
	height: max-content;
	overflow: hidden;
	position: relative;
} 
.msgs_swiper .member_card {
	display: flex;
	flex-direction: column;
	padding-bottom: 30px;
	overflow: hidden;
}
.msgs_swiper .member_card img {
	width: 100%;
	height: auto;
	margin-bottom: 15px;
	transition: 700ms ease-in-out;
	transform-origin: bottom center;
	  border-bottom: 2px solid #202d60;
}
.msgs_swiper .member_card .img_container {
	position: relative;
	/* overflow: hidden; */
	z-index: 4;
}
.msgs_swiper .member_card:hover img {
	transform: scale(1.05);
}
.msgs_swiper .member_card h6 {
	font-size: 1.6rem;
	color: rgba(16, 117, 211, 1);
	font-weight: 500;
	margin-bottom: 0;
}
.msgs_swiper .member_card span {
	font-size: 1.2rem;
	color: rgba(16, 117, 211, 1);
	display: block;
	font-weight: 300;
}
.msgs_swiper .member_card p {
	width: 90%;
	font-size: 1.6rem;
	font-weight: 500;
	color: rgba(16, 117, 211, 1);
	position: relative;
	margin-bottom: 30px;
	z-index: 5;
}
.msgs_swiper .member_card p.small_text {
	font-size: 1.4rem;
}
.msgs_swiper .member_card p::after {
	content: url('../images/quote_element.svg');
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 100%;
}
.msgs_swiper .member_card > div:last-of-type {
	min-height: 85px;
}
.msgs_swiper .swiper-wrapper {
	padding-bottom: 50px;
	align-items: flex-end;
}
.msgs_swiper .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
}
.msgs_swiper .swiper-pagination-bullet-active {
	background-color: rgba(0, 24, 91, 1);
}

.members_external {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(255, 255, 255, 0.6);
	/* backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px); */
	border: 1px solid rgba(255, 255, 255, 0.3);
	z-index: 100;
	overflow: auto;
	padding: 50px 50px 0 50px;
	visibility: hidden;
	opacity: 0;
}
.members_external .member_card {
	background: rgb(221,239,255);
	background: linear-gradient(180deg, rgba(221,239,255,1) 0%, rgba(255,255,255,1) 100%);
	padding: 120px 50px 50px 50px;
	border-top: 1px solid gray;
	border-right: 1px solid gray;
	border-left: 1px solid gray;
	position: relative;
	transform: translateY(100%);
	display: none;
}
.members_external .member_card .close_icon {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 35px;
	height: 35px;
	background-color: rgba(0, 24, 91, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
}
.members_external .member_card .close_icon i {
	color: white;
}
.members_external .member_card .main_quote {
	font-size: 2rem;
	font-weight: 500;
	color: rgba(16, 117, 211, 1);
	width: 75%;
	position: relative;
	margin-bottom: 50px;
}
.members_external .member_card .main_quote::after {
	content: url('../images/quote_element.svg');
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 100%;
}
.members_external .member_card .img_container {
	overflow: hidden;
	margin-bottom: 30px;
}
.members_external .member_card .img_container img {
	width: 100%;
	height: auto;
}
.members_external .member_card h6 {
	font-size: 1.6rem;
	font-weight: 600;
	color: rgba(16, 117, 211, 1);
	margin-bottom: 5px;
	text-align: center;
}
.members_external .member_card span {
	display: block;
	line-height: 1;
	font-size: 1.4rem;
	font-weight: 300;
	color: rgba(16, 117, 211, 1);
	text-align: center;
}

@media (orientation: portrait) {
	.osc_glance_container {
		width: 75%;
		height: initial;
	}
	.content {
		aspect-ratio: 1/1;
		margin-bottom: 0;
	}
	.content__title--right {
		justify-items: center;
	}
	.content__title--bottom {
		align-items: center;
	}

	.landing_section {
		overflow: hidden;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		justify-content: space-between;
		background-color: transparent;
	}
	.landing_section .desktop_svg {
		display: none;
	}
	.landing_section .mobile_svg {
		width: 90%;
		transform: translateX(20%);
	}
	.landing_section .mobile_text {
		padding: 50px;
		margin-right: auto;
	}
	.landing_section .mobile_text h2 {
		font-size: 7rem;
		font-weight: 700;
		color: #28367A;
		line-height: 1;
		margin-bottom: 30px;
	}
	.landing_section .mobile_text p {
		font-size: 3.6rem;
		color: #28367A;
		font-weight: 400;
		line-height: 1.2;
	}
}

@media(min-width: 1440px){
	.osc_glance_container {
		padding: 50px;
		gap: 25px;
	}
	.osc_glance_container img {
		width: 90%;
	}
	.osc_glance_container h4 {
		font-size: 4.5rem;
	}

	.msgs_section {
		padding: 0 0 0 100px;
	}
	.message_container h4 {
		font-size: 6rem;
		margin-bottom: 60px;
	}
	.message_container .section_title {
		width: 150px;
		height: 150px;
		margin-bottom: 40px;
	}
	.message_container .section_title span {
		font-size: 2rem;
	}
	.message_container .message_right_section p.message_text {
		font-size: 2.2rem;
	}

	.our_learning_model .middle_section {
		width: 600px;
	}
	.our_learning_model .left_section h4 {
		font-size: 5rem;
	}
	.our_learning_model .right_section p {
		font-size: 1.6rem;
	}
}

@media(min-width: 1680px){
	.msgs_section {
		padding: 0 0 0 100px;
	}
	.message_container h4 {
		font-size: 7.5rem;
		margin-bottom: 60px;
	}
	.message_container .section_title {
		width: 180px;
		height: 180px;
		margin-bottom: 60px;
	}
	.message_container .section_title span {
		font-size: 2.2rem;
	}
	.message_container .message_right_section p.message_text {
		font-size: 2.8rem;
	}

	.our_learning_model .middle_section {
		width: 700px;
	}
	.our_learning_model .left_section h4 {
		font-size: 6.5rem;
	}
	.member_msgs h2 {
		font-size: 6.5rem;
	}
	.our_learning_model .right_section p {
		font-size: 2.2rem;
	}
	.our_learning_model .read_more_btn {
		font-size: 2.2rem;
	}
}

@media(max-width: 1200px){
	.our_learning_model {
		flex-direction: column;
		background-color: rgba(0, 24, 91, 1);
		margin-bottom: 50px;
	}
	.our_learning_model .left_section {
		width: 100%;
		aspect-ratio: 2/1;
	}
	.our_learning_model .right_section {
		width: 100%;
		align-items: flex-start;
		padding: 75px 50px 50px 50px;
		flex-direction: row;
		gap: 30px;
	}
	.our_learning_model .right_section > div:first-child {
		width: 60%;
	}
	.our_learning_model .middle_section {
		width: 60%;
		position: relative;
		bottom: initial;
		left: initial;
		transform: translateX(0);
		background-color: rgba(0, 24, 91, 1);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		margin: -150px auto 0 auto;
	}
	.our_learning_model .middle_section img {
		width: 100%;
		height: auto;
	}
}

@media(max-width: 1025px){
	.message_container {
		margin-bottom: 30px;
		height: auto;
	}
	.message_container .message_grid {
		grid-template-columns: 1fr 2fr;
		gap: 15px;
	}
	.message_container h4 {
		font-size: 3.8rem;
	}
	.message_container .section_title {
		width: 90px;
		height: 90px;
	}
	.message_container .section_title span {
		font-size: 1.2rem;
		padding: 6px 10px;
	}
	.message_container .read_more_btn {
		font-size: 1.4rem;
	}
	.message_container .message_right_section p.message_text {
		font-size: 1.4rem;
		width: 65%;
	}
	.message_container .message_grid .img_container {
		width: 60%;
	}
}

@media(max-width: 992px){
	.our_learning_model .right_section p {
		font-size: 1.4rem;
	}

	.message_container h4 {
		font-size: 3.2rem;
	}
	.message_container .message_right_section p.message_text {
		font-size: 1.2rem;
		width: 75%;
	}
	.message_container .read_more_btn {
		font-size: 1.2rem;
	}

	.our_learning_model .left_section .model_legends {
		width: 200px;
		bottom: 60px;
	}

	.landing_section .mobile_text h2 {
		font-size: 5.5rem;;
	}
	.landing_section .mobile_text p {
		font-size: 2.4rem;
	}

	.member_msgs h2 {
		font-size: 3.6rem;
	}
	.member_msgs {
		padding: 0 15px;
	}
	.member_msgs .msgs_swiper_wrapper {
		padding: 0 50px;
	}
}

@media(max-width: 768px){
	.msgs_section {
		padding: 0 0 0 30px;
	}
	.msgs_swiper .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}
	.member_msgs .msgs_swiper_wrapper .member-next,
	.member_msgs .msgs_swiper_wrapper .member-prev {
		width: 30px;
		height: 30px;
	}
	.member_msgs .msgs_swiper_wrapper .member-next i,
	.member_msgs .msgs_swiper_wrapper .member-prev i {
		font-size: 12px;
	}
	.message_container {
		height: auto;
	}
	.message_container .message_grid {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}
	.message_container .message_left_section {
		margin-bottom: -50px;
		position: relative;
		z-index: 7;
	}
	.message_container .section_title {
		margin: 0 0 15px 0;
	}
	.message_container .message_right_section p.message_text {
		padding: 15px 15px 15px 0;
	}
	.message_container .message_grid .img_container {
		position: relative;
		bottom: initial;
		right: initial;
		width: 80%;
		margin-left: auto;
	}
	.message_container .message_grid > div {
		justify-content: flex-start;
	}

	.members_external {
		padding: 50px 0 0 0;
	}
	.members_external .member_card {
		padding: 75px 30px 70px 30px;
	}

	.members_external .member_card h6,
	.members_external .member_card span {
		text-align: left;
	}

	.our_learning_model .left_section .model_legends {
		width: 180px;
		bottom: 80px;
	}

	.landing_section .mobile_text h2 {
		font-size: 4rem;;
	}
	.landing_section .mobile_text p {
		font-size: 2rem;
	}
}

@media(max-width: 540px){
	.our_learning_model .left_section {
		padding: 30px
	}
	.our_learning_model .left_section h4 {
		font-size: 2.4rem;
	}
	.our_learning_model .middle_section {
		width: 80%;
		margin: -50px auto 0 auto;
	}
	.our_learning_model .right_section {
		margin-top: -50px;
		padding: 50px 30px 30px 30px;
		flex-direction: column;
	}
	.our_learning_model .right_section > div:first-child {
		width: 100%;
	}
	.our_learning_model .right_section .img-zoom-anim {
		width: 100%;
	}

	.message_container {
		margin-bottom: 50px;
	}
	.message_container h4 {
		margin: 0 0 15px 0;
	}
	.message_container .message_grid {
		gap: 30px;
	}
	.message_container .message_right_section p.message_text {
		display: none;
	}
	.message_container .message_grid .img_container {
		width: 90%;
	}
	.message_container .read_more_btn {
		font-size: 1rem;
		padding: 7.5px 15px;
	}

	.our_learning_model .left_section .model_legends {
		bottom: 60px;
	}

	.content {
		aspect-ratio: initial;
		margin-bottom: 50px;
		height: fit-content;
	}
	.content .grid--1 {
		display: none;
	}
	.content .content__title {
		margin: 0;
		padding: 0;
		top: 0;
		left: 0;
		position: relative;
		height: fit-content;
	}
	.osc_glance_container {
		width: 100%;
		height: auto;
		padding: 30px;
		border-radius: 0;
	}
	
	.osc_glance_container h4 {
		font-size: 2.4rem;
	}
	.osc_glance_container .read_more_btn {
		font-size: 1.3rem;
	}

	.landing_section .mobile_svg {
		width: 100%;
		transform: translateX(15%);
	}

	.landing_section .mobile_text {
		padding: 30px;
	}
	.landing_section .mobile_text h2 {
		font-size: 3.6rem;
		margin-bottom: 15px;
	}
	.landing_section .mobile_text p {
		font-size: 1.6rem;
	}
}

@media(max-width: 340px){
	.landing_section .mobile_text {
		padding: 15px;
	}
	.landing_section .mobile_text h2 {
		font-size: 2.8rem;
	}
	.landing_section .mobile_text p {
		font-size: 1.4rem;
	}
}