body {
    color: #797979;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: #343148;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #F7CAC9;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #FFA500;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    background: #FF0000;
}

.back-to-top:hover i {
    color: #fff;
}

.back-to-top i {
    color: #fff;
    padding-top: 10px;
}

.download-certificate-btn{
    top: 55%;
    right: -12.5%;
    z-index: 100;
    background-color: #800707;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

.download-certificate-btn:hover{
    right: 0%;
    transition: 0.3s ease-in-out;
}
/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #232d39;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 120px;
    height: 120px;
    /* background: #232d39; */
    background: url(../img/yogaa.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: #fff;
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 2.8s infinite;
    animation: dot 2.8s infinite;
    display: none;
}

.preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    -webkit-animation: dots 2.8s infinite;
    animation: dots 2.8s infinite;
    display: none;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #fff;
    border-radius: 50%;
    display: none;
}

.left_right_img {
    position: relative;
}
.left_right_img::after{
    content: '';
    position: absolute;
    z-index: 1;
    left: 0px;
    top: 0px;
    background: url('/assets/web/img/sideimage.jpg');
    width: 3%;
    height: 100%;
    background-size: contain;
    background-position: center;
    /* background-position: left; */
    /* background-repeat: no-repeat; */
    display:block!important;
}
.left_right_img::before{
    content: '';
    position: absolute;
    z-index: 1;
    right: 0px;
    top: 0px;
    background: url('/assets/web/img/sideimage.jpg');
    width: 3%;
    height: 100%;
    background-size: contain;
    background-position: center;
    /* background-position: left; */
    /* background-repeat: no-repeat; */
    display:block!important;
}

.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 15px;
	left: 20px;
	font-size: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 25px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	z-index: 100;
}

.blink{
		animation: blink 1s linear infinite;
	}
@keyframes blink{
0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

.top-bar .nav-link{
    color: #ffffff !important;
}

/********** Top Bar CSS ***********/

.top-bar {
    position: relative;
    height: 35px;
    background: #800707;  
    margin-top: 84px;
}

.top-bar .top-bar-left {
     display: flex; 
    align-items: center;
    justify-content: center;
    /*display: grid;*/
    gap: 0px;
    grid-template-columns: repeat(8, 1fr);
    padding: 4px 0px;
    text-align: center;
    
}

.top-bar-left .nav-link{
    margin: 0px 10px;
    font-size: 15px;
    color: #000;
    padding: 0px;
    font-weight:600;
}
.nav-link{
    font-weight:600;
    font-size: 12px !important;
    padding: 5px;
}
.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 35px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text i {
    font-size: 13px;
    color: #ffffff;
    margin-right: 5px;
}

.top-bar .text h2 {
    color: #eeeeee;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text h2 a {
    color: #eeeeee;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text p {
    color: #eeeeee;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 0 5px;
}

.top-bar .social {
    display: flex;
    height: 35px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 100%;
    font-size: 16px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: #092a49;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0px 0px;
        text-wrap: nowrap;
    }
    
    .btn-whatsapp-pulse {
	display: none;
}
}
@media (max-width: 992px) {
    .btn-whatsapp-pulse {
	display: none;
    }
.left_right_img::before{
    display:none!important;
}
.left_right_img::after{
    display:none!important;
}
.p-110 {
    padding: 35px 0px!important;
}
 .courses-details-img {
       width:100%!important;
       height: 94px!important;
       margin-right:0px!important;
    }
.about-sec .about_image{
    width:180px!important;
}

.download-certificate-btn{
    top: 55%;
    right: -45%;
    z-index: 100;
    background-color: #800707;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

.download-certificate-btn:hover{
    right: 0%;
    transition: 0.3s ease-in-out;
}

}



/*********** Nav Bar CSS **********/

.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    line-height: 0px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: .5s;
    padding:0px;
}

.navbar .navbar-brand span {
    color: #343148;
    text-transform: lowercase;
    transition: .5s;
}

.navbar.nav-sticky .navbar-brand span {
    color: #ffffff;
}

/* .navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
} */

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 6px 8px 6px;
    color: #000!important;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    background: rgba(256, 256, 256, .1);
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.card-header {
    padding: 0.35rem 1.25rem;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        /*padding: 15px 60px!important;*/
        padding: 15px 20px!important;
        background: #f6d7ca !important;
        z-index: 9;
        /* border-bottom: 1px solid#000;
    }

    .navbar.nav-sticky {
        padding: 10px 60px;
        background: rgb(255 97 0) !important;
    }

    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        /* letter-spacing: 1px; */
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px;
        background: #f6d7ca !important;
    }

    .navbar-dark .navbar-toggler-icon {
        background: url('../../web/img/menu.png');
    }

    .navbar .navbar-brand span {
        color: #ffffff;
    }

    .navbar a.nav-link {
        padding: 5px;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
    }
}

/* .nav-item:hover .dropdown-menu{
    display: block;
    transition: all 300ms ease-out;
} */
.desktop-menu .navbar-nav :hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transition: all 0.3s ease-in-out;
    /* transform: rotate(-90deg); */
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
}

/* rotate caret on hover */
.dropdown-menu>a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
}

/* mobile-menu-css-start */
@media (max-width: 912px) {

    .mobile-menu .dropdown-submenu {
        position: relative;
    }

    .mobile-menu .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: .1rem;
        margin-right: .1rem;
    }

    .mobile-menu .dropdown-submenu a::after {
        transform: rotate(-90deg);
        position: absolute;
        right: 6px;
        top: .8em;
    }

    .mobile-menu .nav-item .dropdown-toggle::after {
        transition: all 0.5s;
    }

    .mobile-menu .nav-item.show>.dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .mobile-menu li li.show>.dropdown-toggle::after {
        transform: rotate(90deg);
    }

    .mobile-menu .dropdown-menu.show {
        display: block;
    }

    .mobile-menu .dropdown-menu {
        transition: all 0.3s ease-in-out;
        display: none;
        visibility: visible;
    }

    .mobile-menu li .dropdown-toggle:after {
        transition: all 0.5s;
    }

    .mobile-menu li.show>.dropdown-toggle:after {
        transform: rotate(180deg);
    }

    .mobile-menu li li.show>.dropdown-toggle:after {
        transform: rotate(90deg);
    }
}

/* mobile-menu-css-end */

.desktop-menu .text {
    margin: 0px 5px;
}

.desktop-menu .text p {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    margin-bottom: 0px;
}


.navbar .dropdown-menu {
    background: #d37e35;
}

.desktop-menu .dropdown-menu {
    /* transition: all 300ms ease-out; */
    transition: all 0.3s ease-in-out;
    top: 95%;
    left: -18%;
    opacity: 0;
    visibility: hidden;
    display: block;
    /* overflow: hidden; */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;

}

.desktop-menu .show{
    opacity: 1;
    visibility: visible;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #ff0000;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 0.2rem;
    clear: both;
    font-weight: 400;
    color: #000;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border-bottom: 1px solid#fff;
    font-size: 11px;
    word-wrap: break-word;
    
}

/********** Hero CSS ***********/

.hero {
    position: relative;
    width: 100%;
    /* margin-bottom: 45px; */
    /* padding: 110px 0px 0px 0px; */
    overflow: hidden;
    /* background:url('../img/2nd image.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
}

.about .notice {
    background-color: #fff;
    box-shadow: 1px 1px 6px 4px #00000014;
    margin-bottom: 15px;
}

.about .notice .notice-top-bar {
    padding: 15px 20px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    background-color: #FF6100;
}

.about .notice .notice-footer {
    padding: 15px 20px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    background-color: #FF6100;
}

.about .notice .notice-footer a {
    text-align: center;
    color: #fff;
    font-weight: 600;
}

.about .notice .notice-top-bar h6 {
    margin-bottom: 0px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.about .notice .notice-body {
    padding: 0px 15px;
    height: 360px;
    overflow: auto;
    background: url('../img/noticebg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.about .notice .notice-body marquee {
    height: 352px;
    overflow: auto;
}

.about .notice .notice-body ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.about .notice .notice-body ul li {
    width: 100%;
    border-bottom: 1px solid#d2d2d2;
    padding: 10px 0px;
}

.about .notice .notice-body ul li a {
    font-size: 15px;
    font-weight: 500;
}

.about .notice .notice-body ul li a:hover {
    color: #000000;
}

.notice-body blink {
    animation: 2s linear infinite condemned_blink_effect;
    color: red;
    font-size: 13px;
    font-weight: bold;
}

@keyframes condemned_blink_effect {
    0% {
        visibility: hidden;
    }

    50% {
        visibility: hidden;
    }

    100% {
        visibility: visible;
    }
}


.hero .container-fluid {
    padding: 0;
}

.hero .hero-image {
    position: relative;
    text-align: right;
}

.hero .hero-image img {
    max-width: 100%;
    height: 630px;
}

.hero .hero-text {
    position: relative;
    /* padding-left: 75px; */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero .hero-text h1 {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero .hero-text p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
}

.hero .hero-btn .btn {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    background: #FF0000;
    border-radius: 0;
    transition: .3s;
}

.hero .hero-btn .btn:hover {
    color: #FF0000;
    background: #ffffff;
}

.hero .hero-btn .btn:first-child {
    margin-right: 10px;
}

.hero .owl-nav {
    position: absolute;
    bottom: -22%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .owl-nav .owl-prev {
    width: 30px;
    height: 30px;
    background-color: #343148;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px;
    margin-right: 12px;
}

.hero .owl-nav .owl-prev i {
    color: #fff;
    font-size: 20px;
}

.hero .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    background-color: #343148;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px;
    margin: 10px 0px;
}

.hero .owl-nav .owl-next i {
    color: #fff;
    font-size: 20px;
}

@media (max-width: 991.98px) {
    .hero .hero-text {
        padding: 0 15px;
    }

    .hero .hero-text h1 {
        font-size: 35px;
    }

    .hero .hero-text p {
        font-size: 16px;
    }

    .hero .hero-text .btn {
        padding: 12px 30px;
        letter-spacing: 1px;
    }
}

@media (max-width: 767.98px) {
    .hero .hero-text h1 {
        font-size: 30px;
        font-weight: 600;
    }

    .hero .hero-text p {
        font-size: 14px;
    }

    .hero .hero-text .btn {
        padding: 10px 15px;
        font-weight: 400;
        letter-spacing: 1px;
    }

    .hero .hero-image {
        text-align: left;
        /* margin-top: 30px; */
    }

    .hero .hero-image img {
        max-width: 100%;
        max-height: 100%;
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .hero .hero-text h1 {
        font-size: 25px;
        font-weight: 600;
    }

    .hero .hero-text p {
        font-size: 14px;
    }

    .hero .hero-text .btn {
        padding: 8px 10px;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 0;
    }
}



/******* Page Header CSS *******/

.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 150px 0 90px 0;
    text-align: center;
    background: #F7CAC9;
}

.page-header h2 {
    position: relative;
    color: #343148;
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #343148;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #343148;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }

    .page-header a {
        font-size: 18px;
    }
}

/* Chat-button-start */

#main-div {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

#main-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 50px;
    width: 50px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    background-color: #8b6cc6;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* button, input, optgroup, select, textarea{
  outline: none!important;
  border: none!important;
} */
/* .dropdown .form-control{
  background-color: transparent;
} */
#main-button~button {
    visibility: hidden;
    font-weight: 600;
    height: 50px;
    padding: 0 20px;
    color: #fff;
    background: linear-gradient(90deg, #00a1f5, #0064f3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
    border: 0;
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    opacity: 0;
    white-space: nowrap;
    cursor: pointer;
    transition: .2s all linear;
    -webkit-transition: .2s all linear;
    -moz-transition: .2s all linear;
    -ms-transition: .2s all linear;
    -o-transition: .2s all linear;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

#main-button.open~button {
    visibility: visible;
    right: 70px;
    opacity: 1;
    transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button~a {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 50px;
    width: 50px;
    font-size: 20px;
    opacity: 0;
    text-decoration: none;
    color: #fff;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: .2s all linear;
    -webkit-transition: .2s all linear;
    -moz-transition: .2s all linear;
    -ms-transition: .2s all linear;
    -o-transition: .2s all linear;
}

#main-button~.telegram-color {
    background: linear-gradient(0deg, #017AB1, #01ABE6);
}

#main-button~.whatsapp-color {
    background: linear-gradient(0deg, #00B100, #09db09);
}

#main-button~.messenger-color {
    background: linear-gradient(0deg, #0078FF, #00C6FF);
}

#main-button.open~a {
    opacity: 1;
    transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
    -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button.open~a:nth-of-type(1) {
    bottom: 60px;
}

#main-button.open~a:nth-of-type(2) {
    bottom: 120px;
}

