/* common setting start */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --redColor: #ef3737;
    --blueColor: #0278bd;
    --darkBlueColor: #353b6b;
    --greenColor: #16a22d;
    --orangeColor: #f8a108;
    --blackColor: #343a40;
	--pinkColor: #ff007c;
    --linkColor: #00129b;
    --whiteColor: #ffffff;
}
body {
    font-size: 13px;
    color: #111111;
	font-weight: 400;
	line-height: 24px;
    background-color: var(--whiteColor);
    font-family: "Poppins", sans-serif;
	position: relative;
}
h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
h2 span {
    color: var(--orangeColor);
}
p {
    line-height: 26px;
    margin-bottom: 10px;
}
.button {
    color: var(--whiteColor);
    background-color: var(--orangeColor);
    border: 1px solid var(--orangeColor);
    padding: 5px 15px;
    border-radius: 2px;
}
.button:hover {
    color: var(--whiteColor);
    opacity: .7;
}
b {
    font-weight: 600;
}
.line-height-32 {
    line-height: 32px;
}
/* common setting end */

/* color start */
.red-background {
    background-color: var(--redColor);
}
.green-background {
    background-color: var(--greenColor);
}
.blue-background {
    background-color: var(--blueColor);
}
.orange-background {
    background-color: var(--orangeColor);
}
.pink-background {
    background-color: var(--pinkColor);
}
/* color end */

/** header start **/
.broadcast marquee {
    color: #011297;
    background-color: var(--whiteColor);
    padding: 5px 0 4px;
    margin-bottom: -7px;
}
.broadcast marquee img {
    width: 26px;
    margin-right: 2px;
}
.broadcast marquee a {
    font-size: 12px;
    font-weight: 500;
    color: var(--whiteColor);
    background-color: var(--pinkColor);
    padding: 0px 10px;
    border-radius: 30px;
    margin-left: 5px;
}
/** header end **/

/* main slider start */
#main-slider .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 20px;
    border: 0;
    border-top: 0;
    border-bottom: 0;
}
/* main slider end */

/** footer start **/
.footer {
    background-image: url(../../assets/images/background/footer.png);
    background-color: hsl(210, 25%, 3%);
    padding: 60px 0px 20px;
}
/* footer link start */
.footer .footer-link h3 {
    font-size: 18px;
    color: #dedede;
    font-weight: 500;
    border-bottom: 1px solid #212020;
    padding: 0 0 10px;
    margin-bottom: 20px;
}
.footer .footer-link p {
    color: #b1b0b0;
    line-height: 28px;
    padding: 0 0 5px;
}
.footer .footer-link ul li a {
    color: #b1b0b0;
    line-height: 36px;
}
.footer .footer-link ul li a:hover {
    color: var(--orangeColor);
}
.footer .footer-link ul li a i {
    padding-right: 3px;
}
.footer .footer-socials ul {
    display: flex;
    gap: 7px;
    padding: 10px 0 0;
}
.footer .footer-socials ul li a {
    font-size: 14px;
    color: var(--whiteColor);
    display: block;
    width: 34px;
    height: 34px;
    line-height: 36px;
    text-align: center;
    border-radius: 100px;
}
.footer .footer-socials ul li a:hover {
    opacity: .8;
}
/* footer link end */

/* icon info wrapper start */
.icon-info-wrapper {
    background-color: #20272f;
    padding: 20px 30px 15px;
    margin-top: 40px;
    border-radius: 4px;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 5%);
}
.single-icon-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.single-icon-info__image {
	-webkit-flex-basis: 100px;
	-ms-flex-preferred-size: 100px;
	flex-basis: 30px;
}
.single-icon-info__image span{
    font-size: 36px;
    line-height: 36px;
    color: #d8d8d8;
}
.single-icon-info__content {
	-webkit-flex-basis: calc(100% - 100px);
	-ms-flex-preferred-size: calc(100% - 100px);
	flex-basis: calc(100% - 100px);
	margin-left: 20px;
}
.single-icon-info__title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 5px;
}
.single-icon-info__title--black2 {
	color: #11202D;
}
.single-icon-info__title--black3 {
	color: #f4bd5b;
}
.single-icon-info__text:last-child {
	color: #ececec;
    line-height: 20px;
}
/* icon info wrapper end */

