/* NAV STYLING */
header{
	height: 70px;
	background: #175585;
}
.header-box{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0 15px;
}
.header-logo {
    position: relative;
    z-index: 10;
	width: auto;
	height: 40px;
}
.global-nav{
	transform: scaleX(0);
	transform-origin: right;
	transition: all 200ms;
}
.nav-btn {
    width: 30px;
    height: 30px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	z-index: 10;
}
.nav-btn span{
	background: #FFF;
	width: 25px;
	height: 3px;
	border-radius: 5px;
	display: inline;
	position: absolute;
	transition: all 200ms;
}
.nav-btn span:nth-child(1){
	transform: translate(0px,8px);
}
.nav-btn span:nth-child(2){
	transform: translate(-5px,0px);
}
.nav-btn span:nth-child(3){
	transform: translate(0px,-8px);
}
.nav-btn.active span:nth-child(1){
	transform: rotate(45deg);
}
.nav-btn.active span:nth-child(2){
	opacity: 0;
}
.nav-btn.active span:nth-child(3){
	transform: rotate(-45deg);
}
.global-nav.active{
	transform: scaleX(1);
	background: #175585;
}
.global-nav{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	min-height: 700px;
	display: flex;
	flex-direction: column;
	grid-gap: 60px;
	justify-content: center;
	align-items: center;
	z-index: 5;
}
.global-nav ul{
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-gap: 30px;
}
.global-nav ul.socials{
	flex-direction: row;
	grid-gap: 20px;
}
.global-nav ul.socials li a svg{
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	display: inline-block;
}
.global-nav ul li a{
	text-decoration: none;
	font-size: 16px;
	line-height: 21px;
	text-align: center;
	color: #FFF;
	cursor: pointer;
}
@media(min-width: 768px){
	
}
@media(min-width: 1024px){
	header{
		height: 80px;
	}
	.header-logo{
		height: 50px;
	}
	.nav-btn{
		display: none;
	}
	.global-nav{
		transform: none;
		width: auto;
		position: static;
		min-height: auto;
		background: transparent;
	}
	.global-nav ul{
		flex-direction: row;
		grid-gap: 50px;
	}
	.global-nav ul li a:not(a.btn){
		padding: 0 10px;
		position: relative;
		transition: all 200ms ease;
	}
	.global-nav ul li a:not(a.btn):after{
		content: "";
		position: absolute;
		bottom: -3px;
		left: 50%;
		transform-origin: center;
		transform: translateX(-50%) scaleX(0);
		height: 2px;
		width: 100%;
		background: #FFF;
	}
	.global-nav ul li a:not(a.btn):hover:after{
		transform: translateX(-50%) scaleX(1);
	}
}
footer{
	background: #175585;
	color: #FFF;
}
.footer-content {
    padding: 50px 0 20px;
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}
.footer-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 20px;
}
.footer-top col{
	
}
.footer-top .col.logo{
	flex-basis: 100%;
	padding-bottom: 20px;
	border-bottom: 1px solid #FFF;
}
.footer-top .col.logo a{
	display: block;
	width: 200px;
}
.footer-top .col.logo svg{
	width: 200px;
	height: auto;
	display: block;
	margin: 0 auto;
}
.footer-top .col.links{
}
.footer-top .col.links:nth-child(2),
.footer-top .col.links:nth-child(3){
	flex-basis: calc(50% - 10px);
}
.footer-top .col.links h3{
	font-size: 16px;
	line-height: 28px;
	font-weight: 600;
	margin-bottom: 10px;
}
.footer-top .col.links a{
	color: #FFF;
	text-decoration: none;
}
.footer-bottom{
	padding-top: 20px;
	border-top: 1px solid #FFF;
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}
.footer-bottom .legal-links{
	display: flex;
	grid-gap: 10px;
	justify-content: center;
}
.footer-bottom .legal-links a{
	color: #FFF;
	font-size: 12px;
	line-height: 18px;
	text-decoration: none;
}
.footer-bottom .legal-links a:nth-child(1){
	padding-right: 10px;
	border-right: 1px solid #FFF;
}
.footer-bottom .legal-copy{
	display: flex;
	justify-content: center;
}
.footer-bottom .legal-copy p {
	font-size: 12px;
	line-height: 18px;
}
@media(min-width: 768px){
	.footer-top .col.links:nth-child(2),
	.footer-top .col.links:nth-child(3),
	.footer-top .col.links:nth-child(4){
		flex-basis: calc(33% - 13.33px);
	}
	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}