#main-button.open~a:nth-of-type(3) {
    bottom: 180px;
}

.wave {
    animation-name: wave;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes wave {
    0% {
        box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0);
    }
}

.open {
    animation-iteration-count: 1;
}


/******* Section Header ********/

.section-header {
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: space-between;*/
    /*margin-bottom: 15px;*/
}

/* .section-header {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 45px;
} */

.section-header h4{
     font-size: 25px;
    font-weight: 600;
    color: #3c3c3c;
}
.section-header p {
    /*display: inline-block;*/
    /* margin: 0 30px; */
    /*margin-bottom: 5px;*/
    /*padding: 0 10px;*/
    /*position: relative;*/
    font-size: 25px;
    font-weight: 600;
    /* background: #ffffff; */
    color: #3c3c3c;
}

/* .section-header p::after {
    position: absolute;
    content: "";
    height: 2px;
    top: 15px;
    right: -30px;
    left: -30px;
    background: #F7CAC9;
    z-index: -1;
} */
.section-header h6 {
    font-size: 14px;
    font-weight: 600;
    /* text-decoration: underline;f */
    color: #fefbfb;
    padding: 8px 12px;
    background: #e59e1b;
    border-radius: 15px;

}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 40px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}



/********** About CSS **********/

.about {
    /*position: relative;*/
    /*width: 100%;*/
    /*padding: 45px 0;*/
    /* background:url('../img/1stimages.jpg'); */
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
}

.about .section-header {
    margin-bottom: 20px;
    /*margin-left: 0;*/
}

.about .about-img {
    position: relative;
    height: 100%;
}

.about .about-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-text p {
    font-size: 16px;
    color: #000;
    text-align: justify;
}

.about .about-text a.btn {
    position: relative;
    /*margin-top: 15px;*/
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    background: #FF0000;
    border-radius: 5;
    transition: .3s;
}

.about .search-button {
    padding: 7px 35px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #ff7133;
    border-color: #ff7133;
    border-radius: 5px;
}

.about .btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #ff7133 !important;
    border-color: #ff7133 !important;
}

.about .about-text a.btn:hover {
    color: #343148;
    background: #F7CAC9;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}



/********* Service CSS *********/

.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .07);
    transition: .3s;
}

.service .service-item:hover,
.service .service-item.active {
    background: #ff6100;
    color: #ffffff;
}

.service .service-icon {
    position: relative;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service .service-icon img {
    width: 100px;
    height: 100px;
}

.service .service-icon i {
    position: relative;
    font-size: 50px;
    color: #343148;
    z-index: 3;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
        opacity: 0;
    }
}

.service .service-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    transition: .3s;
}

.service .service-item:hover h3,
.service .service-item.active h3 {
    color: #F7CAC9;
}

.service .service-item p {
    margin: 0;
    font-size: 16px;
}

/* top-product-start */

.top-product .testimonial-item .card {
    padding: 15px;
    box-shadow: 1px 1px 10px 1px #00000014;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-color: #fff;
    margin-right: 5px;
}

.top-product .testimonial-item .card p span {
    font-size: 13px;
    font-weight: 400;
    text-decoration: line-through;
    color: #c0c0c0;
}

.top-product .testimonial-item .card .card-body .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.top-product .testimonial-item .card p {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.top-product .testimonial-item .card .btn-primary {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #FF5B00;
    border-color: #FF5B00;
    padding: 5px 15px;
}

.top-product .testimonial-item {
    margin: 5px;
}

.top-product .testimonial-item .card img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.top-product .testimonial-item .card .card-body {
    padding: 2px;
}

/* top-product-end */


/********** Class CSS **********/

.class {
    position: relative;
    padding: 45px 0 15px 0;
}

.class #class-filter {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.class #class-filter li {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 6px 12px;
    color: #343148;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
    background: none;
    border: 1px solid #ff6100;
    transition: .3s;
}

.class #class-filter li:hover,
.class #class-filter li.filter-active {
    background: #ff6100;
    color: #FFF;
}

.class .class-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: .3s;
}

.class .class-wrap {
    position: relative;
    width: 100%;
}

.class .class-img {
    position: relative;
}

.class .class-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.class .class-text {
    position: relative;
    padding: 30px 30px 25px 30px;
    border-right: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    border-left: 1px solid rgba(0, 0, 0, .07);
}

.class .class-text h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.class .class-teacher {
    position: relative;
    height: 40px;
    margin-top: -50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 40px;
}

.class .class-teacher img {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: #F7CAC9;
}

.class .class-teacher h3 {
    width: calc(100% - 95px);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 0 15px;
    white-space: nowrap;
    overflow: hidden;
}

.class .class-teacher a {
    width: 40px;
    height: 40px;
    padding: 0 0 3px 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 100;
    color: #343148;
    background: #F7CAC9;
    border-radius: 40px;
    transition: .3s;
}

.class .class-wrap:hover .class-teacher a {
    color: #F7CAC9;
    background: #343148;
}

.class .class-meta {
    position: relative;
    display: flex;
    align-items: center;
}

.class .class-meta p {
    margin: 0;
    font-size: 14px;
}

.class .class-meta p i {
    margin-right: 5px;
    color: #343148;
}

.class .class-meta p:first-child {
    margin-right: 10px;
}




/********* Pricing CSS *********/

.discount {
    position: relative;
    width: 100%;
    margin: 45px 0;
    padding: 90px 0;
    background: linear-gradient(rgba(247, 202, 201, .7), rgba(247, 202, 201, .7)), url(../img/discount-bg.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.discount .container {
    max-width: 750px;
    text-align: center;
}

.discount .section-header {
    margin-bottom: 20px;
}

.discount .section-header p {
    color: #343148;
    background: transparent;
}

.discount .section-header p::after {
    display: none;
}

.discount .section-header h2 span {
    color: #F32B56;
    font-size: 50px;
}

.discount .discount-text p {
    color: #454545;
}

.discount .discount-text .btn {
    margin-top: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #F7CAC9;
    background: #343148;
    border-radius: 0;
    transition: .3s;
}

.discount .discount-text .btn:hover {
    color: #343148;
    background: #ffffff;
}



/********* Pricing CSS *********/

.price {
    position: relative;
    width: 100%;
    padding: 0px 0 0px 0;
}

.price .price-item {
    position: relative;
    margin-bottom: 30px;
}

.price .price-header,
.price .price-body,
.price .price-footer {
    position: relative;
    width: 100%;
    text-align: center;
    background: #ffffff;
    overflow: hidden;
}

.price .price-header {
    padding: 30px;
    background: #F7CAC9;
    color: #343148;
}

.price .price-item.featured-item .price-header {
    background: #343148;
    color: #F7CAC9;
}

.price .price-status {
    margin-top: -30px;
    text-align: right;
}

.price .price-status span {
    position: relative;
    display: inline-block;
    height: 30px;
    right: -30px;
    padding: 7px 10px;
    text-align: center;
    color: #343148;
    font-size: 14px;
    line-height: 14px;
    background: #F7CAC9;
}

.price .price-title h2 {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.price .price-prices h2 {
    font-size: 45px;
    font-weight: 700;
    margin-left: 10px;
}

.price .price-prices h2 small {
    position: absolute;
    font-size: 18px;
    font-weight: 400;
    margin-top: 9px;
    margin-left: -12px;
}

.price .price-prices h2 span {
    margin-left: 1px;
    font-size: 18px;
    font-weight: 400;
}

.price .price-item.featured-item h2 {
    color: #F7CAC9;
}

.price .price-body {
    padding: 25px 0 20px 0;
    border: 1px solid rgba(0, 0, 0, .07);
    border-bottom: none;
}

.price .price-description ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.price .price-description ul li {
    padding: 7px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.price .price-description ul li:last-child {
    border: none;
}

.price .price-action {
    border: 1px solid rgba(0, 0, 0, .07);
    border-top: none;
}

.price .price-action a.btn {
    margin-bottom: 30px;
    padding: 12px 20px;
    color: #343148;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    background: #F7CAC9;
    transition: .3s;
}

.price .price-action a:hover,
.price .price-item.featured-item .price-action a {
    color: #F7CAC9;
    background: #343148;
}

.price .price-item.featured-item .price-action a:hover {
    color: #343148;
    background: #F7CAC9;
}



/*********** Team CSS **********/

.team {
    position: relative;
    width: 100%;
    padding: 20px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .07);
    box-shadow: 1px 1px 10px 1px #00000014;
}

.team .team-img {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
}

.team .team-img img {
    position: relative;
    width: 100%;
    width: 230px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.team .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team .team-social a {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    background: #ff6100;
    opacity: 0;
}

.team .team-social a:hover {
    color: #fff;
    background: #f40400;
}

.team-item .team-button button {
    background-color: #ff6100;
    border-color: #ff6100;
    color: #fff;
    padding: 8px 22px;
    font-size: 15px;
    font-weight: 600;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.team-item .team-button button a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.team .team-item:hover .team-button button {
    opacity: 1;
}

.team .team-item:hover .team-social {
    background: rgb(0 0 0 / 0%);
}

.team .team-item:hover .team-social a:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .3s;
}

.team .team-text {
    position: relative;
    padding: 10px 5px;
    background: #ffffff;
}

a:hover,
a:active,
a:focus {
    color: inherit;
}

.team .team-text h2 {
    font-size: 18px;
    font-weight: 600;
}

.team .team-text p {
    margin: 0;
}



/******* Testimonial CSS *******/

.Placement {
    position: relative;
    padding: 45px 0;
}

.testimonial .container {
    padding: 0;
}

.Placement .item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Placement .item img {
    width: 200px;
    /*width: 100px;*/
    height: 100px;
    object-fit: contain;
    /* text-align: center; */
}

.collaboration {
    position: relative;
    padding: 45px 0;
}

.testimonial .container {
    padding: 0;
}

.collaboration .item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collaboration .item img {
    width: 60%;
    height: 120px;
    text-align: center;
}

.Associates .item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Associates .item img {
    width: 60%;
    text-align: center;
}

.Associates .owl-carousel .owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background-color: #6E1717;
    margin-top: 20px;
    margin-right: 10px;
    margin-left: 10px;
}

.Associates .owl-dots .active {
    background-color: #FF6100;
}

.Associates .owl-carousel .owl-dots.disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 0 15px;
    text-align: center;
}

.testimonial .testimonial-img {
    position: relative;
    margin-bottom: 15px;
    z-index: 1;
}

.testimonial .testimonial-item img {
    margin: 0 auto;
    width: 120px;
    padding: 13px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, .07);
    background: #ffffff;
    transition: .5s;
}

.testimonial .testimonial-text {
    position: relative;
    margin-top: -70px;
    padding: 75px 25px 25px 25px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .07);
}

