/********** CSS **********/
:root {
    --primary: #DC7B1A;
    --secondary: #FFCA00;
    --dark: #222222;
    --light: ##444444;
    --bg-light: #F2F3F5;
}

/* @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); 
    }
    40% {
        transform: translateY(-20px); 
    }
    60% {
        transform: translateY(-10px); 
    }
} */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey;  */
    border-radius: 7px;
}


::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}


/************************ Common ************************/

section {
    padding: 60px 0px;
}

.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Josefin Sans", serif;
}


h1 {
    font-size: 48px;
    font-weight: 700;
}

h2 {
    /* font-size: 40px;
    color: var(--secondary);
    margin-bottom: 25px;
    z-index: 99; */

}

h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    font-size: 16px;
    font-weight: 500;
    color: var(--light);
    line-height: 24px;
}

a {
    /* font-size: 17px; */
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;

}

a:hover {
    color: var(--secondary) !important;
}

img {
    width: auto;
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}
.border5{
    border-radius: 5px;
}
.border10{
    border-radius: 10px;
}


/* .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
} */


/* Content Styles */
.content {
    /* display: none; */
    /* Hide content initially */
}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary);
    color: white !important;
    border-radius: 7px;
    border: none;
    text-transform: capitalize;
    /* display: inline-block; */
    padding: 5px 25px;
    min-height: 45px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: var(--secondary);
}

.btn-primary,
.btn-outline-primary:hover {
    border-color: var(--primary) !important;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff !important;
    background-color: var(--primary);
    border: none !important;
    /* border-color: #000; */
    box-shadow: none;
    border-color: var(--primary) !important;

}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
    color: #fff !important;
    background-color: var(--primary);
    /* border-color: #000; */
    border: none !important;
    border-color: var(--primary) !important;
}

.btn-white {
    background-color: white;
    color: var(--primary) !important;
    z-index: 99;
}

.btn-white:hover {
    color: white !important;
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.section-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: -1px;
    /* text-transform: capitalize; */
    line-height: 47px;
}