/* footer copyright start */
.footer .copyright {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
.footer .copyright ul {
    display: flex;
}
.footer .copyright ul li a {
    color: #b1b0b0;
    line-height: 12px;
    border-right: 2px solid #807e7e;
    padding: 0 10px;
}
.footer .copyright ul li a:hover {
    color: var(--orangeColor);
}
.footer .copyright ul li:first-child a {
    border-left: 0;
    padding-left: 0;
}
.footer .copyright ul li:last-child a {
    border-right: 0;
    padding-right: 0;
}
.footer .copyright h4 {
    font-size: 13px;
    color: var(--whiteColor);
    margin: 0;
}
.footer .copyright h4 img {
    width: 50%;
}
.footer .copyright p {
     color: #b1b0b0;
}
.footer .copyright p a {
    color: var(--orangeColor);
}
/* footer copyright end */
/** footer end **/

/* breadcrumb start */
.breadcrumb {
    background-image: url(../images/breadcrumb/breadcrumb.jpg);
    padding: 70px 0;
    background-size: cover;
    background-position: center center;
    margin: 0;
}
.breadcrumb h3 {
    font-size: 28px;
    color: var(--whiteColor);
}
.breadcrumb ul {
    padding: 8px 0px;
    display: inline-block;
    border-top: 1px solid #774a57;
    border-bottom: 1px solid #774a57;
}
.breadcrumb ul li {
    position: relative;
    color: var(--whiteColor);
    margin-right: 4px;
    padding-right: 12px;
    display: inline-block;
    text-transform: uppercase;
}
.breadcrumb ul li:before {
    font-size: 14px;
    color: var(--whiteColor);
    position: absolute;
    content: '/';
    right: -2px;
    top: 0px;
}
.breadcrumb ul li:last-child:before {
    display: none;
}
/* breadcrumb end */

/* table layout start */
.table-layout .table {
    margin-bottom: 0px;
}
.table-layout .table thead tr th {
    color: var(--whiteColor);
    padding: 2px 7px;
    font-weight: 500;
    background-color: var(--darkBlueColor);
    border: 1px solid #4d5387;
    vertical-align: middle;
    white-space: nowrap;
}
.table-layout .table tbody tr td {
    padding: 5px 7px;
    line-height: 20px;
    vertical-align: middle;
}
.table-layout .table tbody tr td p {
    line-height: 20px;
    margin: 0;
}
/* table layout end */

/* card layout start */
.card-layout {
    background-color: var(--whiteColor);
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    margin-bottom: 21px;
}
.card-layout img {
    width: 100%;
    border-radius: 6px 6px 0 0;
}
.card-layout p {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 6px 5px 4px;
    margin-bottom: 0 !important;
}
/* card layout end */

/* home page start */
.home-about {
    padding: 25px 0 50px;
}
.home-about h1 {
    font-size: 30px;
    text-align: center;
    margin: 0 0 30px;
}
.home-about h1 span {
    font-size: 32px;
    display: block;
    color: var(--orangeColor);
}
.home-about-carte {
    background-image: url(../images/background/about-carte.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.home-about-carte .image {
    margin: 0 -12px;
}
.home-about-carte .content {
    background-color: #1d203cf7;
    padding: 70px;
    margin: 0 -12px;
}
.home-about-carte .content h2 {
    color: var(--whiteColor);
    margin-bottom: 20px;
}
.home-about-carte .content p {
    color: #dbdbdb;
    margin-bottom: 20px;
}
.home-carte-iti {
    background-color: #f3f3f3;
    padding: 45px 0;
}
.home-carte-iti p {
    margin-bottom: 20px;
}
.home-vision {
    padding: 55px 0 50px;
}
.home-medical-centre {
    background-color: #f3f3f3;
    padding: 50px 0 45px;
}
.home-medical-centre p {
    margin-bottom: 20px;
}
.home-cultural-activity {
    padding: 50px 0 40px;
}
.home-cultural-activity h2 {
    text-align: center;
    margin: 0 0 20px;
}
.home-joint-ceremony {
    padding: 50px 0 60px;
}
.home-joint-ceremony h2 {
    text-align: center;
    margin: 0 0 20px;
}
/* home page end */

/** testimonial start **/
.testimonial {
    padding: 60px 0px;
    background-image: url(../../assets/images/background/testimonials.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.testimonial .heading {
    margin: 0 0 20px;
}
.testimonial .heading h2 {
    font-size: 36px;
    line-height: 48px;
    color: var(--whiteColor);
    font-weight: 700;
    margin-bottom: 0px;
}
.testimonial .heading h2 span {
    color: var(--orangeColor);
}
.testimonial .heading p {
    font-size: 18px;
    color: var(--whiteColor);
    line-height: 28px;
}
.testimonial .testimonial-item {
    margin: 30px 150px 0;
    text-align: center;
}
.testimonial .testimonial-item img {
    width: 100px;
    border: 3px solid #d1cdcd;
    border-radius: 100px;
}
.testimonial .testimonial-item h3 {
    font-size: 13px;
    line-height: 26px;
    color: var(--whiteColor);
    font-weight: 400;
    margin: 10px 0;
}
.testimonial .testimonial-item p {
    display: flex;
    justify-content: center;
    gap: 2px;
    font-size: 20px;
}
.testimonial .testimonial-item p i {
    color: var(--orangeColor);
}
/** testimonial end **/

/* carte toppers start */
.carte-toppers {
    padding: 50px 0;
}
.carte-toppers h2 {
    text-align: center;
    margin: 0 0 20px;
}
.carte-toppers .topper-list {
    background-color: var(--whiteColor);
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    margin-bottom: 22px;
}
.carte-toppers .topper-list img {
    border-radius: 3px 3px 0 0;
    width: 100%;
}
.carte-toppers .topper-list ul {
    padding: 8px 10px 6px;
    line-height: 26px;
    margin: auto;
}
.carte-toppers .topper-list ul li {
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;

}
.carte-toppers .topper-list ul li span {
    font-weight: 600;
    padding-left: 5px;
}
/* carte toppers end */

/* page content start */
.page-content {
    padding: 40px 0;
}
.page-content .heading {
    text-align: center;
    margin: 0 0 15px;
}
.page-content h3 {
    font-size: 22px;
}
.page-content ul {
    line-height: 30px;
    margin-bottom: 10px;
}
.page-content ul li i {
    padding-right: 1px;
}
/* page content end */

/* contact page start */
.contact-page .contact-details h2 {
    margin: 0 0 25px;
}
.contact-page .contact-details li {
    padding: 0 0 15px;
}
.contact-page .contact-details li i {
    float: left;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: var(--whiteColor);
    background-color: var(--darkBlueColor);
    border-radius: 100px;
    margin-right: 10px;
}
.contact-page .contact-details li h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0px;
}
.contact-page .contact-form h2 {
    margin: 0 0 25px;
}
.contact-page .contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}
.contact-page .contact-form label {
    position: absolute;
    top: -6px;
    left: 10px;
    z-index: 9;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    padding: 0 1px;
    background-color: var(--whiteColor);
    margin-bottom: 0;
}
.contact-page .contact-form sup {
    font-size: 13px;
    top: 1px;
    color: var(--redColor);
}
.contact-page .contact-form .form-control {
    font-size: 13px;
    height: 36px;
    border-radius: 3px;
    box-shadow: none;
}
.contact-page .contact-form textarea {
    height: 148px !important;
    background-position: right .5rem center;
}
.contact-page .contact-form .action-button .button {
    width: 100%;
}
/* contact page end */

/* placement start */
.placement .placement-item {
    background-color: var(--whiteColor);
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    margin-bottom: 22px;
}
.placement .placement-item img {
    border-radius: 3px 3px 0 0;
}
.placement .placement-item ul {
    padding: 8px 10px 6px;
    line-height: 26px;
    margin: 0;
}
.placement .placement-item ul li {
    font-size: 12px;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.placement .placement-item ul li span {
    font-weight: 600;
    padding-left: 5px;
}
/* placement end */

/* computer centre start */
.accreditation {
    text-align: center;
    background-color: var(--darkBlueColor);
    margin: 45px -12px 20px;
    padding: 2rem 20rem 1.5rem;
}
.accreditation h2 {
    font-size: 32px;
    color: var(--whiteColor);
}
.accreditation p {
    color: var(--whiteColor);
}
.accreditation hr {
    color: #aaa7a7;
}
/* computer centre end */

/* image gallery start */
.image-gallery-wrapper {
	background-color: var(--whiteColor);
}
.image-gallery-item {
	margin-bottom: 22px;
}
.image-gallery-item a {
	display: block;
	position: relative;
	border: 1px solid #e8e8e8;
    border-radius: 3px;
}
.image-gallery-item a img {
	width: 100%;
}
.image-gallery-item a:before {
	-webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: #00a75f;
	opacity: 0;
	visibility: hidden;
	top: 0;
	left: 0;
}
.image-gallery-item a:after {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #ffffff;
	content: "\f489";
	font-family: Ionicons;
	font-size: 3.125rem;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.image-gallery-item a:hover:before {
	opacity: 0.9;
	visibility: visible;
}
.image-gallery-item a:hover:after {
	opacity: 1;
	visibility: visible;
}
/* image gallery end */

/* mobile footer start */
.mobile-footer {
    margin: 1rem 1.2rem;
    padding: 15px;
    border: 1px solid #c4c3c3;
    border-radius: 8px;
}
.mobile-footer h3 {
    font-size: 18px;
    color: var(--whiteColor);
    margin-bottom: 15px;
}
.mobile-footer .contact {
    font-size: 14px;
    color: var(--whiteColor);
    line-height: 25px;
}
.mobile-footer .contact li {
    margin: 0 0 7px;
}
.mobile-footer .contact li i {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #ffffff;
    margin-right: 7px;
    border-radius: 100px;
}
.mobile-footer .social {
    display: flex;
    gap: 8px;
    padding: 15px 0 3px;
}
.mobile-footer .social li a {
    display: block;
    font-size: 16px;
    color: var(--whiteColor);
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 100px;
}
/* mobile footer end */