.testimonial .testimonial-item p {
    font-size: 16px;
    color: #666666;
}

.testimonial .testimonial-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial .testimonial-text h4 {
    color: #666666;
    font-size: 14px;
    margin-bottom: 0;
}

.testimonial .owl-item.center img {
    border-color: transparent;
}

.testimonial .owl-item.center .testimonial-text {
    background: #343148;
}

.testimonial .owl-item.center .testimonial-text h3 {
    color: #F7CAC9;
}

.testimonial .owl-item.center .testimonial-text p,
.testimonial .owl-item.center .testimonial-text h4 {
    color: #ffffff;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #F7CAC9;
}

.testimonial .owl-dot.active {
    background: #343148;
}



/*********** Blog CSS **********/

.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
    /* background:url('../img/blog.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 5px 15px;
    background-color: #fff;
    box-shadow: 1px 1px 10px 1px #00000014;
    border: none;
}

.blog .blog-page .blog-item {
    margin: 0 0 30px 0;
}

.blog .blog-img {
    position: relative;
    width: 100%;
}

.blog .blog-img img {
    /* width: 325px; */
    height: 235px;
    object-fit: contain;
}

.blog .blog-text {
    position: relative;
    padding: 25px 30px;
    border-right: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    border-left: 1px solid rgba(0, 0, 0, .07);
}

.blog .blog-text h2 {
    font-size: 22px;
    font-weight: 600;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #343148;
    transition: .3s;
}

.blog .blog-item a.btn i {
    margin-left: 5px;
}

.blog .blog-item a.btn:hover {
    color: #F7CAC9;
}

.blog .blog-meta {
    position: relative;
    display: flex;
    margin-bottom: 15px;
}

.blog .blog-meta p {
    margin: 0 10px 0 0;
    font-size: 13px;
}

.blog .blog-meta i {
    margin-right: 5px;
}

.blog .blog-meta p:last-child {
    margin: 0;
}

.blog .owl-nav {
    width: 150px;
    margin: 32px auto 0 auto;
    display: flex;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
    margin-left: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #ffa500;
    font-size: 22px;
    transition: .3s;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
    color: #fff;
    background: #ff0600;
}

.blog .pagination .page-link {
    color: #343148;
    border-radius: 0;
    border-color: #343148;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #F7CAC9;
    background: #343148;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}



/******** Portfolio CSS ********/

.portfolio {
    position: relative;
    padding: 45px 0 15px 0;
}

.portfolio #portfolio-filter {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-filter li {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 6px 12px;
    color: #343148;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
    background: none;
    border: 1px solid #343148;
    transition: .3s;
}

.portfolio #portfolio-filter li:hover,
.portfolio #portfolio-filter li.filter-active {
    background: #343148;
    color: #F7CAC9;
}

.portfolio .portfolio-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: .3s;
}

.portfolio .portfolio-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.portfolio img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.portfolio .portfolio-wrap:hover img {
    transform: rotate(5deg) scale(1.12);
}



/********* Contact CSS *********/

.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .container {
    max-width: 900px;
}

.contact .contact-item {
    text-align: center;
    margin-bottom: 30px;
}

.contact .contact-item i {
    width: 50px;
    height: 50px;
    padding: 12px 0;
    font-size: 25px;
    color: #343148;
    margin-bottom: 15px;
    border: 1px solid #F7CAC9;
    border-radius: 50px;
}

.contact .contact-item h2 {
    font-size: 25px;
    font-weight: 700;
}

.contact .contact-form {
    position: relative;
}

.contact .contact-form input {
    height: 45px;
    padding: 15px;
    background: none;
    border-radius: 0;
}

.contact .contact-form textarea {
    height: 150px;
    padding: 15px;
    background: none;
    border-radius: 0;
}

.contact .contact-form .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #F7CAC9;
    background: #343148;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #343148;
    background: #F7CAC9;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}




/******* Single Post CSS *******/

.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .single-tags a:hover {
    color: #F7CAC9;
    background: #343148;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 400;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #343148;
    background: #F7CAC9;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #F7CAC9;
    background: #343148;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: #343148;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #F7CAC9;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form .btn {
    padding: 15px 30px;
    color: #F7CAC9;
    background: #343148;
}

.single .comment-form .btn:hover {
    color: #343148;
    background: #F7CAC9;
}



/*********** Sidebar CSS **********/

.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #F7CAC9;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #F7CAC9;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #343148;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #F7CAC9;
    background: #343148;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #343148;
    background: #F7CAC9;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px;
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0;
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #F7CAC9;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .tag-widget a:hover {
    color: #F7CAC9;
    background: #343148;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}



/* footer-sec-start */


footer {
    padding: 3em 0;
}

.footer-04 {
    background: #272727;
    padding-bottom: 0;
}

.footer-logo {
    max-width: 70%;
}

.footer-04 .border-top {
    border-color: #1a1a1a !important;
    background: #1a1a1a;
}

.footer-04 .footer-heading {
    font-size: 13px;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-04 .footer-heading .logo {
    letter-spacing: none;
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
}

.footer-04 p {
    color: rgba(255, 255, 255, 0.3);
}

.footer-04 a {
    color: #f7b633;
}

.footer-04 .ftco-footer-social li a {
    color: #fff;
}

.footer-04 .tagcloud a {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.footer-04 .list-unstyled li a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.footer-04 .list-unstyled a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-04 .ftco-footer-social li a {
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
}

.footer-04 .subscribe-form .form-group {
    position: relative;
    margin-bottom: 0;
    border-radius: 0;
}

.footer-04 .subscribe-form .form-group input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: none !important;
    outline: none !important;
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 16px;
    border-radius: 0;
}

.ftco-footer-social {
    list-style: none;
}

.footer-04 .subscribe-form .form-group input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.footer-04 .subscribe-form .form-group input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.footer-04 .subscribe-form .form-group input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.footer-04 .subscribe-form .form-group input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.footer-04 .subscribe-form .form-group input:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.footer-04 .subscribe-form .form-group .submit {
    color: #fff !important;
    display: block;
    width: 52px;
    font-size: 16px;
    background: #ff6100 !important;
    border: none;
    border-radius: 0;
}

.footer-04 .subscribe-form .form-group .submit:hover,
.footer-04 .subscribe-form .form-group .submit:focus {
    text-decoration: none !important;
    outline: none !important;
}

.footer-04 .copyright a {
    color: rgba(255, 255, 255, 0.5);
}

.ftco-footer-social li a i {
    font-size: 20px;
}

.ftco-footer-social li {
    margin: 0px 8px;
}

/* amin-vision-mission-page-css-strat */

.paragraph-text img {
    width: 50%;
    text-align: center;
    margin-bottom: 20px;
}

.paragraph-text h6 {
    font-weight: bold;
    font-size: 21px;
    margin-bottom: 20px;
}

/* school-of-yoga-pag-scc-start */

.welliness-sec ul {
    list-style: disc;
}

.welliness-sec li {
    line-height: 32px;
    font-weight: 600;
    color: #D85600;
    font-family: 'Tinos', serif;
}

.welliness-sec li a {
    line-height: 32px;
    font-weight: 600;
    color: #D85600;
    font-family: 'Tinos', serif;
}

.welliness-sec p {
    font-size: 21px;
    font-weight: 600;
    color: #D85600;
    text-transform: uppercase;
    font-family: 'Tinos', serif;
}

/* how-to-apply-page-css-start */

.how-to-apply-sec h6 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
}

.how-to-apply-sec p {
    letter-spacing: .85pt;
}

.how-to-apply-sec .admisson-form {
    font-size: 18px;
    font-weight: 700;
    color: #ff6600;
    text-decoration: underline;
}