@media(min-width: 1024px){
	.footer-top .col.logo svg{
		margin: 0;
	}
	.footer-content{
		padding: 80px 0 20px;
		grid-gap: 80px;
	}
	.footer-top{
		grid-gap: 40px;
	}
	.footer-top .col.logo{
		border-bottom: 0;
		padding-bottom: 0;
	}
	.footer-top .col{
		flex-basis: calc(25% - 30px) !important;
	}
	.footer-top .col.links h3{
		margin-bottom: 20px;
	}
	.footer-top .col.links a:hover{
		text-decoration: underline;
	}
}


.hero-banner {
	min-height: 500px;
    height: calc(100vh - 70px);
}
.hero-banner .bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.hero-banner .bg:after{
	z-index: 0;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}
.hero-banner .bg img{
	object-fit: cover;
}
.hero-banner-content {
    padding-top: 100px;
	color: #FFF;
}
.hero-banner-content h1 {
    text-transform: uppercase;
    font-size: 32px;
    line-height: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}
.hero-banner-content h2 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}
.hero-banner.v2{
	min-height: 200px;
	height: auto;
}

.about-us-content{
	display: flex;
	flex-direction: column;
	grid-gap: 40px;
}
.about-us-content h2{
	font-size: 20px;
	line-height: 32px;
	color: #175585;
	margin-bottom: 10px;
}
.about-us-content p{
	margin-bottom: 20px;
}
.about-us-content img{
	border-radius: 15px;
	aspect-ratio: 5 / 3;
	object-fit: cover;
}


.how-it-works-content{
	display: flex;
	flex-direction: column;
	grid-gap: 50px;
}
.how-it-works-content .content{
	display: flex;
	flex-direction: column;
}
.how-it-works-content .content img{
	height: 60%;
	width: 60%;
	margin: 0 auto 20px;
	display: block;
}
.how-it-works-content .arrow{
	display: none;
}
.how-it-works-content h3{
	font-size: 18px;
	line-height: 24px;
	color: #FFF;
	text-align: center;
	margin-bottom: 10px;
}
.how-it-works-content p{
	color: #FFF;
	text-align: center;
}

.treatment-list-content{
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}
.treatment-list-content li{
	padding: 20px;
	background: #175585;
	border-radius: 15px;
	color: #FFF;
}
.treatment-list-content li h3{
	font-size: 16px;
	line-height: 28px;
	text-align: center;
	margin-bottom: 10px;
}

.footer-cta-content{
	display: flex;
	flex-direction: column;
	grid-gap: 40px;
}
.footer-cta-content h2{
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 10px;
	color: #175585;
}
.footer-cta-content p{
	margin-bottom: 20px;
}
.footer-cta-content img{
	border-radius: 15px;
}
.display-blog-wrapper{
	display: flex;
	flex-direction: column;
	grid-gap: 30px;
}
.display-blog-header{
	overflow-x: auto;
}

