
/* Custom Green Color for Sidebar */
.bg-green-custom{
	background-color: #609512 !important;
}

/* Hide underline, Show on hover */
ul li a{
	text-decoration: none;
}
ul li a:hover{
	text-decoration-line: underline;
}

/* responsive cards slider */
.body{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 0 35px;
	background: linear-gradient(to left top, #031A9A, #8853FF);
}
.wrapper1{
	max-width: 1100px;
	width: 100%;
}
.wrapper1 .carousel1{
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% / 2) - 12px);
	gap: 16px;
	overflow: hidden;
}
.carousel1:where(.card1, .img1){
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.carousel1 .card1{
	height: 342px;
	list-style-type: none;
	background: #fff;
	border-radius: 8px;
	padding-bottom: 15px;
}
.card1 .img1{
	background-color: #8853FF;
	width: 150px;
	height: 150px;
	border-radius: 50%;
}
.card1 .img1 img{
	width: 148px;
	height: 148px;
	object-fit: cover;
	border-radius: 50%;
	border:4px solid #fff;
}

/* Media Query */
@media (max-width: 991px) {
	#clg_name {
		max-width: 360px;
	}
}
@media (min-width: 991px) {
	#clg_name {
		max-width: 550px;
	}
}
@media (min-width: 1200px) {
	#clg_name {
		max-width: 100%;
	}
}

@media (min-width:768px) {
	.w-md-50{
		width: 50%;
	}
}
@media (max-width:768px) {
	.w-md-100{
		width: 100%;
	}
}

/* @media (min-width:1200px) {
	#homebtn{
		display: none;
	}
} */
@media (max-width: 576px){
	#textOverSlider{
		margin-top: -40px;
		margin-left: -20px;
	}
}
@media (max-width: 576px){
	#logoOverSlider{
		margin-left: 15px;
		margin-bottom: 8px;
	}
}
@media (min-width:768px) {
	.boxed{
		max-width: 400px;
		height: 200px;
		object-fit: cover;
		border-radius: 10px;
	}
}

/* slider css */
#myCarousel {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .carousel-inner .carousel-item>div {
        display: none;
    }

    .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-start,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

@media (min-width: 768px) {

    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next,
    .carousel-item-next:not(.carousel-item-start) {
        transform: translateX(33.33%) !important;
    }

    .carousel-inner .carousel-item-left.active,
    .carousel-item-prev:not(.carousel-item-end),
    .active.carousel-item-start,
    .carousel-item-prev:not(.carousel-item-end) {
        transform: translateX(-33.33%) !important;
    }

    .carousel-item-next.carousel-item-start,
    .active.carousel-item-end {
        transform: translateX(0) !important;
    }

    .carousel-inner .carousel-item-prev,
    .carousel-item-prev:not(.carousel-item-end) {
        transform: translateX(-33.33%) !important;
    }
}