/* Hero Section*/

.home-hero {
    height: 300px;
    position: relative;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.home-hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.home-hero::before {
    content: "";
    /* background: linear-gradient(90deg, #61a203 35%, #60a20362 83%); */
    background: #98C953;
    background: linear-gradient(180deg, rgba(152, 201, 83, 1) 0%, rgba(130, 180, 57, 1) 100%);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;

}

.home-hero input[type=search] {
    height: 45px;
    padding-left: 1rem;
    padding-right: 3rem;
}

.home-hero input[type=search]:focus {
    background-color: #fff;
}

.home-hero input[type=search]::placeholder {
    font-family: var(--font-family);
}

.home-hero .form-icon {
    background: #98C953;
    background: linear-gradient(180deg, rgba(152, 201, 83, 1) 0%, rgba(130, 180, 57, 1) 100%);
    width: 38px;
    height: 38px;
    right: 3px;
    top: 3px;
    display: grid;
    place-items: center;
    color: #fff;
    z-index: 5;
}

/* institute Start */
.institute .box {
    background: #fff;
    transition: 0.4s;
    box-shadow: 0 0 150px rgba(0, 0, 0, 0.1);
}

.institute .institute-icon {
    height: 100px;
    width: 100px;
    margin: auto;
    text-align: center;
}

.institute a:hover .box {
    background: var(--primary-color);
}

.institute .blog-box a, .institute a h6 {
    color: #202428;
	transition: all .3s ease;
}
.institute .read-more {
	color: #767676 !important;
}
.institute .blog-box:hover .read-more {
	color: var(--secondary-color) !important;
	border-bottom: 1px solid;
}

/* institute End */

/* FAQ */
.gen-faq .accordion-button {
    background-color: transparent;
    color: #202428;
}

/* FAQ End */

/* Page 2 */
.home-hero-detail {
    background-color: #61a2033d;
}

.path li::after {
    content: ">";
    margin-left: 8px;
}

.path li:last-child::after {
    content: unset;
}

.path li a {
    color: #000;
}
.path li:last-child a {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

/* content section */
.institute-detail .container {
    background-color: #fff;
}

.institute-detail li a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.2rem;
}

.institute-detail .sidebar {
    position: sticky;
    top: 100px;
}

.institute-detail .sidebar li {
    border-bottom: 1px solid #3e3e3e24;
    padding-bottom: .5rem;
}

.institute-detail .sidebar li a {
    font-size: 1.1rem;
}

/*Contact Us Page*/
.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=email] {
    padding: 0.8rem 0.5rem;
}

.form-icon {
    color: var(--primary-color);
    z-index: 11;
}
#submitQuestionPapers textarea {
	height: 50px;
}