.how-to-apply-sec .admisson-form a {
    font-size: 18px;
    font-weight: 700;
    color: #ff6600;
}

/* admission-page-css-start */

.admission-sec .form-group span {
    color: #FF0000;
}

.admission-sec .form-group label {
    font-weight: 600;
    font-size: 16px;
    color: #000;
}

.admission-sec .form-group input {
    padding: 15px 15px;
}

.admission-sec .form-group select {
    /* padding: 22px 15px; */
    /*height: 44px;*/
}

.admission-sec .btn-primary {
    background-color: #ff6600;
    border-color: #ff6600;
    color: #fff;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 600;
}

/* workshop-seminar-form-page-css-start */

.admission-sec h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.admission-sec p {
    padding: 0 10px;
    position: relative;
    font-size: 25px;
    font-weight: 600;
    /* background: #ffffff; */
    color: #3c3c3c;
    margin-bottom: 15px;
}

.admission-sec .btn-outline-danger {
    padding: 10px 25px !important;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border-color: #e59e1b !important;
    background-color: #e59e1b !important;
}

/* login-and-registration-page-css-start */

.login-sec .card {

    width: 400px;
    border: none;
    box-shadow: 1px 1px 6px 4px #00000014;
    padding: 15px;
}

.login-sec .btr {

    border-top-right-radius: 5px !important;
}


.login-sec .btl {

    border-top-left-radius: 5px !important;
}

.login-sec .btn-dark {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}


.login-sec .btn-dark:hover {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}


.login-sec .nav-pills {

    display: table !important;
    width: 100%;
}

.login-sec .nav-pills .nav-link {
    border-radius: 0px;
    border-bottom: 1px solid #0d6efd40;

}

.login-sec .nav-item {
    display: table-cell;
    background: #0d6efd2e;
}


.login-sec .form {

    padding: 10px;
    /* height: 300px; */
}

.login-sec .form input {

    /* margin-bottom: 12px; */
    border-radius: 3px;
}


.login-sec .form input:focus {

    box-shadow: none;
}

.login-sec a:hover,
a:active,
a:focus {
    color: #000;
}

/* learning-resource-centre-page-css-start */

.learning-center-sec h5 {
    font-size: 28px;
    font-weight: bold;
    text-decoration: underline;
    text-align: left;
    margin-bottom: 20px;
}

.learning-center-sec ul {
    list-style: outside;
    text-align: left;
}

.learning-center-sec ul li {
    font-size: 18px;
    font-weight: 600;
    color: #D85600;
}

.Library-dropdown {
    transform: translate(-200px, 10px);
}

/* visually-challenged-page-css-start */

.visually-challenged-sec h5 {
    font-size: 28px;
    font-weight: bold;
    text-decoration: underline;
    text-align: left;
    margin-bottom: 20px;
}

.visually-challenged-sec p {
    font-size: 16px;
    font-weight: 600;
    color: #D85600;
}

/* Life Membership-page-css-start */

.Membership-sec h5 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
}

.Membership-sec p {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.Membership-sec span {
    color: red;
}

.Membership-sec input {
    padding: 20px 15px;
}

.Membership-sec select {
    /* padding: 8px 15px; */
    margin: 0px;
    height: 42px;
}

.Membership-sec label {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

/* award-year-wise-css-start */
.team h6 {
    font-size: 25px;
    font-weight: 600;
    color: #6E1717;
    font-family: monospace;
}



/* nav-css-start */

#whole-flex {
    position: absolute;
    flex-direction: column;
    text-align: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -10;
}

/* NavBar */

#sidebar {
    min-width: 300px;
    max-width: 300px;
    /* background: #c38007; */
    background: url(../img/side-ber-3.jpg);
    color: #fff;
    margin-left: -300px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    overflow-x: hidden;
}

.sidebar-overlay {
    width: auto;
    padding-bottom: 150px;
    background-color: rgb(0 0 0 / 29%);
}

#sidebar.active {
    margin-left: 0px;
}

#sidebar .components .active a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

#sidebar #homeSubmenu a {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    padding-left: 10px;
}

#sidebar #homeSubmenu2 a {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    padding-left: 10px;
}

#sidebar #homeSubmenu3 a {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    padding-left: 10px;
}

#sidebar #homeSubmenu4 a {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    padding-left: 10px;
}

#sidebar #homeSubmenu5 a {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    padding-left: 10px;
}

#sidebar #homeSubmenu6 a {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    padding-left: 10px;
}

#sidebar #homeSubmenu7 a {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    padding-left: 10px;
}

#sidebar #homeSubmenu8 a {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    padding-left: 10px;
}

.login-sec a:hover,
a:active,
a:focus {
    color: #fff;
}

.navbar-brand h3 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    padding: 8px 30px;
}

.list-unstyled li {
    /* border-bottom:1px solid rgba(255,255,255,.1);
    padding: 15px 30px; */
    color: #fff;
}

.dropdown-menu {
   background-color: #d37e35;
    border: none;
}

.navbar-nav a:hover {
    color: #FFF;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    transition: all .6s ease-in-out;
    padding: 10px 30px;
}

.navbar-nav .active {
    padding: 10px 30px;
    background-color: #00000066;
}

.line-heading {
    /* position: absolute; */
    top: 15%;
    z-index: 100;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    padding: 0px;
    background-color: rgb(227 174 151) !important;
    /* margin-top: 110px; */
    /* /* height: 30px; */
}

#sidebar .dropdown-item:focus,
.dropdown-item:hover {
    background-color: #ff6100 !important;
}
.dropdown-item:focus, .dropdown-item:hover{
    color:#fff;
}
#sidebar .dropdown-item.active,
.dropdown-item:active {
    background-color: #ff6100;
}

.logo {
    /* position: absolute;
    z-index: 2000;
    top: -23%; */
    width: 90px;
    height: 94px;
}

/* category-sec-start */

.category-sec {
    padding: 30px 0px;
    /*margin: 60px 0px;*/
}

.category-sec h1 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
}

.category-sec .category-img-sec {
    text-align: center;
    display: grid;
    align-items: center;
    justify-content: center;
}

.category-sec .category-img {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
}

.category-sec .category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-sec .category-text {
    text-align: center;
    padding-top: 15px;
}

.category-sec .category-text h3 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

.category-img-overlay {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0px;
}

/* .container-fluid, .container{
    min-width: 970px;
    max-width: 1670px;
} */

/* .container-fluid {
    max-width: 1366px;
} */

.header-right-sec {
    display: flex;
    align-items: center;
    justify-self: center;
}

.header-right-sec .text {
    display: flex;
    align-items: center;
    justify-self: center;
    font-size: 12px !important;
}

.header-right-sec .text i {
    font-size: 13px;
    color: #000;
    margin-right: 0px;
    transform: rotate(94deg);
    margin-top: 5px;
}

.header-right-sec .text h2 {
    color: #000;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    margin: 0;
}

.header-right-sec .text a {
    color: #000;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0;
}

.header-right-sec .text p {
    color: #000;
    font-size: 12px;
    font-weight: 600;
}

.header-right-sec .top-bar-right .social i {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    margin: 0px 7px;
}

/*.header-right-sec .btn-primary {*/
/*    background-color: transparent;*/
/*    border-color: transparent;*/
/*}*/

.header-right-sec .btn i {
    color: #ff7133;
    font-size: 25px;
}

.marquee-div {
    padding: 10px 0px;
    background-color: #D85600;
}
.line-heading .hdr-notice{
    position: relative;
    top: 7px;
}
.line-heading span {
    font-size: 16px;
    font-family: serif;
    color: red;
    text-align: center;
    animation: animate 1.5s linear infinite;
    position: absolute;
    top: 0;
    right: 35%;
    transform: translateX(50%);
}

@keyframes animate {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
    }
}

/* .btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background-color: transparent !important;
    border: none !important;
    border-color: transparent !important;
} */

/* .navbar .btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background-color: transparent !important;
    border-color: transparent !important;
} */

/*  top-services-sec-start */

.services-sec .services-top {
    margin: 0px 35px;
}

.services-sec .services-sec {
    display: table;
    text-align: center;
    margin: 0 auto;
}

.services-sec .services-img {
    width: 100px;
    height: 100px;
    background-color: #f5fcff;
    border-radius: 50px;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    margin-bottom: 15px;
    box-shadow: 1px 1px 6px 4px #00000014;
    overflow: hidden;
}

.services-img img {
    width: 100%;
    border-radius: 50px;
    object-fit: cover;
}

/* courses-sec-start */

.courses-sec {
    background-color: #F8FFFD;
}

.courses-sec .card.mb-4 {
    border: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 2px 2px 10px #3333331f;
}

