/* ----------------------------------------------------------------
	Canvas: Care
-----------------------------------------------------------------*/

:root {
	--cnvs-themecolor: #2c9bd3;
	--cnvs-themecolor-rgb: 44, 155, 211;
	
	--cnvs-themecolor-2: #fab21c;
	--cnvs-themecolor-2-rgb: 250, 178, 28;
	
	--cnvs-themecolor-3: #d5eaf4;
	--cnvs-themecolor-3-rgb: 213, 234, 244;

	--cnvs-color-2: #FFCD8C;
	--cnvs-body-font: 'IBM Plex Sans', sans-serif;
	--cnvs-primary-font: 'IBM Plex Serif', serif;
	--cnvs-secondary-font: 'Playfair Display', serif;
	--cnvs-card-rounded: 20px;	
}

#header {
	--cnvs-primary-menu-font : var(--cnvs-body-font);
}

.font-display {
	font-family: var(--cnvs-secondary-font);
}

.menu-link {
	text-transform: none;
	letter-spacing: 0;
	font-size: 1.0625rem;
	font-weight: 500;
}

.bg-color-2 { background-color: var(--cnvs-color-2) !important; }
.color-2 { color: var(--cnvs-color-2) !important; }

.slider-element { background: linear-gradient(to right, rgba(255,255,255,1) 40%, rgba(70,193,176, .7)), url('images/1.png') no-repeat 90% 100% / auto 100%; }

@media (min-width: 992px) {
	.slider-element {
		background: linear-gradient(to right, rgba(255,255,255,0), rgba(70,193,176, 0.17)), url('') no-repeat 90% 100% / auto 100%;
	}
}

.feature-box-border .feature-box { position: relative; }

.feature-box-border .feature-box:not(.noborder)::after {
	content: "";
	position: absolute;
	top: calc(64px + 16px);
	left: 59px;
	width: 2px;
	height: calc(100% - 16px);
	background-color: #EEE;
	z-index: 0;
}