.category-wrapper{
	display: flex;
	grid-gap: 5px;
}
.category-wrapper li a{
	display: inline-flex;
	text-decoration: none;
	color: #FFF;
	padding: 5px 15px;
	background: #175585;
	border-radius: 5px;
}
.display-blog-content{
	display: flex;
	flex-direction: column;
	grid-gap: 30px;
}
.blog-intro-wrapper .display-blog-content{
	flex-direction: unset;
	grid-gap: unset;
	flex-wrap: unset;
}
.display-blog-content li{
	
}
.display-blog-content li a{
	display: flex;
}
.display-blog-content li img{
	aspect-ratio: 5 / 3;
	border-radius: 15px;
	margin-bottom: 10px;
	object-fit: cover;
}
.display-blog-content li h3{
	margin-bottom: 10px;
}
.display-blog-content li h3 a{
	font-size: 16px;
	line-height: 24px;
	color: #175585;
	text-decoration: none;
}
.blog-intro-wrapper .display-blog-content li h3 a{
	color: #175585;
}
.bg-blue .blog-intro-wrapper .display-blog-content li h3 a{
	color: #FFF;
}
.display-blog-content li p{
	overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3;
   -webkit-box-orient: vertical;
}
.blog-intro-wrapper .display-blog-content li p{
	color: #000;
}
.bg-blue .blog-intro-wrapper .display-blog-content li p{
	color: #FFF;
}
.display-blog-footer {
    display: flex;
	justify-content: center;
    grid-gap: 5px;
}
.display-blog-footer span{
	font-size: 16px;
	line-height: 16px;
	padding: 7px 12px;
	background: #175585;
	color: #FFF;
	border: 1px solid #175585;
	border-radius: 5px;
}
.display-blog-footer a{
	border-radius: 5px;
	font-size: 16px;
	line-height: 16px;
	padding: 7px 12px;
	border: 1px solid #175585;
	text-decoration: none;
	color: #175585;
}
.display-blog-footer a:hover{
	background: #175585;
	color: #FFF;
}
.blog-banner{
	padding: 30px 0;
	margin-bottom: 30px;
	background: #175585;
}
.banner-content{
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}
.banner-content .breadcrumb{
	display: flex;
	align-items: center;
	grid-gap: 8px;
	color: #FFF;
	margin-bottom: 15px;
}
.banner-content .breadcrumb a{
	text-decoration: none;
	color: #FFF;
}
.banner-content .breadcrumb svg{
	height: 12px;
	width: auto;
}
.banner-content h1{
	color: #FFF;
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 15px;
}
.banner-content .post-date{
	color: #FFF;
}
.banner-content img{
	aspect-ratio: 5 / 3;
	object-fit: cover;
	border-radius: 15px;
}
.blog-content-wrapper{
	display: flex;
	flex-direction: column;
	grid-gap: 50px;
}
.sidebar-wrapper{
	display: flex;
	flex-direction: column;
	grid-gap: 20px;
}
.quick-link-wrapper {
    padding: 20px 0 0;
    background: #175585;
	border-radius: 15px;
}
.sidebar-header{
	padding: 0 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #FFF;
}
.sidebar-header h3{
	color: #FFF;
	font-size: 18px;
	line-height: 26px;
}
.quick-link-content{
	display: flex;
	flex-direction: column;
}
.quick-link-content li{
	padding: 15px 20px;
	color: #FFF;
	cursor: pointer;
	font-size: 16px;
	line-height: 24px;
	border-bottom: 1px solid #FFF;
}
.sidebar-footer {
    padding: 20px 0 15px;
	text-align: center;
	cursor: pointer;
}
.sidebar-footer svg{
	height: 12px;
	width: auto;
}
.site-cta-wrapper a{
	display: block;
	min-height: 300px;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	text-decoration: none;
}
.site-cta-wrapper .bg{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
}
.site-cta-wrapper .bg:after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
}
.site-cta-wrapper h3{
	padding: 20px;
	color: #FFF;
	text-decoration: none;
	font-size: 24px;
	line-height: 36px;
	text-decoration: none;
}
.other-blogs-wrapper{
	padding: 20px 0 0;
    background: #175585;
	border-radius: 15px;
}
.other-blogs-wrapper .other-blogs li{
	padding: 15px 20px;
    color: #FFF;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    border-bottom: 1px solid #FFF;
}
.other-blogs li a{
	color: #FFF;
	text-decoration: none;
}