.courses-sec h5.card-header {
    background-color: #e08388;
    color: #fff;
    padding: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.courses-sec ul.list-group {
    list-style: none;
    font-size: 13px;
    padding: 0;
    margin: 0;
    font-weight: 600;
}
.courses-sec .list-group a i{
    margin-right:10px;
}
.courses-sec .btn-primary {
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #f6a40f;
    border-color: #f6a40f;
    border-radius: 5px;
}

/* .courses-sec .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle{
    background-color: #f6a40f!important;
    border: 1px solid#f6a40f!important;
} */

/* detail-page-start */

.detail-sec {
    background-color: #F9FFFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 15px 15px 15px 15px;
}

.detail-sec-sub {
    padding: 10px;
}

.al-sec {
    padding: 20px 20px;
    background: linear-gradient(to right, #f8d7cb, #f8d7cb, #f8d7cb);
    box-shadow: 1px 1px 10px 1px #00000014;
    /*margin: 20px 0px;*/
    /*border-radius: 10px;*/
    border:2px solid;
}

/* vedic-studies-spirituality-page-start */

.Syllabus-sec .card-header {
    background-color: #e08388;
}

.Syllabus-sec .btn-link {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    text-align: left;
}

.Syllabus-sec .btn-link:hover {
    text-decoration: inherit;
}

.Syllabus-sec .btn-link:focus {
    text-decoration: inherit;
}

.download .btn-primary {
    font-size: 14px;
    font-weight: 600;
    color: #fefbfb;
    padding: 8px 12px;
    background: #e59e1b;
    border-color: #e59e1b;
    border-radius: 5px;
}

/* notification-page-start */

.section-50 {
    padding: 50px 0;
}

.m-b-50 {
    margin-bottom: 50px;
}

.dark-link {
    color: #333;
    text-decoration: none !important;
}

.heading-line {
    position: relative;
    padding-bottom: 5px;
}

.notification-ui_dd-content {
    margin-bottom: 30px;
}

.notification-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 7px;
    background: #fff;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.notification-list--unread {
    border-left: 2px solid #ff4b00;
}

.notification-list--read {
    border-left: 2px solid #03ae30;
}

.notification-list .notification-list_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.notification-list .notification-list_content .notification-list_img img {
    height: 55px;
    width: 55px;
    border-radius: 50px;
    margin-right: 20px;
}

.notification-list .notification-list_content .notification-list_detail p {
    margin-bottom: 5px;
    line-height: 1.2;
}

.notification-list .notification-list_feature-img img {
    height: 48px;
    width: 48px;
    border-radius: 5px;
    margin-left: 20px;
}

/* International-student-page-start */


a,
a:hover {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

#pageHeaderTitle {
    margin: 2rem 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 2.5rem;
}

/* Cards */
.postcard {
    flex-wrap: wrap;
    display: flex;
    box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
    border-radius: 10px;
    margin: 0 0 2rem 0;
    overflow: hidden;
    position: relative;
    color: #ffffff;
}

.postcard.dark {
    background-color: #18151f;
}

.postcard.light {
    background-color: #e1e5ea;
}

.postcard .t-dark {
    color: #18151f;
}

.postcard a {
    color: inherit;
}

.postcard h1,
.postcard .h1 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.postcard .small {
    font-size: 18px;
    display: flex;
}

.postcard .postcard__title {
    font-size: 1.75rem;
}

.postcard .postcard__img {
    /*max-height: 180px;*/
    width: 100%;
    object-fit: cover;
    position: relative;
}

.postcard .postcard__img_link {
    display: contents;
}

.postcard .postcard__bar {
    width: 50px;
    height: 10px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #424242;
    transition: width 0.2s ease;
}

.postcard .postcard__text {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.postcard .postcard__preview-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    height: 100%;
}

.postcard .postcard__tagbox {
    display: flex;
    flex-flow: row wrap;
    font-size: 14px;
    margin: 20px 0 0 0;
    padding: 0;
    justify-content: center;
}

.postcard .postcard__tagbox .tag__item {
    display: inline-block;
    background: rgba(83, 83, 83, 0.4);
    border-radius: 3px;
    padding: 2.5px 10px;
    margin: 0 5px 5px 0;
    cursor: default;
    user-select: none;
    transition: background-color 0.3s;
}

.postcard .postcard__tagbox .tag__item:hover {
    background: rgba(83, 83, 83, 0.8);
}

.postcard:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-70deg, #fff, #fff 50%);
    opacity: 1;
    border-radius: 10px;
}

.postcard:hover .postcard__bar {
    width: 100px;
}

@media screen and (min-width: 769px) {
    .postcard {
        flex-wrap: inherit;
    }

    .postcard .postcard__title {
        font-size: 2rem;
        font-weight: 600;
    }

    .postcard .postcard__tagbox {
        justify-content: start;
    }

    .postcard .postcard__img {
        max-width: 300px;
        max-height: 100%;
        transition: transform 0.3s ease;
    }

    .postcard .postcard__text {
        padding: 3rem;
        width: 100%;
    }

    .postcard .media.postcard__text:before {
        content: "";
        position: absolute;
        display: block;
        background: #18151f;
        top: -20%;
        height: 130%;
        width: 55px;
    }

    .postcard:hover .postcard__img {
        transform: scale(1.1);
    }

    .postcard:nth-child(2n+1) {
        flex-direction: row;
    }

    .postcard:nth-child(2n+0) {
        flex-direction: row-reverse;
    }

    .postcard:nth-child(2n+1) .postcard__text::before {
        left: -12px !important;
        transform: rotate(4deg);
    }

    .postcard:nth-child(2n+0) .postcard__text::before {
        right: -12px !important;
        transform: rotate(-4deg);
    }
}

@media screen and (min-width: 1024px) {
    .postcard__text {
        padding: 2rem 3.5rem;
    }

    .postcard__text:before {
        content: "";
        position: absolute;
        display: block;
        top: -20%;
        height: 130%;
        width: 55px;
    }

    .postcard.dark .postcard__text:before {
        background: #18151f;
    }

    .postcard.light .postcard__text:before {
        background: #fff;
    }
}


@media screen and (max-width: 1300px) {
    .top-bar-left .nav-link{
        font-size: 13px;
        padding: 5px 0px;
    }
}

/* COLORS */
.postcard .postcard__tagbox .green.play:hover {
    background: #79dd09;
    color: black;
}

.green .postcard__title:hover {
    color: #79dd09;
}

.green .postcard__bar {
    background-color: #79dd09;
}

.green::before {
    background-image: linear-gradient(-30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}

.green:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}

.postcard .postcard__tagbox .blue.play:hover {
    background: #0076bd;
}

.blue .postcard__title:hover {
    color: #0076bd;
}

.blue .postcard__bar {
    background-color: #0076bd;
}

.blue::before {
    background-image: linear-gradient(-30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.blue:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.postcard .postcard__tagbox .red.play:hover {
    background: #bd150b;
}

.red .postcard__title:hover {
    color: #bd150b;
}

.red .postcard__bar {
    background-color: #bd150b;
}

.red::before {
    background-image: linear-gradient(-30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}

.red:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}

.postcard .postcard__tagbox .yellow.play:hover {
    background: #bdbb49;
    color: black;
}

.yellow .postcard__title:hover {
    color: #bdbb49;
}

.yellow .postcard__bar {
    background-color: #bdbb49;
}

.yellow::before {
    background-image: linear-gradient(-30deg, rgba(189, 187, 73, 0.1), transparent 50%);
}

.yellow:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(189, 187, 73, 0.1), transparent 50%);
}

@media screen and (min-width: 769px) {
    .green::before {
        background-image: linear-gradient(-80deg, rgba(121, 221, 9, 0.1), transparent 50%);
    }

    .green:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgb(255 255 255), #ffffff 50%);
    }

    .blue::before {
        background-image: linear-gradient(-80deg, rgba(0, 118, 189, 0.1), transparent 50%);
    }

    .blue:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgb(255 255 255), #ffffff 50%);
    }

    .red::before {
        background-image: linear-gradient(80deg, rgb(255 255 255), #ffffff 50%);
    }

    .red:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(189, 21, 11, 0.1), transparent 50%);
    }

    .yellow::before {
        background-image: linear-gradient(80deg, rgb(255 255 255), #ffffff 50%);
    }

    .yellow:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(189, 187, 73, 0.1), transparent 50%);
    }
}

/* VSS Social Work-page-start */

.social-sec .row {
    margin: 25px;
}

/* Placement-page-css-start */
.Placement-sec .btn-primary {
    background-color: #ff6600;
    border-color: #ff6600;
    color: #fff;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 600;
}

/* Membership-page-css-start */
.pricingTable {
    text-align: center;
    background: #fff;
    margin: 0 -5px;
    box-shadow: 0 0 10px #ababab;
    padding-bottom: 40px;
    border-radius: 10px;
    color: #cad0de;
    transform: scale(1);
    transition: all .5s ease 0s
}

.pricingTable:hover {
    transform: scale(1.05);
    z-index: 1
}

.pricingTable .pricingTable-header {
    padding: 30px 0;
    background: #f5f6f9;
    border-radius: 10px 10px 50% 50%;
    transition: all .5s ease 0s;
    margin: 0px 0px 15px 0px;
}

.pricingTable:hover .pricingTable-header {
    background: #ff9624
}

.pricing-content {
    text-align: left;
}

.pricing-content p {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.pricingTable .pricingTable-header i {
    font-size: 50px;
    color: #858c9a;
    margin-bottom: 10px;
    transition: all .5s ease 0s;
}

.pricingTable .price-value {
    font-size: 35px;
    color: #ff9624;
    transition: all .5s ease 0s
}

.pricingTable .month {
    display: block;
    font-size: 14px;
    color: #cad0de
}

.pricingTable:hover .month,
.pricingTable:hover .price-value,
.pricingTable:hover .pricingTable-header i {
    color: #fff
}

.pricingTable .heading {
    font-size: 24px;
    color: #ff9624;
    margin-bottom: 20px;
    text-transform: uppercase
}

.pricingTable .pricing-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px
}

.pricingTable .pricing-content ul li {
    line-height: 30px;
    color: #a7a8aa
}

.pricingTable .pricingTable-signup a {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    padding: 10px 35px;
    border-radius: 20px;
    background: #ffa442;
    text-transform: uppercase;
    transition: all .3s ease 0s
}

.pricingTable .pricingTable-signup a:hover {
    box-shadow: 0 0 10px #ffa442
}

.pricingTable.blue .heading,
.pricingTable.blue .price-value {
    color: #4b64ff
}

.pricingTable.blue .pricingTable-signup a,
.pricingTable.blue:hover .pricingTable-header {
    background: #4b64ff
}

.pricingTable.blue .pricingTable-signup a:hover {
    box-shadow: 0 0 10px #4b64ff
}

.pricingTable.red .heading,
.pricingTable.red .price-value {
    color: #ff4b4b
}

.pricingTable.red .pricingTable-signup a,
.pricingTable.red:hover .pricingTable-header {
    background: #ff4b4b
}

.pricingTable.red .pricingTable-signup a:hover {
    box-shadow: 0 0 10px #ff4b4b
}

.pricingTable.green .heading,
.pricingTable.green .price-value {
    color: #40c952
}

.pricingTable.green .pricingTable-signup a,
.pricingTable.green:hover .pricingTable-header {
    background: #40c952
}

.pricingTable.green .pricingTable-signup a:hover {
    box-shadow: 0 0 10px #40c952
}

.pricingTable.blue:hover .price-value,
.pricingTable.green:hover .price-value,
.pricingTable.red:hover .price-value {
    color: #fff
}

@media screen and (max-width:990px) {
    .pricingTable {
        margin: 0 0 20px
    }
}

.Award-sec .accordion .card-body span {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    font-family: initial;
}

/* .modal-backdrop{
    position: inherit!important;
} */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.download-model .modal-data p a {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #000 !important;
    padding-left: 10px !important;
    margin-bottom: 8px !important;
}