.feature-box-border .fbox-color.feature-box:not(.noborder)::after { background-color: #0F6458; }

.feature-box-border .fbox-icon i,
.feature-box-border .fbox-border.fbox-light .fbox-icon i {
	line-height: 60px;
	font-size: 24px;
	z-index: 1;
	text-align: center;
}

.fbox-border.fbox-light .fbox-icon a { background-color: #FFF; }

.fbox-border.fbox-effect .fbox-icon i::after {
	background-color: #0F6458;
}

.bg-color-50 {
	background-color: rgba(15, 100, 88, 0.4) !important;
	background-color: #0f645852 !important; /* Or, less accurately, #ff08 */
}

.dark .line { border-color: rgb(255, 205,140, .2) !important; }

.section-mobile {
	width: calc(100vw - 30px);
	margin-left: auto;
	margin-right: auto;
	border-radius: 20px;
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 768px) {
	.section-mobile {
		width: calc(100vw - 60px);
	}
}

/* ----------------------------------------------------------------------------
	Services Grid
---------------------------------------------------------------------------- */

.grid-border {
	--cnvs-grid-border-color: var(--cnvs-color-2);
	--cnvs-grid-border-opacity: .5;
}

.pricing, [class*=pricing-] {
	--cnvs-pricing-price-font-size: 3rem;
}

/* ----------------------------------------------------------------------------
	Nav - About Page
---------------------------------------------------------------------------- */

/* Nav Pills - CovidCare


.nav-pills .nav-link {
	margin-bottom: 10px;
	border-radius: 3px;
}
.nav-pills .nav-link.active {
	background-color: #0F6458;
	margin-bottom: 20px;
	padding: 30px 25px;
}

.nav-pills .nav-link h3 {
	display: block;
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 15px;
	font-weight: 400;
	color: #0F6458;
}

.nav-pills .nav-link.active h3 {
	color: #FFCD8C;
	font-weight: 500;
}

.nav-pills .nav-link p {
	display: none;
	visibility: hidden;
	font-size: 14px;
	line-height: 1.6 !important;
	margin-bottom: 0;
	color: #EEE;
}

.nav-pills .nav-link.active p {
	display: block;
	visibility: visible;
}

@media (max-width: 767.98px) {
	.nav-pills .nav-link:not(.active) p {
		display: block;
		visibility: visible;
		color: #444;
	}

	.nav-pills .nav-link,
	.nav-pills .nav-link.active {
		padding: 15px 20px;
		margin-bottom: 8px;
	}
}
*/



.bg-pattern {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.bg-pattern ~ * {
	position: relative;
	z-index: 1;
}

/* Custom */
/* AboutImage-Cross*/


.about-img > img {
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 80%;
}

.about-img > img + img {
	position: relative;
	margin-top: 60px;
	border: 12px solid #FFF;
}

/*Program Listing*/
.i-products {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}

.i-products:hover { box-shadow: 0 4px 6px rgba(0,0,0,.04); }

.i-products .products-image,
.i-products .products-image img {
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}

.i-products .products-image img {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.i-products:hover .products-image img {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}

.i-products .products-image .badge {
	position: absolute;
	display: block;
	top: 10px;
	left: 10px;
	color: #222;
	background-color: #FFF;
	padding: 5px;
	border-radius: 3px;
}

.i-products .products-desc {
	position: relative;
	padding: 25px;
	background-color: #FFF;
	border: solid #EEE;
	border-width: 0 1px 1px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	min-height: 250px;
	-webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.i-products:hover .products-desc {
	margin-top: -123px;
	min-height: 373px;
	box-shadow: 0 -3px 20px 3px rgba(0,0,0,.4);
}

.i-products .products-desc h3 {
	font-size: 20px;
	margin-bottom: 8px;
}

.i-products .products-desc p,
.i-products .products-desc .counter,
.i-products .products-hoverlays .list-group-item,
.i-products .products-hoverlays .product-user a,
.i-products .products-hoverlays .products-location { color: #999; }

.i-products .products-desc p {
	font-weight: 400;
	margin-bottom: 25px;
}

.i-products .products-desc .counter {
	display: block;
	font-size: 13px;
	font-weight: 600;
}

.i-products .products-desc h3 a,
.i-products .products-desc .counter span,
.i-products .products-desc .counter strong,
.i-products .products-hoverlays .list-group-item strong { color: #333 }

.counter.counter-xs {
	font-size: 13px;
	color: #555;
}

.i-products .products-hoverlays .list-group-item {
	padding-left: 0;
	font-size: 14px;
}

.i-products .products-hoverlays .product-user img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 10px;
}

.i-products .products-hoverlays {
	position: absolute;
	opacity: 0;
	left: 0;
	right: 0;
	bottom: -100px;
	width: 100%;
	padding-left: 25px;
	padding-right: 25px;
	background-color: #FFF;
	visibility: hidden;
	-webkit-transform: translateY(-20px);
	transform: translateY(-20px);
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	z-index: 1;
	transition: all .2s ease-in-out;
	-webkit-backface-visibility: hidden;
}

.i-products:hover .products-hoverlays {
	bottom: 0;
	opacity: 1;
	visibility: visible;
	transition: all .2s ease-in-out;
}

.i-products .skills li > span { top: -30px; }


/*university-page-slider*/



.hero-diagonal::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(var(--cnvs-themecolor-rgb, 126, 150, 128), 1) 30%, rgba(var(--cnvs-themecolor-rgb, 126, 150, 128), 0.5) 100%);
	-webkit-clip-path: none;
	clip-path: none;
	background-position: center center;
	background-size: cover;
	z-index: 2;
}

.hero-diagonal::before {
		width: 60%;
		-webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
		clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
	}
	
/* 3DCTA - Promocard */	

.promo-card {
	--promo-card-gap: 15px;
	transform: translateX(calc(var(--promo-card-gap) * 2)) translateY(calc(var(--promo-card-gap) * -2));
	width: calc(100% - calc(var(--promo-card-gap) * 2));
}

.promo-card div:nth-child(1) {
	position: relative;
	padding: 60px 90px;
	z-index: 3;
}

.promo-card>div:nth-child(2),
.promo-card>div:nth-child(3) {
	position: absolute;
	top: var(--promo-card-gap);;
	left: calc(-1 * var(--promo-card-gap));
	width: 100%;
	height: 100%;
	background-color: #bccce7;
	z-index: 1;
}

.promo-card>div:nth-child(3) {
	top: calc(2 * var(--promo-card-gap));
	left: calc(-2 * var(--promo-card-gap));
	background-color: #e6ecf7;
	z-index: 0;
}

/*owl carousel projects - university page*/

.owl-carousel .jumbotron { height: 400px; }

.owl-item .jumbotron {
	opacity: .5;
	transform: scale(0.95);
	transition: all .5s ease;
}

.owl-item .jumbotron-text {
	opacity: 0;
	transform: scale(0.9);
	transition: all .4s .2s ease;
}

.owl-item.active .jumbotron,
.owl-item.active .jumbotron-text {
	opacity: 1;
	transform: scale(1);
}


.fbox-md {
	--cnvs-featured-box-padding-x: 0;
    --cnvs-featured-box-icon: 3.5rem;
    --cnvs-featured-box-icon-size: 1.25rem;
}

.fbox-md .fbox-icon {
    width: var(--cnvs-featured-box-icon);
    height: var(--cnvs-featured-box-icon);
}

.contact-arrow {
	display: none;
}

.device-up-md .contact-arrow {
	display: block;
	position: absolute;
    width: 130px;
    top: 90px;
    right: -130px;
    rotate: 80deg;
    opacity: .1;
}

.section-contact .fbox-icon {
    --cnvs-featured-box-icon: 2.5rem;
    --cnvs-featured-box-icon-size: 1rem;
}

.fw-bolder {
	font-weight: 800 !important;
}

.rounded-xxl {
	border-radius: var(--cnvs-card-rounded);
}

.pricing-table .card {
	border-radius: 20px;
	padding: 25px 40px;
	background-color: #FFF;
	background-repeat: no-repeat;
	background-position: -1px -1px;
	background-size: 102% 160px;
	border-color: rgba(255, 255, 255, 0.3);
}

.pricing-table .card h2 { font-size: 48px; }

.pricing-table .card p {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6 !important;
}

.pricing-table .card .iconlist {
	font-size: 15px;
	font-weight: 500;
	color: #888;
	font-family: 'Roboto';
}

.pricing-table .card .iconlist li:not(:last-child) { margin-bottom: 7px; }

.dotted-bg::before {
	content: "";
	position: absolute;
	display: block;
	top: 40%;
	left: 35%;
	width: 110%;
	height: 120%;
	background-size: 12px 12px;
	background-position: center;
	transform: translate(-50%, -50%);
	background-image: radial-gradient(#3D80E4 14%, transparent 14%);
	-webkit-mask-image: radial-gradient(rgba(0,0,0,1),rgba(0,0,0,0) 75%);
	mask-image: radial-gradient(rgba(0,0,0,1),rgba(0,0,0,0) 75%);
	z-index: 0;
}

.dotted-bg::before { background-image: radial-gradient(rgba(255, 255, 255, 0.2) 14%, transparent 14%); }
.dotted-bg.dotted-bg-dark::before { background-image: radial-gradient(rgba(4, 4, 4, 0.2) 14%, transparent 14%); }

.toggle-wrap {
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 10px;
}

.toggle {
	padding: 18px 30px;
	margin-bottom: 0;
	background-color: rgba(255,255,255,0.1);
	border-bottom: 1px solid rgba(255,255,255,0.15);
	transition: background-color .2s ease;
}

.toggle:first-child {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.toggle:last-child {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.toggle:last-child { border-bottom: 0; }

.toggle .togglet {
	font-size: 19px;
	padding-left: 0;
	font-weight: 600;
	color: #F5F5F5;
}

.toggle:hover { background-color: rgba(255,255,255,0.15); }

/* Testimonials Carousel
-----------------------------------------------------------------*/
.testimonials-carousel .owl-stage {
	padding: 2rem 0 1.5rem;
}

.testimonials-carousel .owl-item {
	opacity: .6;
	transition: transform .3s ease;
	transform: scale(0.8);
}

.testimonials-carousel .owl-item.active.center {
	opacity: 1;
	transform: scale(1);
}

.testimonial {
	border: 0;
	box-shadow: 0 0 35px rgba(140, 152, 164, 0.2);
	border-radius: 0.25rem;
	padding: 25px;
}

.testimonial-image {
	width: 5rem !important;
	height: auto !important;
	margin: -2.5rem auto 0;
}

/* course selector */

.bootstrap-select {
	position: relative;
    flex: 1 1 auto;
    width: 1% !important;
    min-width: 0;
}

.dropdown-menu {
	width: max-content;
	min-width: max-content;
}

.bootstrap-select .btn-light {
	--bs-btn-active-bg: transparent;
	--bs-btn-bg: transparent;
	--bs-btn-hover-bg: transparent;
	--bs-btn-border-width: 0;
	--bs-btn-focus-box-shadow: none;
}

.bootstrap-select .dropdown-toggle:focus {
	outline: 0 !important;
}

.bootstrap-select .dropdown-item:hover,
.bootstrap-select .dropdown-item:focus,
.bootstrap-select .dropdown-item.selected {
	background-color: var(--cnvs-section-bg);
	color: #111;
}

.hand-mobile-img {
	--cnvs-hand-mobile-img-size: 180px;
	--cnvs-hand-mobile-img-right: 0px;
    position: absolute;
	width: var(--cnvs-hand-mobile-img-size);
    height: var(--cnvs-hand-mobile-img-size);
    top: calc(-1 * var(--cnvs-hand-mobile-img-size));
    right: var(--cnvs-hand-mobile-img-right);
    z-index: -1;
	object-fit: contain;
}

@media (min-width: 992px) {
	.hand-mobile-img {
		--cnvs-hand-mobile-img-size: 280px;
		--cnvs-hand-mobile-img-right: 100px;
	}
}

/* tabbed section */

#categories-tab.nav-pills {
	--bs-nav-pills-link-active-bg: var(--cnvs-themecolor);
	gap: 10px;
}

#categories-tab .nav-link:not(.active) {
	background-color: var(--cnvs-themecolor-2);
}

/*playvideo-about*/

.play-video i {
	position: absolute;
	padding-left: 5px;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	line-height: 81px;
	border-radius: 50%;
	z-index: 1;
	background-color: var(--cnvs-themecolor, #267DF4);
	text-align: center;
	font-size: 24px;
	color: #FFF;
	margin-top: -40px;
	margin-left: -40px;
	transition: transform .3s ease-out;
	-webkit-backface-visibility: hidden;
}

.play-video:hover i {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.border-radius-form-area {
	border-radius:20px;
	
}

/*admissionprocess*/
.bg-color-light {
	padding: 80px 0;
	background-color: rgba(var(--cnvs-themecolor-rgb, 32,158,187),0.07);
	border-top: 1px solid rgba(var(--cnvs-themecolor-rgb, 32,158,187),.08);
	border-bottom: 1px solid rgba(var(--cnvs-themecolor-rgb, 32,158,187),.1);
}

.feature-text {
	display: flex;
	align-items: center;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
	padding-bottom: 10px;
}

.fbox-text {
	font-size: 58px;
	line-height: 1;
	font-weight: 700;
}

.feature-text h3 {
	font-size: 22px;
	line-height: 1.3;
	margin-bottom: 0;
	margin-left: 15px;
	font-weight: 800;
}

.feature-text + p {
	color: #777;
	margin-top: 10px;
	margin-bottom: 0;
}