@media(min-width: 768px){
	.hero-banner{
		min-height: 600px;
		height: auto;
	}
	.hero-banner.v2{
		min-height: 300px;
	}
	.hero-banner-content{
		padding-top: 150px;
	}
	.hero-banner.v2 .hero-banner-content{
		padding-top: 150px;
	}
	.hero-banner-content h1{
		font-size: 36px;
		line-height: 48px;
	}
	.hero-banner-content h2{
		font-size: 20px;
		line-height: 30px;
	}
	.about-us-content h2{
		font-size: 24px;
		line-height: 36px;
	}
	.how-it-works-content{
		flex-direction: row;
		grid-gap: 30px;
	}
	.how-it-works-content .content {
		flex-basis: calc(33.33% - 20px);
	}
	.treatment-list-content{
		flex-direction: row;
		flex-wrap: wrap;
	}
	.treatment-list-content li{
		flex-basis: calc(50% - 10px);
	}
	.footer-cta-content{
		flex-direction: row;
	}
	.footer-cta-content .left-col,
	.footer-cta-content .right-col{
		flex-basis: 50%;
	}
	.display-blog-content{
		flex-direction: row;
		flex-wrap: wrap;
	}
	.blog-intro-wrapper .display-blog-content li{
		flex-basis: unset;
	}
	.display-blog-content li{
		flex-basis: calc(50% - 15px);
	}
	.display-blog-content li h3 a{
		font-size: 18px;
		line-height: 26px;
	}
	.sidebar-wrapper{
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-start;
	}
	.quick-link-wrapper,
	.other-blogs-wrapper{
		flex-basis: calc(50% - 10px);
		order: 1;
	}
	.site-cta-wrapper{
		flex-basis: 100%;
		order: 2;
	}
	.site-cta-wrapper h3{
		padding: 30px 40px 40px;
	}
	.site-cta-wrapper h3{
		font-size: 48px;
		line-height: 72px;
	}
}
@media(min-width: 1024px){
	.hero-banner{
		min-height: 800px;
		height: calc(100vh - 80px);
	}
	.hero-banner-content{
		padding-top: 200px;
	}
	.hero-banner-content h1{
		font-size: 48px;
		line-height: 56px;
	}
	.hero-banner-content h2{
		font-size: 24px;
		line-height: 36px;
	}
	.about-us-content{
		flex-direction: row;
		grid-gap: 50px;
	}
	.about-us-content .left-col,
	.about-us-content .right-col{
		flex-basis: 50%;
	}
	.about-us-content img{
		object-fit: cover;
	}
	.how-it-works-content .arrow{
		display: block;
	}
	.treatment-list-content li{
		flex-basis: calc(33.33% - 13.33px);
		padding: 30px;
	}
	.treatment-list-content li h3{
		font-size: 18px;
		line-height: 28px;
	}
	.footer-cta-content .left-col,
	.footer-cta-content .right-col{
		flex-basis: 50%;
	}
	.footer-cta-content h2{
		font-size: 24px;
		line-height: 36px;
	}
	.display-blog-content li{
		flex-basis: calc(33.33% - 20px);
	}
	.banner-content{
		flex-direction: row;
		align-items: center;
		grid-gap: 50px;
	}
	.blog-banner{
		padding: 50px 0;
		margin-bottom: 50px;
	}
	.banner-content .col-left,
	.banner-content .col-right{
		flex-basis: 50%;
	}
	.blog-content-wrapper {
		flex-direction: row;
	}
	.sidebar-wrapper{
		flex-direction: column;
		flex-wrap: nowrap;
		flex-basis: 300px;
		position: -webkit-sticky;
		  position: sticky;
		align-self: start;
		  top: 0;
	}
	.content-wrapper {
		flex-basis: calc(100% - 300px - 50px);
	}
	.quick-link-wrapper, 
	.other-blogs-wrapper,
	.site-cta-wrapper{
        flex-basis: unset;
        order: unset;
		width: 100%;
    }
	.site-cta-wrapper h3{
		padding: 20px;
		font-size: 22px;
		line-height: 36px;
	}
	.site-cta-wrapper a{
		min-height: 250px;
	}
}

.student-registration-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.student-registration-wrapper h2 {
    font-size: 20px;
    line-height: 32px;
    color: #175585;
    margin-bottom: 10px;
}
.student-registration-wrapper h3{
	color: #175585;
	margin-bottom: 10px;
}
.student-registration-content p {
    margin-bottom: 20px;
}
.student-registration-content p:last-child{
    margin-bottom: 0px;
}
.student-registration-form {
    padding: 30px 20px;
	box-shadow: 4rem 4rem 16.5rem rgba(27, 49, 66, 0.13);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
	border-radius: 15px;
	background: #175585;
	max-width: 350px;
	flex-basis: 350px;
}
.student-registration-form input {
    all: unset;
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: #FFF;
    padding: 13px 20px;
    font-size: 16px;
    border-radius: 15px;
    margin-bottom: 10px;
}
.student-registration-form button {
    all: unset;
    font-size: 18px;
    font-weight: 700;
    background: #FFF;
    width: 100%;
    display: block;
    padding: 13px 20px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 15px;
    color: #175585;
	margin-bottom: 20px;
	cursor: pointer;
}
.student-registration-form p {
    font-size: 12px;
    line-height: 16px;
    color: #FFF;
}
.student-registration-form span {
    color: #FFF;
    margin-bottom: 10px;
    display: block;
}
@media(min-width: 768px){
	.student-registration-wrapper h2{
		font-size: 24px;
        line-height: 36px;
	}
	.student-registration-wrapper h3{
		font-size: 18px;
		line-height: 24px;
	}
}
@media(min-width: 1024px){
	.student-registration-wrapper {
		flex-direction: row;
		gap: 50px;
		align-items: flex-start;
	}
	.student-registration-content {
		flex-basis: calc(100% - 400px);
	}
}