.download-model .modal-content {
    background: url(../img/noticebg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.download-model .modal-header .modal-title {
    font-weight: 600;
    font-size: 25px;
    color: #802900;
}

.download-model .btn-primary {
    background-color: #ff6100;
    border-color: #ff6100;
    color: #fff;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: 600;
}

/* e-lerning-page-css-start */
.thumbnail {
    transition: .5s;
    position: relative;
    /* background: #000; */
    margin: 0 auto;
    margin-bottom: 30px;
}

.thumbnail {
    margin-bottom: 20px;
    padding: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.04), 0 1px 7px 0 rgba(0, 0, 0, 0.07), 0 3px 3px -3px rgba(0, 0, 0, 0.08);
    background: #fff;
    border: none;
}

.img-hover {
    position: relative;
}

.image {
    opacity: 1;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    transition: .5s ease !important;
    backface-visibility: hidden !important;
}

img {
    vertical-align: middle;
}

.img-hover:hover .middle {
    opacity: 1;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 999;
}

.grid .courses-img .book-img img {
    /* height: 36px !important; */
    transition: all 0.3s ease-in-out 0s;
    margin: -40px 0 0 2px;
}

.price2 {
    background-image: url(../img/price2.png);
    background-repeat: no-repeat;
    position: absolute;
    height: 40px;
    left: -10px;
    top: 8px;
    width: 55px;
    text-align: center;
    line-height: 47px;
    font-size: 18px;
    color: #fff;
    z-index: 3;
}

.thumbnail .caption {
    padding: 9px;
    color: #333;
    padding-bottom: 4px;
}

.course_name {
    font-size: 12px;
    font-weight: bold;
}

.linkblack {
    color: #333 !important;
}

.rating-footer {
    overflow: hidden;
    height: 41px;
    line-height: 35px;
}

.rating-sec {
    padding: 0px 0;
    float: left;
}

.rating-sec span {
    color: #ff9e25;
    font-size: 18px;
    margin-right: 4px;
    margin-top: 9px;
}

p.enrolled {
    font-size: 14px;
    padding-bottom: 0px;
    margin-bottom: 0;
}

.fright {
    float: right;
}

.matter {
    width: 96%;
    height: 62px;
    transition: .9s;
    position: relative;
    /* background: #000; */
    margin: 0 auto;
}

.view {
    text-align: center;
    background-color: rgb(255, 158, 37);
    color: #fff;
    font-size: 16px;
    padding: 4px 0;
    position: absolute;
    top: 417%;
    width: 100%;
    opacity: 1;
    transition: .5s;
}

.img-hover:hover:after {
    background: rgba(61, 61, 71, 0.85);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    content: "";
    height: 100%;
}

.book-img .btn-outline-success {
    color: #fff;
    border-color: #ff7133;
}

.book-img .btn-outline-success:hover {
    color: #fff;
    background-color: #ff7133;
    border-color: #ff7133;
}

.book-img .btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show>.btn-outline-success.dropdown-toggle {
    background-color: #ff7133;
    border-color: #ff7133;
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgb(255 113 51);
}

.thumbnail .caption .courses-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* product-page-css-start */
.ratings i {
    font-size: 16px;
    color: #ff9e25;
}

.strike-text {
    color: #8b8b8b;
    text-decoration: line-through
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

.product-image {
    width: 100%
}

.dot {
    height: 7px;
    width: 7px;
    margin-left: 6px;
    margin-right: 6px;
    margin-top: 3px;
    background-color: blue;
    border-radius: 50%;
    display: inline-block
}

.spec-1 {
    color: #938787;
    font-size: 15px
}

h5 {
    font-weight: 400
}

.para {
    font-size: 16px
}

/* single-00product-css-start */
.card {
    border: none;
    background-color: #fdfdfd;
    box-shadow: 1px 1px 13px -4px #0000002e;
}

.product {
    background-color: #fdfdfd;
}

.brand {
    font-size: 13px
}

.act-price {
    color: #000;
    font-weight: 600;
    font-size: 35px;
}

.small,
small {
    font-size: 18px;
}

.dis-price {
    text-decoration: line-through
}

.about {
    font-size: 16px
}

.color {
    margin-bottom: 10px
}

label.radio {
    cursor: pointer
}

label.radio input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none
}

label.radio span {
    padding: 2px 9px;
    border: 2px solid #ff0000;
    display: inline-block;
    color: #ff0000;
    border-radius: 3px;
    text-transform: uppercase
}

label.radio input:checked+span {
    border-color: #ff0000;
    background-color: #ff0000;
    color: #fff
}

.btn-danger {
    background-color: #ff0000 !important;
    border-color: #ff0000 !important
}

.btn-danger:hover {
    background-color: #da0606 !important;
    border-color: #da0606 !important
}

.btn-danger:focus {
    box-shadow: none
}

.cart i {
    margin-right: 10px
}

.sigle-product .product h5 {
    font-size: 24px;
    font-weight: 600;
}

.sigle-product .btn-primary {
    background-color: #FFA500;
    border-color: #FFA500;
    color: #fff;
}

.btn-primary {
    background-color: #FFA500;
    border-color: #FFA500;
    color: #fff;
}

.btn-primary:hover, .btn-primary:focus{
    background-color: #FFA500;
    border-color: #FFA500;
    color: #fff;
}

.btn-primary a {
    color: #fff;
}

.scholarship-div {
    background-color: #fff;
    box-shadow: 1px 1px 6px -1px #00000014;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.scholarship-sec .national-scholarship-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.scholarship-sec .scholarship-title h4 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.Syllabus-sec .table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #dee2e6 !important;
}

.Syllabus-sec .table thead th {
    vertical-align: inherit;
}

/* address-page-start */
.address-div {
    padding: 18px;
    background-color: #ffff;
    box-shadow: 0px 0px 22px -12px;
}

.address-div label {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.address-div .btn-primary {
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
}

/* download-page-start */

.certificate-banner-show .caption {
    padding: 15px;
}

.certificate-banner-show .course_name {
    font-size: 18px;
    font-weight: 600;
}

.certificate-banner-show .img-hover:hover:after {
    display: none;
}

.login-sec1 h5 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.login-sec1 p {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.footer-login-sec1 p {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.login-sec3 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.logid-1 {
    padding: 20px 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

.social-sec .row a {
    margin-bottom: 25px;
}

.social-sec .row img {
    /*width: 100%;*/
    /*height: 220px;*/
    object-fit: cover;
}

/* responsive-css-start */

@media (max-width: 912px) {
    .hero {
        padding: 0px 0px;
    }

    .hero .owl-nav {
        position: absolute;
        bottom: -8%;
        left: 4%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .blog .blog-img img {
        width: 100%;
    }

    .Library-dropdown {
        transform: translate(0px, 10px);
        font-size: 12px;
    }

    .line-heading {
        margin-top: 0px;
    }

    .m-110 {
        margin: 0px 0px !important;
    }
}

/* order-page-css */

.order-history-list .card {
    border: none;
    background-color: #ffffff;
    box-shadow: 1px 1px 10px 1px #00000014;
}

.order-history-list .card-footer {
    background-color: rgb(0 0 0 / 18%);
}

/* .order-history-list .card-body{
    margin: 10px 0px;
} */
.theme-btn-sm {
    padding: 7px 20px;
    text-transform: capitalize;
}

.btn-theme {
    background: #444;
    color: #fff;
    padding: 10px 25px;
    border: 1px solid #444;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: 1px;
}

.pull-right {
    float: right;
}

.order-history-list .media img {
    margin-right: 15px;
    width: 100px;
    height: 100px;
}

.blur-up.lazyloaded {
    -webkit-filter: blur(0);
    filter: blur(0);
}

.blur-up {
    /* -webkit-filter: blur(5px);
        filter: blur(5px); */
    transition: filter 400ms, -webkit-filter 400ms;
}

.order-history-list .order-price h4 {
    margin-bottom: 0;
    font-size: 14px;
    color: #000000;
}

.order-history-list .order-price .item-qnt {
    color: #444444;
    font-size: 13px;
    margin-bottom: 0;
}

.order-history-list .order-status h6 {
    margin-bottom: 0;
    font-size: 14px;
    color: #000000;
}

.order-history-list .order-rating {
    color: #ff9400;
    font-size: 16px;
    font-weight: 600;
}

.order-history-list .card-footer {
    padding: 5px 1.25rem;
}

.order-history-list .order-date {
    margin-bottom: 0;
    display: inline-block;
}

.order-history-list .order-date span {
    color: #000000;
    font-weight: 600;
}

.order-history-list .order-item-price {
    float: right;
    margin-bottom: 0;
}

.order-history-list>div:nth-last-child(-n + 2) {
    margin: 30px 0px;
}

.order-history-list h6 {
    padding: 0 10px;
    position: relative;
    font-size: 25px;
    font-weight: 600;
    /* background: #ffffff; */
    color: #3c3c3c;
    margin-bottom: 5px;
    font-family: inherit;
}

.order-history-list .card-body {
    border-bottom: 1px solid#c9c9c9;
}

@media (max-width: 912px) {
    .order-history-list .order-price {
        text-align: right;
    }

    .order-history-list .order-status {
        text-align: right;
    }
    .collaboration .item img{
        width:120px;
        height:120px;
    }
}



/* order-details-page */

.order-detail-sec .container-fluid {
    margin-top: 200px;
}

.order-detail-sec p {
    font-size: 14px;
    margin-bottom: 7px;

}

.order-detail-sec .small {
    letter-spacing: 0.5px !important;
}

.order-detail-sec .card-1 {
    box-shadow: 2px 2px 10px 0px rgb(0 0 0);
    max-width: 800px;
    width: 100%;
}

.order-detail-sec hr {
    background-color: rgba(248, 248, 248, 0.667);
}

.order-detail-sec h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0;
}

.order-detail-sec h4 {
    font-size: 20px;
    font-weight: 500;
}

.order-detail-sec .order {
    width: 100px !important;
    height: 100px !important;
    object-fit: contain !important;
}

.order-detail-sec .bold {
    font-weight: 500;
}

.order-detail-sec .change-color {
    color: #000 !important;
    font-family: inherit;
}

.order-detail-sec .card-2 {
    box-shadow: 1px 1px 3px 0px rgb(112, 115, 139);

}

.order-detail-sec .fa-circle.active {
    font-size: 8px;
    color: #000;
}

.order-detail-sec .fa-circle {
    font-size: 8px;
    color: #aaa;
}

.order-detail-sec .rounded {
    border-radius: 2.25rem !important;
}


.order-detail-sec .progress-bar {
    background-color: #000 !important;
}


.order-detail-sec .progress {
    height: 5px !important;
    margin-bottom: 0;
}

.order-detail-sec .invoice {
    position: relative;
    top: -70px;
}

.order-detail-sec .Glasses {
    position: relative;
    top: -12px !important;
}

.order-detail-sec .card-footer {
    background-color: #000;
    color: #fff;
}

.order-detail-sec h2 {
    color: rgb(78, 0, 92);
    letter-spacing: 2px !important;
}

.order-detail-sec .display-3 {
    font-weight: 500 !important;
}

.youtube-link-sec {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.youtube-link-sec iframe {
    width: 300px;
    height: 200px;
    overflow: hidden;
}

@media (max-width: 479px) {
    .order-detail-sec .invoice {
        position: relative;
        top: 7px;
    }

    .order-detail-sec .border-line {
        border-right: 0px solid rgb(226, 206, 226) !important;
    }

}

@media (max-width: 700px) {

    .order-detail-sec h2 {
        color: rgb(78, 0, 92);
        font-size: 17px;
    }

    .order-detail-sec .display-3 {
        font-size: 28px;
        font-weight: 500 !important;
    }
}

.order-detail-sec .card-footer small {
    letter-spacing: 7px !important;
    font-size: 12px;
}

.order-detail-sec .border-line {
    border-right: 1px solid rgb(226, 206, 226)
}

.modal-backdrop.show {
    display: none;
}

.modal .btn:focus, .form-control:focus {
    border: 1px solid#000;
    box-shadow: 0 0 0 1px rgb(255 77 0 / 51%);
}


/* counter-up */
.p-y-2 {
    padding-top: 28px;
    padding-bottom: 28px;
}

.p-y-3 {
    padding-top: 45px;
    padding-bottom: 45px;
}

.m-b-1 {
    margin-bottom: 18px;
}

.m-t-1 {
    margin-top: 18px;
}

.main_counter_area {

    background-size: cover;
    overflow: hidden;
}

.main_counter_area .main_counter_content .single_counter {
    color: #fff;
}

.main_counter_area .main_counter_content .single_counter i {
    font-size: 36px;
}

/* .main_counter_area .main_counter_content {
    display: flex;
} */

.statistic-counter {
    color: #fff;
}

.statistic-counter1 {
    color: #fff;
}

.statistic-counter2 {
    color: #fff;
}

.statistic-counter3 {
    color: #fff;
}

/* spirituality-sec-start */

/* .spirituality-sec{
    background-color: #fff;
    box-shadow: 1px 1px 6px 4px #00000014;
    padding: 20px;
} */

.spirituality-text-sec .card {
    padding: 10px;
    box-shadow: 1px 1px 10px 1px #00000014;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    border-color: #fff;
    margin: 5px;
}

.spirituality-text-sec .card .card-body {
    padding: 2px;
}

.spirituality-text-sec .card .list-youtube a {
    color: #007bff;
}

.spirituality-text-sec .card .list-youtube a:hover {
    color: #007bff;
}

.spirituality-text-sec .card .card-body h6 {
    font-size: 25px;
    font-weight: 600;
    color: #000000;
}

.spirituality-text-sec .card .card-body .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.spirituality-text-sec .card p {
    font-size: 16px;
    font-weight: 500;
    color: #c0c0c0;
}

.spirituality-sec h2 {
    font-size: 28px;
    font-weight: 600;
    color: #3c3c3c;
}


.top-bar-left .nav-item:hover .dropdown-menu{
    display: block!important;
}

.header-right-sec .nav-item:hover .dropdown-menu{
    display: block!important;
    opacity: 1!important;
    visibility: visible!important;
}

.courses-img .image{
    width:100%;
    height:300px!important;
}

.mobile-menu .navbar-nav{
    overflow: scroll;
    height: 70vh;
}


.courses-details-img{
    width: 250px;
    height: 100px;
    /*float: left;*/
    margin-right: 15px;
}

.pricing-content li p{
    font-size: 13px;
    color: #464444;
    font-weight: 600;
    line-height: 20px;
}
.pricingTable:hover .pricingTable-header {
    background: #de6e44;
}
.pricingTable .duration{
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.pricingTable:hover .month, .pricingTable:hover .price-value, .pricingTable:hover .duration, .pricingTable:hover .pricingTable-header i{
    color: #000;
}
.pricingTable .name-table{
    font-size: 25px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}
.price_duration_div{
    text-align: center;
    margin-bottom: 15px;
}

.courses-sec .card-body a:active, a:focus{
    color:#000;
}

.about-sec .all_sec{
    padding:15px 20px;
    background:#fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}
.about-sec .section-header{
    display: inherit;
}
.about-sec .about_image{
    width:220px;
    margin:10px 0px;
}
/*.gallery-section img{*/
    /*width: 90%;*/
/*    object-fit: cover;*/
/*    margin-right:1.5rem;*/
/*  }*/
  
.admission-sec .form-one-logo img{
    width:110px;
    height:110px;
}
.admission-sec .sub-header h2{
    font-size:18px;
  font-weight: 600;margin-bottom: 5px;color:#000;
}
.admission-sec .sub-header h1{
    font-size: 25px;font-weight: 700;text-transform: capitalize; margin:0px;color: #000;font-family:auto;
    text-decoration:underline;
}
.admission-sec .sub-header p{
    font-size:18px;
    color: #000;
    font-weight: 600;margin-bottom: 0px;margin-top: 5px;
}
.admission-sec .center-no label{
    font-size: 13px;font-weight: 500;color: #000;margin: 0px;
}


@media(max-width:991px){
    .admission-sec .sub-header h2{
    font-size:18px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
    color:#000;
}
.admission-sec .form-group.left-side{
    text-align:left;
} 
}
.admission-sec .office-use h4{
    font-size: 16px;color: #000;font-weight: 600;
}
.admission-sec .office-use p{
    font-size: 13px;font-weight: 600;
}
.admission-sec .office-use{
    border:1px solid #000;
    padding: 10px 15px;
}
.admission-sec .office-use .list-unstyled li{
    color:#000;
    font-weight:600;
    margin-bottom: 15px;
}
.admission-sec .office-use .list-unstyled li input::placeholder{
    color:#000;
}
.admission-sec .sub-header p input::placeholder{
    color:#000;
}
.admission-sec .most-urgent h3{
    font-size: 20px;color: #fff;font-weight: 600;
    background:#000;
    display:inline-block;
    padding:5px 35px;
}
.admission-sec .table td, .table th{
    padding: 0.5rem;
}
.admission-sec .table .px-40{
    padding-inline: 4.5rem;
}
.admission-sec .sub-header input,
.admission-sec .sub-header input:focus,
.admission-sec .office-use .list-unstyled input,
.admission-sec .office-use .list-unstyled input:focus{
    border-bottom: 2px dotted #000!important;
}
.admission-sec .table thead th{
        vertical-align: middle;
    }
@media(max-width:567px){
    .admission-sec .sub-header h1 {
    font-size: 18px;
    
}
.admission-sec .sub-header p {
    font-size: 17px!important;
    }
    .admission-sec .table thead th{
        font-size: 14px!important;
    }
}
@media(max-width:767px){
    .admission-sec .table tbody.list_of_fees td{
        vertical-align: middle;
    }
    .admission-sec .table tbody.list-wrap input,
    .admission-sec .table tbody.list-wrap select{
        width:unset;
    }
    .admission-sec .sub-header h1 {
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0px;
    margin-top:8px;
    color: #000;
    }
    .admission-sec .sub-header p {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 10px;
    padding:0px 0px;
    }
    .admission-sec .sub-header{
        
    }
    .admission-sec .application_head h2{
    font-size: 20px!important;
    }
    .admission-sec .application-left p{
    font-size:17px!important;
    }
    .admission-sec .application-left h2{
    font-size:17px!important;
    }
    .admission-sec .text-details_app,
    .admission-sec .text-details_app p{
    font-size:17px!important;
    }
    .admission-sec .current_year h2{
    font-size:17px!important;
    }
    .admission-sec .subject_code h2{
    font-size:17px!important;
    }
    .admission-sec .form-group span {
    color: #FF0000;
    font-size:15px!important;
    }
    .admission-sec .wrap-details p{
    font-size:17px!important;
    }
    .admission-sec .nb_eligibility h2{
    font-size:17px!important;
    }
    .admission-sec .signature-stmp p{
    font-size:17px!important;
    }
    .admission-sec .examinees_passed h2{
        font-size: 17px!important;
    }
    .admission-sec .subject_code p{
        font-size: 15px!important;
    }
    .section-header{
        text-align:center;
    }
    .about .about-text,
    .search-btn{
        text-align:center;
    }
    .Book-Appointment,
    .View-All{
        display:none;
    }
    .book-appoint,
    .view-all2{
    font-size: 14px;
    font-weight: 600;
    color: #fefbfb;
    padding: 5px 12px;
    background: #e59e1b;
    border-radius: 5px;
    }

}
.section-header{
        text-align:center;
    }
.admission-sec  .table .list_two input{
    width:100px;
}
.admission-sec .principal_sign p{
    font-size:16px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 5px;
}
/*.admission-sec .name_with_address input,*/
/*.admission-sec .name_with_address input:focus,*/
/*.admission-sec .principal_sign input,*/
/*.admission-sec .principal_sign input:focus{*/
/*    border-bottom: 2px dotted #000!important;*/
/*}*/
.admission-sec .name_with_address .form-group input{
    padding:0px;
}
.admission-sec .note-list{
    color:#000;
    font-size:16px;
    text-align:left;
    font-weight: 600;
}
.admission-sec .note-list dd{
    padding-left:20px;
}
.admission-sec .table tbody.list_of_fees{
    font-size:15px;
}
@media(min-width:767px){
.admission-sec .sub-header{
    text-align:lef!important;
    }
    .btn-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*margin-bottom: 15px;*/
    }
    .Book-appoint,
    .view-all1{
        display:none;
    }
    .gallery-section img{
    /*width: 90%;*/
    object-fit: cover;
    margin-right:1.5rem;
  }

}
.admission-sec .list_of_fees input,
.admission-sec .list_of_fees input:focus{
   border: 1px solid #000!important;
   font-weight: 600;
   padding-left:5px;
   background: transparent;
}
.admission-sec .list_of_fees td{
    /*border:none!important;*/
    font-weight: 700;
}
.admission-sec #users .btn-primary {
    background-color: #BC2E53;
    border-color: #BC2E53;
    color: #fff;
    padding: 5px 10px;
    font-size: 15px;
    font-weight: 600;
}
.admission-sec .wrapper_detail{
    color: #000;
    font-weight: 600;
}
.admission-sec .wrapper_detail input,
.admission-sec .wrapper_detail input:focus{
    border-bottom: 2px dotted #000!important;
    background: transparent;
}
.admission-sec .letter_sign p{
    font-size:18px;
     color: #000;
     font-weight: 600;
     margin:0px;
     font-family:auto;
}
/*.admission-sec .letter_sign input,*/
/*.admission-sec .letter_sign input:focus{*/
/*    border-bottom: 2px dotted #000!important;*/
/*    padding:0px;*/
/*}*/
.admission-sec .application_head input,
.admission-sec .application_head input:focus{
    border-bottom: 2px dotted #000!important;
}
.admission-sec .application-left p{
    font-size:18px;
    font-weight:600;
    margin:0px 0px;
    color: #000;
    font-family:auto;
}
.admission-sec .application-left h2{
    font-size:18px;
    font-weight:600;
    margin:0px 0px;
    margin-left:8px;
    color: #000;
    font-family:auto;
    text-transform:uppercase;
}
.admission-sec .text-details_app,
.admission-sec .text-details_app p{
    font-size:18px;
    font-weight:600;
    margin-top:0px;
    color: #000;
    font-family:auto;
}
.admission-sec .text-details_app input,
.admission-sec .text-details_app infut:focus{
     border-bottom: 2px dotted #000!important;
     background: transparent;
}
.admission-sec .address_form p{
     font-size:18px;
    font-weight:700;
    margin:0px 0px;
    color: #000;
    font-family:auto;
}
/*.admission-sec .address_form input,*/
/*.admission-sec .address_form input:focus{*/
/*    border-bottom: 2px dotted #000!important;*/
/*}*/
.admission-sec .address_form2 p{
    font-size:17px;
    font-weight:600;
    margin:0px 0px;
    color: #000;
    font-family:auto;
}
.admission-sec .address_form2 input,
.admission-sec .address_form2 infut:focus{
    border: 1px solid #adadad!important;
}
.admission-sec .application_head h2{
     font-size:25px;
    font-weight:700;
    margin:0px 0px;
    color: #000;
    font-family:auto;
}
.admission-sec .application_head p{
    font-size:18px;
    font-weight:700;
    margin:0px 0px;
    color: #000;
    font-family:auto;
}
.admission-sec .current_year h2{
    font-size:20px;
    font-weight:700;
    margin:0px 0px;
    color: #000;
    font-family:auto;
    text-align:center;
    text-decoration: underline;
    text-transform:uppercase;
}
.admission-sec .subject_code h2{
    font-size:20px;
    font-weight:700;
    margin:0px 0px;
    color: #000;
    font-family:auto;
    text-align:center;
    text-decoration: underline;
    text-transform:uppercase;
}
.admission-sec .subject_code p{
    font-size:15px;
    font-weight:700;
    margin:5px 0px;
    color: #000;
    font-family:auto;
    text-decoration: underline;
    text-transform:uppercase;
    text-align:center;
}
.admission-sec .examinees_passed h2{
    font-size:20px;
    font-weight:700;
    margin:0px 0px;
    color: #000;
    font-family:auto;
    text-align:center;
    text-decoration: underline;
    text-transform:uppercase;
}

.admission-sec .profile-pic {
    width: 200px;
    max-height: 200px;
    display: inline-block;
}

.admission-sec .file-upload {
    display: none;
}
.admission-sec .circle {
  
    overflow: hidden;
    width: 128px;
    height: 128px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    
   
}
.admission-sec img {
    max-width: 100%;
    height: auto;
}
.admission-sec .p-image {
  position: absolute;
  top: 105px;
  /*left: 222px;*/
  color: #666666;
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.admission-sec .p-image:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.admission-sec .upload-button {
  font-size: 1.2em;
}

.admission-sec .upload-button:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  color: #999;
}

.admission-sec .wrap-details p{
    font-size:18px;
    font-weight:500;
    margin:0px 0px;
    color: #000;
    font-family:auto;
}
.admission-sec .wrap-details input,
.admission-sec .wrap-details input:focus{
    border-bottom: 2px dotted #000!important;
}
.admission-sec .wrap_address p,
.admission-sec .wrap_signature p{
     font-size:18px;
    font-weight:700;
    margin:0px 0px;
    color: #000;
    font-family:auto;
}
.admission-sec .wrap_address input,
.admission-sec .wrap_address input:focus,
.admission-sec .wrap_signature input,
.admission-sec .wrap_signature input:focus{
    border-bottom: 2px dotted #000!important;
}
.admission-sec .nb_eligibility h2{
     font-size:20px;
    font-weight:700;
    margin:0px 0px;
    color: #000;
    font-family:auto;
    text-align:center;
}

/*Download page css*/
.new-heading {
    border-bottom: 5px solid #ff6100;
    padding: 10px;
}
.new-heading {
    /* background: #fffbd5; */
    background-color: #fffbd5;
    background-image: linear-gradient(to right, #f8d7cb, white, #f8d7cb);
    color: #ff6100;
    margin: 0;
    /*padding: 50px;*/
    text-align: center;
    font-weight: bold;
    word-spacing: 5px;
}
.new-heading2 {
    /* background: #fffbd5; */
    background: linear-gradient(to right, #f8d7cb, white, #f8d7cb);
    margin: 0;
    padding: 10px;
    text-align: center;
}
.new-heading2 h1{
    font-size:30px;
    font-weight:700;
}
.new-heading>p {
    font-size: 10px;
    text-align: center;
    margin-bottom: 0;
}
.new-heading h1 {
    margin-bottom: 0px;
}
.pages-tab {
    margin: 30px 0;
    background-color: white;
    /* background-image: linear-gradient(to right, white, #fffcd8, white); */
}
.pages-tab .right-sidebar {
    padding: 20px 50px;
    margin-top: 25px;
    background-color: white;
    background-image: linear-gradient(to right, white, #f8d7cb, white);
}
.box-shadow {
    transition: .3s ease;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 20%);
    border: 1px solid #ededed;
}
.pages-tab .right-sidebar h3 {
    border-bottom: 1px dotted #848181;
    margin-bottom: 0px;
    padding-bottom: 10px;
}
.pages-tab .right-sidebar .content {
    padding-top: 30px;
}

.new-h3{
        /*text-align: left!important;*/
        /* font-size: 18px!important; */
        /* text-transform: uppercase!important; */
        /* margin-bottom: 10px!important; */
        /* line-height: 1.5; */
        font-size: 16px;
        /* padding-bottom: 2px; */
        margin: 0;
    
    }
    .new-h3 span{
       border-bottom: none!important; 
    }
    .downloads-box{
        position: relative;
        /*height: 45px;*/
        padding: 0px 0px 0px 20px;
    }
    .downloads-box::after{
        background-color: #f58220;
        position: absolute;
        top: 8px;
        left: 0;
        width: 6px;
        height: 30px;
        content: "";
        display: inline-block;
        border-radius: 3px;
    }
    .downloads-box::before{
        background-color: #0b2f55;
        position: absolute;
        top: 0px;
        left: 2px;
        width: 2px;
        height: 46px;
        content: "";
        display: inline-block;
    }
    .downloads-box p{
    	font-size: 12px;
	    font-weight: 400;
	    line-height: 24px;
	    letter-spacing: 1.1px;
	    text-align: justify;
	    text-transform: uppercase;
    }
    .btn-apply-now{
        /*position: absolute;*/
        color: white;
        background-color: #0b2f55;
        /*right: 0;*/
        /*top: 0px;*/
        font-size: 12px;
        padding: 3px 10px;
        
    }
    .btn-down-pdf{
        /*position: absolute;*/
        color: white;
        background-color: #f58220;
        /*right: 0;*/
        /*top: 0px;*/
        font-size: 12px;
        padding: 3px 10px;
        margin-right:8px;
    }
    .btn-down-pdf:hover, .btn-apply-now:hover{
        color: white!important;
    }
    .btn-down-pdf a,.btn-down-pdf a:hover,.btn-down-pdf a:active, .btn-apply-now a,.btn-apply-now a:hover,.btn-apply-now a:active{
        color: white!important;
    }
    hr {
	    margin-top: 10px!important;
	    margin-bottom: 10px!important;
	}
    .download-btn-right button{
        display: block;
        width: 100px;
        margin-bottom: 5px;
    }
@media(min-width:991px){
     .downloads-box{
        height: 45px;
    }
    .download-btn-right-one{
        /*position: absolute;*/
        /*right: 0;*/
        /*top: 10px;*/
        display:flex;
    }
    .download-btn-right-two{
        position: absolute;
        right: 0;
        top: 10px;
    }
}
    .downloads-box .download-head{
        margin-left: 10px;
    }
    .download-text-img {
        font-size: 30px;
    }
/*Download page css end*/

.admission-sec .pratical_exam_list ul li{
    color:#000;
    font-weight:700;
}
@media (max-width:991px){
    .download-btn-right{
        padding-left:20px;
    }
    .download-btn-right-one{
        display: flex;
        padding-top:5px;
    }
    .downloads-box{
        /*height:65px;*/
    }
    .new-heading2 h1{
        font-size:1.75rem;
    }
}
@media(max-width:567px){
    .new-heading2 h1{
        font-size:18px;
        font-weight: 700;
    }
    .download-btn-right-one{
        display: flex;
    }
    .downloads-box{
        /*height:100px;*/
    }
}
.admission-sec .signature-stmp p{
    font-size:18px;
    padding:0px;
    color:#000;
}
.admission-sec .signature-stmp h2{
    font-size:22px;
    font-weight:600;
}
/*.admission-sec .signature-stmp input,*/
/*.admission-sec .signature-stmp input:focus{*/
/*    border-bottom: 2px dotted #000!important;*/
/*}*/
.admission-sec{
    /*background: linear-gradient(to right, #f8d7cb, #f8d7cb, #f8d7cb);*/
}

/* table and input border */
.admission-sec .table-bordered td, 
.admission-sec .table-bordered th {
    border: 1px solid #000!important;
}
.admission-sec .table thead th {
    border-bottom: 2px solid #000!important;
}
/* table and input border end */