.learn-more {
    background-color: var(--primary);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600 !important;
    color: white;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.read-more {
    font-weight: 600 !important;
    color: white;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
/* .learn-more::after {
    content: "Ã¢â€ â€™";
    margin-left: 8px;
    font-weight: bold;
  } */
.learn-more:hover {
    color: var(--secondary);
}

/************************ Header************************/
header {
    z-index: 999;
    /* position: absolute; */
    /* padding: 0px 50px; */
    top: 0;
    left: 0;
    right: 0;
    /* color: white; */
    /* background: white; */
}

/* ------- Top-Sec ------ */
.top-bar{
    background-color: var(--primary);
    padding: 2px 50px;
}

.contact-top {
    /* display: flex;
    justify-content: end;
    align-items: center; */
}

.contact-top ul {
    gap: 20px;
    align-items: center;
    margin-bottom: 5px;
    padding: 0;
}

.contact-top i {
    padding-right: 10px;
}


.contact-top a{
    color: white;
    font-size: 15px;
}

.contact-top a:hover{
    color: var(--secondary) !important;
}

.social-top{
    justify-content: end;
}

/* ---------------------------- */
.logo-sec{
    padding: 5px 50px;
}

.logo {
    padding: 0;
}

.logo img {
    height: auto;
    width: auto;
    margin-bottom: 0;
    border-radius: 0px;
}
/* ---------------------------- */
/* ---------------------------- */

header ul li {
    list-style: none;
}

nav {
    color: var(--dark);
}

nav ul li {
    list-style: none;
}

nav ul {
    margin-bottom: 0;
    padding: 0px;
}

.main-menu {
    padding: 10px 0px 5px;
}

nav ul li.active a{
    color: var(--secondary);
}

.custom-nav ul li a:hover{
    color: var(--secondary);
}




/* custom nav */
/* ======================================================================= */
nav.custom-nav {
    display: flex;
    justify-content: end;
    /* background-color: var(--primary); */
    padding: 5px 0px !important;
}
.custom-nav a {
    font-size: 15px;
    color: var(--dark);
    /* text-transform: uppercase; */
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: normal;
}

.custom-nav .submenu {
    position: absolute;
    display: block;
    background: #fff;
    z-index: 99999;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    top: 60px;
    opacity: 0;
    pointer-events: none;
    /* top: 35px; */
    padding: 10px 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.custom-nav .navbar {
    gap: 30px;
}

.custom-nav .navbar li {
    position: relative;
}

.custom-nav .submenu.open {
    opacity: 1;
    top: 35px;
    pointer-events: all;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.custom-nav .submenu .submenu {
    left: 100%;
    top: 0;
}

.custom-nav .navbar .has-child>a::after {
    display: inline-block;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.custom-nav .navbar .has-child:hover::after {
    color: var(--primary) !important;
}

/* .custom-nav .navbar a {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: normal;
} */

.custom-nav .navbar .submenu a {
    padding: 10px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.custom-nav .navbar .submenu a:hover{
    color: var(--secondary) !important;
}



nav.custom-nav .navbar>li:nth-last-child(-n+2) .submenu {
    left: auto;
    right: 0;
}

.mainNav-btn {
    display: none;
}


.mainNav-btn {
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: none;
    margin-right: 10px;
    color: #fff;
    outline: none;
    padding: 0 !important;
}

.mainNav-btn:hover{
    background-color: var(--primary);
}
.menu-overlay {
    display: none;
}

.menu-overlay {
    display: block;
    width: 0%;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    opacity: 0;
}

.menu-open .menu-overlay {
    width: 100%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    opacity: 1;
}


.submenu a {
    color: var(--dark) !important;
}


/************************ Banner ************************/
.banner {
    padding: 0px;
    position: relative;
    /* height: calc(100vh - 120px); */
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner1 {
    position: relative;
    /*height: 100vh;*/
    background-size: cover;
    object-fit: cover;
    background-position: center;
}
.banner1 img{
	border-radius: 0 !important;
	margin-bottom: 0 !important;
}

.banner1 .overlay {
    /* background: linear-gradient(#000000e0, #00000000); */
    background: black;
    content: '';
    display: block;
    position: absolute;
    opacity: 0.4;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

/* .banner-content {
    position: absolute;
    z-index: 999;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    display: flex;
} */

.banner h1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 999;
    font-weight: 500;
}
/************************ Music ************************/
.music{
    background-image: url(../img/music-bg.jpg);
    min-height: 400px;
    background-size: cover;
    /* background-position: center; */
    object-fit: cover;
}
.music img{
    height: 180px;
    width: auto;
    margin: 0;
    object-fit: cover;
    object-position: center;
    background-size: cover;
}
.niram{
    padding: 30px;
}
.info{
    /* padding: 20px 40px 5px 40px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.player img{
    width: 100%;
}

/* .audio h4 {
cursor: default;
margin-top: 15px;
line-height: 0;
color: var(--dark);
font-size: 17px;
font-weight: 500;
text-transform: capitalize;
}

.audio h5 {
cursor: default;
line-height: 20px;
color: var(--light);
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
margin-bottom: 20px;
}

.audio h3 {
cursor: default;
text-align: left;
color: var(--dark);
font-size: 22px;
font-weight: 500;

} */

.music .ai-scroll-wrap{
    height: 130px !important;
}

/* ------------------------- */
.player-container {

    /*display: flex;*/
    align-items: center;
}
.audio-content{
    width: 100%;
    padding: 0px 20px;
}
/* .player-container h5 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #333;
} */
audio {
    width: 100%;
    display: none;
}
.controls {
    display: flex;
    gap: 7px;
    margin: 10px 0px;
}
.music button {
    background: transparent;
    color: var(--primary);
    border: none;
    border-radius: 50%;
    /* width: 40px;
    height: 40px; */
    cursor: pointer;
    outline: none;
}
button:hover {
    background: transparent;
    color: var(--secondary);
}
.music h5{
    /* display: none; */
}

/* ------------------------------------------------------------------------------------------------------------------------ */
.progress-container {
    width: 100%;
    background-color: #ddd;
    height: 8px;
    border-radius: 5px;
    cursor: pointer;
}
.progress-bar {
    width: 0;
    height: 100%;
    background-color: var(--primary);
    border-radius: 5px;
}
.audio-duration{
    margin: 10px 0px;
}
#current-time, #duration-time{
    color: var(--primary);
    font-weight: 600;
}
/************************ Courses ************************/

.courses1 {
    /* padding-bottom: 10px;
    border-radius: 25px;
    margin-bottom: 20px;
    background-color: white; */
}

.courses img {
    margin-bottom: 20px;
    height: 370px;
    width: 100%;
    object-fit: cover;
    background-position: top;
}
.courses-info {
    padding: 5px 25px;
}


.courses .crs-btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0px;
}
.crs-btn2{
    background-color: white !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
}
.crs-btn2:hover{
    background-color: white !important;
    color: var(--secondary) !important;
    border: 1px solid var(--secondary) !important;
}

/************************ Articles ************************/
.section-title-view-all{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.articles .item {
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06); */
    align-items: center;
}

.articles img {
    height: 230px;
    object-fit: cover;
    background-position: center;
    object-fit: cover;
    object-position: top;
    position: relative;
    margin: 0;
    border-radius: 5px 0 0 5px;
}
.articles-info {
    padding: 20px 25px;
}

.articles h5{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.articles p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
/* .articles a{
    font-size: 15px;
}
.articles a:hover{
    color: var(--secondary) !important;
} */
/************************ News, Choir  ************************/
.events{
    padding: 40px 30px;
    background-image: url(../img/news-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.events::before{
    opacity: 0.85;
    background: #8b4908;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 5px;
}
.events .section-title-view-all{
    position: relative;
    margin-bottom: 20px;
}
.events .learn-more{
    background-color: white;
    color: var(--primary);
}
.events h2.section-title{
    position: relative;
    z-index: 9999;
    margin: 0;
}
.events1{
	padding-bottom: 8px;
	/* min-height: 150px */
}
.events1 a{
	color: white;
}
.event2{
	border: 1px solid #EBE6E8 !important;
	padding: 10px 15px;
	border-radius: 10px;
	/* background-color: white; */
    padding: 20px 15px;
    align-items: center;
}
.date{
	background-color: white;
	color: var(--primary);
	border-radius: 10px;
	text-align: center;
	padding: 10px 3px;
	min-width: 90px;
	min-height: 85px;
	max-height: 95px;
}
.date h3{
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 700;
}
.date h5{
	/* color: white; */
	font-size: 14px;
	margin-bottom: 0;
}
.event-details{
	padding: 10px 5px 5px 20px;
}
.event-details h4{
	font-size: 20px;
	/*display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;*/
	overflow: hidden;
	color: #fff;
	text-shadow: 0px 0px 5px #403a32;
}
.event-details p{
	margin-bottom: 0;
	font-weight: 400;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	color: #f9ebeb;
	font-size: 14px;
}

.choir1{
    /*padding: 40px 30px;*/
}
.choir select {
    width: 100%; 
    padding: 12px 20px;
    border: 1px solid var(--dark) !important;
    background-color: transparent;
    color: var(--dark) !important;
    border-radius: 5px;
    box-sizing: border-box;
    height: 50px;
    z-index: 99;
    cursor: pointer;
}
.choir-1-search {
	height: 100%;
    border-radius: 10px;
}
.reg_div {
    padding: 30px;
    height: 50%;
}
.choir-2-reg {
    height: 57%;
}
/************************ About ************************/
.principal{
    padding: 30px 20px;
    background-image: url(../img/news-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 5px;
    min-height: 365px;
}
.principal::before{
    opacity: 0.85;
    background: #854608;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 5px;
}
.principal img{
    position: relative;
    z-index: 99;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
    height: 180px;
    width: auto !important;
    min-width: 100px;
    object-fit: cover;
    object-position: top;
}
.principal h4, .principal p{
    color: white;
    position: relative;
    margin: 0 !important;
}
.about p{
    margin-bottom: 30px;
}
/************************ Gallery ************************/
.photo-gallery, .video-gallery{
    padding: 30px;
    height: 390px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}
.photo-gallery::before, .video-gallery::before{
    opacity: 0.5;
    background: black;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 5px;
}
.gallery img{
    height: 50px;
}
.gallery a{
    position: relative;
    color: white !important;
    z-index: 999;
}

.gallery .section-title{
    color: white !important;
    margin: 5px;
}
.gallery a:hover .section-title{
    color: var(--secondary) !important;
}

/************************ Footer ************************/
footer {
    background-color: #38332D;
    color: white;
    padding: 60px 0px 20px;
    position: relative;
    z-index: 99;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* footer::before{
    opacity: 0.95;
    background: #242424;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
} */
.footer-logo-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 25px;
}
footer .footer-logo img {
    height: 85px;
    position: relative;
    z-index: 9999;
}
footer .social{
    position: relative;
    justify-content: end;
}
footer h5{
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-transform: capitalize;
}

footer p,
footer a,
footer ul li {
    color: white;
}

footer .social ul{
    margin: 0;
    gap: 10px;
}

footer .social ul li a{
    background: var(--primary);
    border-radius: 5px;
    color: white;
    /* display: inline-block; */
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 15px;
    font-weight: 400;

}
footer p, footer a{
    font-size: 15px;
    font-weight: 400;
}

footer a:hover {
    color: var(--primary);
}

footer .social ul li i {
    font-size: 17px;
}
.address {
    margin-bottom: 10px;
}

/* .address i {
    color: white;
    background-color: var(--primary);
    text-align: center;
    line-height: 27px;
} */
footer .address i{
    background: var(--primary);
    border-radius: 5px;
    color: white;
    /* display: inline-block; */
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 15px;

}

.address p,
.address a {
    padding-left: 15px;
    margin-bottom: 0px;
    font-weight: 300;
    line-height: 28px;
}
.address ul{
    align-items: center;
    display: flex;
}
.address li{
    font-size: 20px;
    margin: 0 !important;
}

footer ul {
    padding: 0px;
    margin: 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 15px;
}

.copyright {
    border-top: 1px solid #C2C8CD;
}

.copyright p {
    font-size: 15px;
    padding: 0px;
}

.ipsr img {
    height: 25px;
    margin: 0;
    border-radius: 0;
}

.ipsr img:hover {
    opacity: 0.5;
}

.ipsr p,
.ipsr a {
    padding: 0px;
    margin: 0;
}

.ipsr p,
.ipsr a {
    font-size: 8px !important;
}

/************************ ************************/
.view-all-mob{
    text-align: center;
    margin: 30px 0 0px;
    position: relative;
  }
  
/*Custom style by Dev**/  
.contact-top i {
    color: white;
    font-size: 15px;
}  
button.ai-btn.ai-btn-repeat.false {
    display: none;
}  
div.fixed_btn {
	writing-mode: vertical-lr;
	text-orientation: sideways;
	display: flex;
	position: fixed;
	top: 20%;
	right: -3px;
	width: 40px;
	padding: 13px 10px;
	justify-content: center;
	align-items: center;
	background-color: maroon;
	color: #fff;
	z-index: 9999;
	box-shadow: 2px 2px 8px #000;
	border-radius: 3px;
	transform: rotate(180deg);
}
div.fixed_btn a {
	color: #fff;
}
.overlay-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 9999;
}

.popup-box {
	background: #fff;
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
	width: 650px;
	max-width: 95%;
	text-align: center;
	opacity: 0;
	transform: scale(0.8);
	animation: fadeInUp 0.5s ease-out forwards;
	position: relative;
	padding-top: 30px;
	max-height: 95%;
	overflow-y: auto;
}
/* Keyframes for fadeInUp animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Animation for popup */
.overlay-container.show {
	display: flex;
	opacity: 1;
}
.popup-box h3 {
    border-bottom: 2px solid #e1974c;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    padding-bottom: 4px;
    font-weight: 700;
}
button.btn-close-popup {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #b9620c;
    color: #fff;
    border: 0;
}
.popup-box input[type=text], .popup-box input[type=email], .popup-box input[type=tel], .popup-box select {
    border: 1px solid #CCC;
    margin: 10px 0;
    width: 100%;
    padding: 10px 10px;
    border-radius: 5px;
	color: #141111;
    font-size: 13px;
    font-family: verdana;
}
.popup-box p {
    margin: 0;
	position: relative;
}
span.wpcf7-not-valid-tip {
    text-align: left;
    font-size: 12px;
    line-height: 17px;
}
.popup-box input[type=submit] {
    background-color: #b9620c;
    width: 250px;
    border: 0;
    padding: 8px;
    color: #fff;
    font-weight: 700;
}
span.wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 10px;
}
.breadcrumbs ol {
    padding-left: 0 !important;
}
.breadcrumb-container.theme1 a span, .breadcrumb-container.theme1 a {
    color: #b1afaf !important;
    font-weight: 700;
    opacity: 1;
    font-size: 1rem;
}
.breadcrumb-container.theme1 a:hover span, .breadcrumb-container.theme1 a:hover {
    color: #e1c458 !important;
}
.breadcrumbs ol li{
	position: relative;
}
.breadcrumbs ol li::before {
    content: '\f101' !important;
    font-family: "fontAwesome";
    font-size: 20px;
    position: absolute;
    left: -7px;
    color: #b1afaf !important;
    opacity: 1;
    top: 2px;
    font-weight: 900;
}
.breadcrumbs ol li:first-child::before{
	display: none;
}
section.courses {
    position: relative;
}
section.courses h2 {
    text-align: left;
}
.courses .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
}
.courses .owl-prev {
    position: absolute;
    right: 40px;
}
.courses .owl-nav i {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    background: #DC7B1A;
    width: 35px;
    height: 35px;
    display: block;
    border-radius: 50%;
    padding: 3px 0;
}
.courses .owl-nav i:hover {
    background-color: #38332D;
}	
iframe{
	max-width: 100%;
}

.niram-carousel h2.section-title {
    padding-top: 10px;
}
.niram {
    background-color: #fff9ef !important;
}
.ai-wrap.ai-type-full.ai-with-typography {
    background-color: #fff9ef;
    color: #000;
    box-shadow: 2px 2px 8px #ccc;
    border-radius: 10px;
	margin-bottom: 0;
}
.niram .ai-wrap.ai-type-full.ai-with-typography {
    box-shadow: none;
}
.ai-wrap .ai-track {
    background-color: #e7dfd0 !important;
}
.ai-wrap .ai-track:hover, .ai-wrap .ai-track.ai-track-active {
    background-color: #DC7B1A !important;
}
.ai-wrap .ai-audio-control{
	background-color: #DC7B1A;
}
.ai-wrap .ai-btn{
	background-color: #DC7B1A;
}
.ai-wrap .ai-audio-control:hover, .ai-wrap .ai-audio-control:focus {
    border: 0;
    background-color: #161615;
}
.ai-wrap .ai-volume-bar.ai-volume-bar-active::before {
    background-color: #DC7B1A;
}
.ai-wrap .ai-scroll-wrap>div:last-child div {
    background-color: #ab5d0f !important;
}

.courses-info h5 {
    font-weight: 700;
    font-size: 20px;
}
.courses-info p {
    font-size: 14px;
    color: #38332D;
}

.course-category-tabs {
    display: block;
    width: 100%;
    margin-bottom: 0;
}
.course-category-tabs ul {
    text-align: left;
    padding-left: 0;
    margin: 0;
    margin-bottom: 8px;
}
.course-category-tabs ul li {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-right: -2px;
}
.course-category-tabs ul li a {
    background-color: #e27a14;
    padding: 10px 20px;
    margin-bottom: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #fff;
}
.course-category-tabs ul li a:hover {
    background-color: #854d16;
}
div#course2{
	display: none;
}
.course-category-tabs ul li a.active{
	background-color: #854d16;
	color: var(--secondary) !important;
}