/* Import Fonts & All CSS */

@import url(hkgrotesk-fonts.css);
@import url(bootstrap.min.css);
@import url(classy-nav.css);
@import url(font-awesome.min.css);

/*
 * The Typekit service used to deliver this font or fonts for use on websites
 * is provided by Adobe and is subject to these Terms of Use
 * http://www.adobe.com/products/eulas/tou_typekit. For font license
 * information, see the list below.
 *
 * futura-pt:
 *   - http://typekit.com/eulas/000000000000000000010096
 *
 * © 2009-2021 Adobe Systems Incorporated. All Rights Reserved.
 */


/*{"last_published":"2021-09-01 07:08:52 UTC"}*/

@import url("https://p.typekit.net/p.css?s=1&k=wxp3seb&ht=tk&f=10886&a=36233104&app=typekit&e=css");
@font-face {
    font-family: "futura-pt";
    src: url("https://use.typekit.net/af/ae4f6c/000000000000000000010096/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff2"), url("https://use.typekit.net/af/ae4f6c/000000000000000000010096/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff"), url("https://use.typekit.net/af/ae4f6c/000000000000000000010096/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 300;
}

.tk-futura-pt {
    font-family: "futura-pt", sans-serif;
}


/* :: 1.0 Reboot CSS */

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    /* height of sticky header */
}

body {
    font-family: 'HK Grotesk';
    font-weight: 400;
    font-size: 16px;
    color: #e4e4e4;
    background-color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: futura-pt, sans-serif;
    color: #d2a76e;
    line-height: 1.1;
    font-weight: 400;
}

.h1,
h1 {
    font-size: 2.5em
}

.h2,
h2 {
    font-size: 2em
}

.h3,
h3 {
    font-size: 1.75em
}

.h4,
h4 {
    font-size: 1.5em
}

.h5,
h5 {
    font-size: 1.25em
}

.h6,
h6 {
    font-size: 1em
}

a,
a:active,
a:focus,
a:hover {
    text-decoration: none;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    outline: none;
}

li {
    list-style: none;
    line-height: 1.4;
    color: #e4e4e4;
    font-size: 1em;
    font-weight: 400;
}

p {
    line-height: 1.4;
    color: #e4e4e4;
    font-size: 1em;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.text-decoration-underline{text-decoration: underline;}
.display-aic {
    display: flex;
    align-items: center;
}

.img-cover {
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

.bg-overlay {
    position: relative;
    z-index: 1;
}
.modal{
    background-color: rgba(0, 0, 0, 0.9);
}
.modal-content{
    background-color: rgba(0, 0, 0, 1); 
    border-radius: 0;
}
.bg-overlay::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}

.p-0 {
    padding: 0;
}


.p-120 {
    padding-top: 120px !important;
}

.pt-3p {
    padding-top: 3%;
}

.mt-15 {
    margin-top: 15px;
}

.mtb-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.mrl-15 {
    margin-right: -15px;
    margin-left: -15px;
}

.zindex-2 {
    z-index: 2;
}
.bg-black{
    background-color: #000;
}
.ANPloader{
    position: fixed;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 1);
}
.spinner {
    margin: auto;
    width: 100px;
    height: 60px;
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 30px);
  }
  
  .spinner > div {
    background: #780207;
    height: 100%;
    width: 2px;
    float: left;
    margin: 0 1px;
    animation: stretch 2s infinite;
    animation-timing-function: cubic-bezier(.62,.28,.23,.99);
  }
  
  .spinner .r1 {
    animation-delay: -1s;
  }
  
  .spinner .r2 {
    animation-delay: -.9s;
  }
  
  .spinner .r3 {
    animation-delay: -.8s;
  }
  
  .spinner .r4 {
    animation-delay: -.7s;
  }
  
  .spinner .r5 {
    animation-delay: -.6s;
  }
  
  
  @keyframes stretch {
    0%, 20%, 49% { 
      transform: scaleY(0.4);
      background-color: #780207;
    }
    
    10% { 
      transform: scaleY(1.0);
    }
    
    50%, 70%, 100% { 
      transform: scaleY(0.4);
      background-color: #000;
    }
    
    60% { 
      transform: scaleY(1.0);
      background-color: #000;
    }
  }
.show{ display: block; }
.hide{ display: none;}
.title-content a{ cursor: pointer;}

@media only screen and (max-width: 991px) {
    .reverse {
        -webkit-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.row-container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

@media only screen and (min-width: 1499px) {
    .container {
        max-width: 1200px;
    }
}

@media only screen and (min-width: 1500px) {
    .container {
        max-width: 1400px;
    }
    body {
        font-size: 130%;
    }
}

.position-rel {
    position: relative;
}

.border-grey {
    border-bottom: 1px solid #252525;
    padding-bottom: 20px;
}

.red-btn {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #780207;
    color: #ffffff;
    text-align: center;
    display: inline-block;
}

.red-btn:hover {
    background-color: #3c0205;
    color: #ffffff;    
    box-shadow:0 1px 0px #3c3c3c;
}
.black-btn {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #000;
    color: #ffffff;
    text-align: center;
    display: inline-block;
}

.black-btn:hover {
    background-color: #333;
    color: #ffffff;
}
.splash-btn{
    border-radius: 50%;
    border:1px solid #a1a1a1;
    margin-top: 10px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: #fff;    
    padding: 7px;
}
.splash-btn i {
    font-size: 2em;
    color: #a1a1a1;
}

.btn-section {
    width: 90%;
    margin: 15px auto;
    text-align: center;
}

.btn-red-upper {
    padding: 12px 20px;
    font-size: 1em;
    line-height: 1;
    background-color: #780207;
    color: #ffffff;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
}

.btn-red-upper:hover {
    background-color: #3c0205;
    color: #ffffff;    
    box-shadow: 0 1px 0px #3c3c3c;
}

.main-container{
    background-image:url(../../images/bg-fogg.jpg);
    background-position: bottom right;
    background-color: #000;
    background-repeat: no-repeat;
}
.main-container.min-zindex{
position: relative;
z-index: 1;
}
 section{position: relative; z-index: 2;}
.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}
.modal-dialog.getin {
    max-width:600px;
    margin: 20px auto;
}
.modal-body {
    position: relative;
    padding: 0px;
}

.close {
    position: absolute;
    right: 5px;
    top: 0;
    z-index: 999;
    font-size: 2em;
    font-weight: normal;
    color: #fff;
    opacity: 1;
}
/* :: breadcrumbs CSS */
.breadcrumbs {
    width: 100%;
    margin: 2px 0 auto;    
    display: inline-block;
}
.breadcrumbs ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .breadcrumbs li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    float: left;
    color: #fff;
  }
  
  .breadcrumbs li a {
    display: block;
    padding: 0;
    color: #fff;
    font-weight: 300;
  }
  .breadcrumbs li.current{
      font-weight: 700;
  }
  
  .breadcrumbs li a:after {
    content: '>';
    padding: 0 10px;
    color: #fff;
  }
  .arrow-container {
    width: 25px;
    animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
    cursor: pointer;
    height: 20px;
    position: fixed;
    z-index: 999;
    bottom: 30px;
    right: 50%;
  }
  
  .arrow-down {
    height: 28px;
    width: 30px;
    text-align: center;
    display: inline-block;
    background-image: url(../../images/downarrow.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .arrow-down:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 100%;
    border-radius: 5px;
    /* background: black; */
    transform: rotate(-90deg);
    transform-origin: 0% 100%;
  }
  
  @keyframes bounce {
  50% {
      transform: translateY(-15px);
    }
  } 
  #return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: block;
    background-image: url(../../images/up-arrow.png);
    background-size: contain;
    text-decoration: none;
    display: none;
    z-index: 9;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.h-divider {
    margin: auto;
    margin-top: 3%;
    width: 80%;
    position: relative;
}
  
.h-divider .shadow {
    overflow: hidden;
    height: 20px;
}
  
.h-divider .shadow:after {
    content: '';
    display: block;
    margin: -25px auto 0;
    width: 100%;
    height: 25px;
    border-radius: 125px/12px;
    box-shadow: 0 0 8px #414141;
}
.pd-space{
    margin-top: -100px;
    padding-top: 150px!important;
}
.pd-space-t{
    margin-top: -50px;
    padding-top: 50px!important;
}
/* :: Profile CSS */

.profile-wrapper {
    display: none;
    position: relative;
    margin: 0 auto;
    align-self: flex-start;
}

.profile-wrapper::before {
    font-family: 'classyfonts';
    content: "\e900";
    font-size: 0.8em;
    color: #e4e4e4;
    padding-left: 5px;
    position: absolute;
    top: 20px;
    right: 10px;
}

.profile {
    padding: 17px 35px 0 0;
}

.profile:hover {
    cursor: pointer;
}

.profile .name {
    font-size: 0.9em;
    color: #fff;
    line-height: 26px;
    margin-left: 10px;
}


/* hide menu */

.menu {
    display: none;
    clear: both;
    margin: 0;
}

.menu li {
    font-size: 0.8em;
    margin: 0;
    padding: 10px 20px;
    background: #000;
    display: inline-block;
}

.menu li a {
    color: #fff;
}

.menu li:hover>a {
    color: #d2a76e;
}


/* hover profile show menu */

.profile:hover .menu {
    display: block;
}


/* :: 1.0 Header CSS */

.header-area {
    position: fixed;
    z-index: 599;
    width: 100%;
    left: 0;
    top: 30px;
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
}

.header-area .main-header-area.sticky {
    top: 0;
    width: 100%;
    position: fixed;
    background-color: #000000;
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.2);
    border-bottom: none;
    left: 0;
    z-index: 650;
    border-bottom-color: transparent;
}
.breadcrumbs-main.breadcrumbs-sticky{
    top:70px;
    position: sticky;
    background-color: #000000;
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.2);
    border-bottom: none;
    left: 0;
    z-index: 99;
    border-bottom-color: transparent;
    padding-top: 0;

}
.top-search-area {
    margin: 0 30px;
    border-bottom: 1px solid #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .top-search-area {
        margin: 0;
        padding-right: 5px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .top-search-area {
        margin: 15px 15px 30px;
        padding-right: 0;
        border-right: none;
    }
}

@media only screen and (max-width: 767px) {
    .top-search-area {
        margin: 15px 15px 30px;
        padding-right: 0;
        border-right: none;
    }
}

.top-search-area form {
    position: relative;
    width: 210px;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .top-search-area form {
        width: 150px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .top-search-area form {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .top-search-area form {
        width: 100%;
    }
}

.top-search-area form input.form-control {
    width: calc(100% - 10px);
    height: 35px;
    background-color: transparent;
    border-radius: 0;
    border: none;
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
}
.top-search-area form ::-webkit-input-placeholder { /* Edge */
    color: #ffffff;
  }
  
  .top-search-area form :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ffffff;
  }
  
  .top-search-area form ::placeholder {
    color: #ffffff;
  }
.top-search-area form input.form-control:focus {
    background-color: transparent;
    box-shadow: none;
}

.top-search-area form button {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    border: none;
    width: 20px;
    height: 35px;
    line-height: 35px;
    background-color: transparent;
    color: #ffffff;
    text-align: right;
}

.top-search-area .icon-search {
    background-image: url(../../images/search-icon.png);
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    display: block;
}

.top-search-area form button:focus {
    outline: none;
}

.login-area {
    position: relative;
    z-index: 1;
    text-align: center;
}

.login-area a {
    line-height: 35px;
    padding: 0 20px;
    font-size: 1em;
    background-color: #780207;
    color: #ffffff;
    text-align: center;
}
.login-area a:hover{    
    background-color: #3c0205;
    color: #ffffff;    
    box-shadow: 0 1px 0px #3c3c3c;
}
.classy-nav-container .classy-navbar .classynav ul li a {
    position: relative;
    z-index: 1;
}

.classy-nav-container .classy-navbar .classynav ul li.current-item a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #960208;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

.classy-nav-container .classy-navbar .classynav ul li.current-item .dropdown li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background-color: transparent;
    bottom: 0;
    left: 50%;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .classy-nav-container .classy-navbar .classynav ul li.current-item a::before {
        width: 100%;
        height: 1px;
    }
}

@media only screen and (max-width: 767px) {
    .classy-nav-container .classy-navbar .classynav ul li.current-item a::before {
        width: 100%;
        height: 1px;
    }
}

@media only screen and (max-width: 991px) {
    .breakpoint-on .classy-navbar .classy-menu {
        background-color: #000000;
        box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.2);
    }
    .breakpoint-on .classynav>ul>li>a {
        background-color: #000000;
    }
    .classycloseIcon .cross-wrap span {
        background-color: #ffffff;
    }
}


/* :: 2 Home slider */

.background-cover {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../../images/Fog-BG-new.png);
}

.background-cover .slide {
    height: 100vh;
}

.background-cover .slide img {
    position: absolute;
    z-index: 999;
    bottom: 0;
    width: 60%;
}

.background-cover .slider-caption {
    position: absolute;
    z-index: 1;
    max-width: 31em;
    bottom: 50px;
    right: 50px;
}

@media (max-width: 991px) {
    .background-cover {
        height: auto;
    }
    .background-cover .slide {
        height: auto;
        margin-top: 100px;
    }
    .background-cover .slide img {
        position: static;		
    	width: 100%;
    }
	
    .background-cover .slider-caption {
        position: static;
        padding: 20px;
		width:100%;
		max-width: 100%;
		text-align:center;
    }
}

.background-cover .slider-caption h2 {
    color: #d2a76e;
    font-size: 2.2em;
    line-height: 1.1;
}

.background-cover .slider-caption p {
    color: #e4e4e4;
    font-size: 1.2em;
    line-height: 1.2;
    margin: 10px 0;
}
.background-cover .slider-caption h6 {
    color: #e4e4e4;
    font-size: 1em;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.background-cover .slider-caption a {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #780207;
    color: #ffffff;
    text-align: center;
    display: inline-block;
}
.background-cover .slider-caption a:hover {
    background-color: #3c0205;
    color: #ffffff;    
    box-shadow:0 1px 0px #3c3c3c;
}

.background-cover .slick-dots {
    position: absolute;
    top: 50%;
    right: 0;
}

.background-cover .slick-dots button {
    background: #fff;
    opacity: 1;
    display: block;
    height: 15px;
    width:15px;
    border-radius: 50%;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    border: 1px solid #FFF;    
    margin: 5px;
}

.background-cover .slick-dots .slick-active button {
    border: 1px solid #780207;  
    background-color: #780207;

}
@media only screen and (min-width: 991px) and (max-width: 1157px) {
    .background-cover .slider-caption {
        max-width: 23em;
    }
    .background-cover .slider-caption h2 {
        font-size: 1.6em;
    }
    
    .background-cover .slider-caption p {
        font-size: 1em;
        margin: 10px 0;
    }
	.background-cover .slider-caption h6 {
        font-size: 0.9em;
        margin: 10px 0;
    }
  }
@media (max-width: 767px) {
    .background-cover .slick-dots {
        top: 72vh;
    }
}
@media only screen and (max-width: 460px) {
.background-cover .slider-caption h2 {
    font-size: 1.4em;
}
}
/* :: 2 Ebook */

.ebook {
    padding: 5% 0;
}
.ebook .img-cover{
    margin: 0 auto;
}
.sec-content {
    padding: 0 6%;
}
.grid-2 {
    display: grid;
    grid-template-columns: 50% 50%;
}

.grid-3 {
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
}

.grid-4 {
    display: grid;
    grid-template-columns:25% 25% 25% 25%;
}
.grid-5 {
    display: grid;
    grid-template-columns:20% 20% 20% 20% 20%;
}
@media (max-width: 991px) {
    .grid-3, .grid-4, .grid-5 {
        display: grid;
        grid-template-columns: 50% 50%;
    }
}

@media (max-width: 767px) {
    .grid-2, .grid-3, .grid-4, .grid-5 {
        display: grid;
        grid-template-columns: 100%;
    }
    
}
/* :: 2.1 Music */
.img-spc{padding: 2px;}
.img-spc img{width: 100%;}
.img-spc p{font-size: 0.9em; color: #a2a2a2; text-align: center; padding: 5px;}
/* :: 3 Music */

.music {
    overflow: hidden;
}

.title-section {
    display: block;
    width: 90%;
    text-align: center;
    margin: 15px auto;
}
.title-section h2{
    font-size: 3rem;
}
.title-content{
    margin-bottom:20px;
}
.title-content a{
    color: #fff;
    text-decoration: underline;
}
.title-content h4{    color: #fff;}
.title-section-inner {
    display: block;
    width: 100%;
    text-align: left;
    margin: 15px;
}
.dummy-contain{
    display: block;
    width: 90%;
    text-align: center;
    margin: 10% auto
}
.music__left-bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../../images/arvind-parikh05.jpg);
    height: 100%;
}
.music__left-bg img {
    display: none;
}
.music__list {
    margin: 0;
}

.music__list a:hover .bg-overlay::after {
    background-color: rgba(120, 2, 7, 0.5);
}

.music__item {
    height: 40vh;
    padding: 17vh 40px;
    text-align: center;
}

.music__item img {
    margin: auto;
}

.music__item h4 {
    white-space: pre-line;
}

.music-bg1 {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../../images/arvind-parikh04.jpg);
}

.music-bg2 {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../../images/arvind-parikh03.jpg);
}

.music-bg3 {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../../images/arvind-parikh01.jpg);
}

.music-bg4 {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../../images/arvind-parikh02.jpg);
}


/* :: 4 Baithaks */

.baithaks {
    padding: 5% 0;
    padding: 0 0 3% 0;
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
}

.baithaks img {
    width: 100%;
}

.videos__large {
    position: relative;
    margin: 5px;
}
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
  }
  
  .embed-container iframe,
  .embed-container object,
  .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

.pdfembed-container{
    position: relative;
    height: 100vh;
    overflow: hidden;
    max-width: 100%;
} 
.pdfembed-container iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} 
.inner-main .videos__large{    
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}
.videos__large__item__text {
    background: rgba(0, 0, 0, .7);
    padding: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
}

.videos__large__item__text h4 {
    color: #fff;
    align-items: center;
    display: grid;
    margin: 0;
}

.video-play {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    color: #fff;
    position: absolute;
    left: calc(50% - 35px);
    top: calc(50% - 35px);
    background-image: url(../../images/play-button.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.video-play-small {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    color: #fff;
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
    background-image: url(../../images/play-button.png);
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.redvid-play {
    height: 50px;
    width: 50px;
    margin-left: 20px;
    text-align: center;
    display: inline-block;
    background-image: url(../../images/play.png);
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}
.baithaks_grid {
    width: 100%;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

.videos_grid {
    width: 100%;
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
}

@media (max-width: 991px) {
    .videos_grid, .baithaks_grid {
        grid-template-columns: 50% 50%
    }
}

@media (max-width: 767px) {
    .videos_grid, .baithaks_grid {
        grid-template-columns: 100%
    }
}

.baithaks__item {
    position: relative;
    margin: 5px;
    display: block;
}
.videos__item {
    position: relative;
    margin: 10px;
    display: block;
}
#ragaprakaras .videos__item {
  border: 1px solid #191919;
}

.videos__th img {
    width: 100%;
}
.video-3grid .videos__th img{
    height: 15vw;
    min-height: 180px;
}

.videos__item__text {
    background: rgba(0, 0, 0, .7);
    padding: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
}

.videos__item__text h5 {
    color: #fff;
    font-size: 0.9em;
    align-self: center;
    margin: 0;
    width: calc(100% - 25px);
}

.redvid-play-small {
    height: 30px;
    width: 40px;
    text-align: center;
    display: inline-block;
    background-image: url(../../images/play.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 20px;
    cursor: pointer;
}


/* features Section */

.features {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../../images/Social-Patch.jpg);
    padding: 3% 0;
    background-attachment: fixed;
}

.features .container {
    max-width: 1024px;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

@media (max-width: 991px) {
    .features .container {
        grid-template-columns: auto auto auto;
    }
}

@media (max-width: 767px) {
    .features .container {
        grid-template-columns: 50% 50%;
    }
}

.features-items {
    max-width: 100%;
    padding: 10px;
    text-align: center;
    border-right: 2px solid #3f3d3d;
}

.features-items:last-child {
    border-right: transparent;
}

.features-icon {
    min-height: 45px;
}

.features-icon img {
    min-width: 20px;
}


/*---------------------
  inner navigation for raga prakar, Faqs, demotration of raga
-----------------------*/
.inner-nav {
    border-bottom: 2px solid #333;
    padding-bottom:8px;
}
.inner-nav>.nav {
    border: none;
    margin: 0px;
}
.inner-nav>.nav>li>a {
    padding: 10px 15px;
    color: #fff;
    font-size: 1em;
    border-bottom: 2px solid transparent;
    position: relative;
}

.inner-nav>.nav>li>a:hover {
    padding: 10px 15px;
    color: #fff;
    font-size: 1em;
    border-bottom: 2px solid transparent;
    position: relative;
}

.inner-nav>.nav>li>a.active {
    border-bottom: 2px solid #960208;
    position: relative;
}

/*---------------------
  About Us
-----------------------*/

.inner-main {
    padding-top: 120px;
}

.spacing-row {
    padding: 5% 0;
}

.about_item_pic img {
    vertical-align: middle;
    border-style: none;
}
.about_item_text h2, .about_main_text h2{
    font-size: 2.4rem;
}
.about_item_text ul{
    padding: 0 0 23px 1em;
}
.about_item_text ul li{
    list-style-type: disc;
    padding: 3px 0;
}
.about_item_text li a{
    color: #e4e4e4;
}
.about_item_pic_left, .about_item_pic_right {    
    position: relative;
    width: 100%;
}

.about_item_pic_left:after {
    position: absolute;
    left: 30px;
    top: -30px;
    width: 100%;
    height: 100%;
    border: 4px solid #d2a76e;
    content: "";
    z-index: -1;
}

.about_item_pic_right:after {
    position: absolute;
    right: 30px;
    top: -30px;
    width:100%;
    height: 100%;
    border: 4px solid #d2a76e;
    content: "";
    z-index: -1;
}
@media (max-width: 991px) {
    .about_item_pic_left, .about_item_pic_right {
        position: relative;
        width: 100%;
        margin:35px auto;
    }
    
    .inner-nav>.nav>li>a {
        display: inline-block;
    }
    .about_item_pic_left:after {
        left: 15px;
        top: -15px;
    }
    
    .about_item_pic_right:after {
        right: 15px;
        top: -15px;
    }
}
.awards img {
    width: 100%;
    padding: 5px;
}

.cards-items {
    display: flex;
    align-items: center;
    padding: 20px;
}

.cards-items img {
    margin-right: 10px;
}

.cards-items p {
    margin: 0;
}

.image-left-side {
    float: left;
    width: 40%;
    margin: 40px;
    position: relative;
  }
.image-left-side:after {
    position: absolute;
    left: -30px;
    top: -30px;
    width: 100%;
    height: 100%;
    border: 4px solid #d2a76e;
    content: "";
    z-index: -1;
}
  
.image-right-side {
    float: right;
    width: 40%;
    margin: 40px;
    position: relative;
  }
.image-right-side:after {
    position: absolute;
    right: -30px;
    top: -30px;
    width:100%;
    height: 100%;
    border: 4px solid #d2a76e;
    content: "";
    z-index: -1;
}
.biography-text .clearfix{
    margin-top: 30px;
}
.biography-text h2{
    font-size: 2.4rem;
}
.biography-text a{
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 991px) {
	.about_item_pic_left, .about_item_pic_right {
        position: relative;
        width: 100%;
        margin:35px auto;
    }
    
    .inner-nav>.nav>li>a {
        display: inline-block;
    }
    .about_item_pic_left:after {
        left: 15px;
        top: -15px;
    }
    
    .about_item_pic_right:after {
        right: 15px;
        top: -15px;
    }

    .image-left-side, .image-right-side {
        width: 100%;
		margin: 40px 0px;
      }
	.image-left-side img, .image-right-side img {
        width: 100%;
      }
    .image-left-side:after {
        left: -15px;
        top: -15px;
    }
    .image-right-side:after {
        right: -15px;
        top: -15px;
    }
.biography-text h2{
    font-size: 2rem;
}
.biography-text h3{
    font-size: 1.4rem;
}	
.biography-text a{
    word-break: break-word;
}
    
}
/*---------------------
  Music
-----------------------*/

.cd-cover-main {
    padding-top: 100px;
}

.cd-cover-space {
    padding-top: 100px;
}

.about_item_pic img {
    vertical-align: middle;
    border-style: none;
}

.cd-cover {
    position: relative;
}

.cd-cover::after {
    position: absolute;
    left: -25px;
    top: -50px;
    width: calc(100% + 25px);
    height: 100%;
    border: 4px solid #d2a76e;
    content: "";
    z-index: 1;
}
/*
.cd_cover_text p {
    white-space: pre-line;
}*/

.video-3grid {
    padding: 3% 0;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

.poam_text {
    margin-top: 3%;
}

.poam_text h2 {
    white-space: pre-line;
    text-align: center;
    margin-bottom: 25px;
}

.poam_text p {
    white-space: pre-line;
    text-align: center;
}


/*---------------------
  track
-----------------------*/

.ragas {
    padding: 3% 0;
}

.track__content {
    padding: 0 5%;
    width: 100%;
}

.track__pic img,
.about_item_pic_left img,
.about_item_pic_right img,
.cd_cover_pic img {
    width: 100%;
}

.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

video#jp_video_0 {
    position: absolute;
    left: 10px;
    bottom: 93px;
}

.no-flexbox .audio-player {
    display: none;
}

.flex-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-item {
    margin: 0 5px;
}

.flex-item:first-of-type {
    margin-left: 0;
}

.jp-now-playing img#mini_poster {
    max-height: 50px;
    width: auto;
    float: left;
    margin-right: 10px;
}

.jp-progress-container.flex-item {
    margin-right: 0;
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    -ms-flex-negative: 2;
    flex-shrink: 2;
}

.jp-now-playing.flex-item {
    -ms-flex-preferred-size: 250px;
    flex-basis: 250px;
}

.jp-volume-controls.flex-item {
    -ms-flex-preferred-size: 110px;
    flex-basis: 110px;
}

.jp-audio,
.jp-audio-stream,
.jp-video {
    background: rgba(0, 0, 0, 0.85);
    padding: 5px;
    position: relative;
}


/* Track & Artist */

.jp-now-playing {
    padding: 10px;
}

.jp-track-name {
    font-family: futura-pt, sans-serif;
    color: #d2a76e;
    line-height: 1.1;
    font-weight: 400;
    font-size: 1.4em;
}


/*Controls*/

.jp-playlist {
    display: none;
}

.jp-interface .jp-controls button,
.jp-interface .jp-toggles button,
.jp-interface .jp-volume-controls button {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    line-height: 24px;
    font-weight: 600;
    -webkit-transition-delay: 0;
    transition-delay: 0;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-in-out;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    font-size: 20px;
    padding: 0 5px;
}

.jp-interface .jp-controls .jp-play i {
    font-size: 20px;
    color: #FFF;
    padding-left: 5px;
    padding-top: 2px;
}

.jp-interface .jp-controls .jp-play {
    margin: 0;
    width: 30px;
}

.jp-audio.jp-state-playing .jp-play i {
    padding-left: 0px;
}

.jp-audio.jp-state-seeking .jp-play i:before {
    content: "\f1ce" !important;
}

.jp-audio.jp-state-playing .jp-play i:before {
    content: "\f04c";
}

img#jp_poster_0 {
    display: none !important;
}


/* GC SPIN */

.jp-audio.jp-state-seeking .jp-play,
.playing.buffering {
    display: inline-block;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*Progress bars*/

.jp-progress-container,
.jp-volume-bar-container {
    height: 25px;
    padding: 10px;
}

.jp-progress,
.jp-seek-bar,
.jp-play-bar,
.jp-volume-bar,
.jp-volume-bar-value {
    height: 5px;
}

.jp-progress {
    margin: 0 50px;
    background-color: #e4e4e4;
}

.jp-seek-bar,
.jp-volume-bar {
    cursor: pointer;
    background-color: #e4e4e4;
}

.jp-play-bar {
    float: left;
    position: relative;
    background-color: #780207;
    overflow: visible !important;
}

.jp-volume-bar-value {
    float: left;
    position: relative;
    background-color: #780207;
}

.jp-time-holder {
    position: relative;
    top: 0;
    color: #fff;
    font-size: 12px;
}

.jp-time-holder .jp-current-time {
    position: absolute;
    left: 0;
    top: -5px;
}

.jp-time-holder .jp-duration {
    position: absolute;
    right: 0;
    top: -5px;
}


/* Volume Controls */

.jp-volume-controls button {
    float: left;
}

.jp-volume-controls .jp-volume-bar {
    margin-left: 40px;
    margin-top: 8px;
}

.jp-state-muted .jp-mute i:before {
    content: "\f026" !important;
}

.jp-state-no-volume .jp-volume-controls {
    display: none;
}

.nicescroll {
    height: 330px;
}
@media (max-width: 991px) {
.nicescroll {
    height: auto;
}
}
.nicescroll-cursors {
    background-color: #e4e4e4!important;
}


/*---------------------
  raga prakars
-----------------------*/

.tabbable-line>.nav-tabs {
    border: none;
    margin: 0px;
}

.tabbable-line>.nav-tabs>li>a {
    padding: 10px 15px;
    color: #fff;
    font-size: 1em;
    border-bottom: 2px solid transparent;
    position: relative;
    display: inline-block;
}

.tabbable-line>.nav-tabs>li>a:hover {
    padding: 10px 15px;
    color: #fff;
    font-size: 1em;
    border-bottom: 2px solid transparent;
    position: relative;
}

.tabbable-line>.nav-tabs>li>a.active {
    border-bottom: 2px solid #960208;
    position: relative;
}

.tabbable-line>.tab-content {
    margin-top: 7px;
    background-color: transparent;
    border: 0;
    border-top: 2px solid #333;
    padding: 15px 0;
}

.portlet .tabbable-line>.tab-content {
    padding-bottom: 0;
}


.prakars-section{
    margin-top: 8px;
    background-color: transparent;
    border: 0;
    padding: 15px 0;
}

/*---------------------
  Footer
-----------------------*/

.footer {
    background: #060001;
    padding: 5% 0 1% 0;
}

.footer p {
    margin: 25px 0 5px;
    color: #fff;
}
.footer p a{
    color: #fff;
}

.footer h4 a{
    font-size: 1em;
    color: #d2a76e;
}

.footer ul li a {
    font-size: 0.9em;
    color: #929292;
}

.footer ul li a:hover {
    color: #d2a76e;
}

.footer__Music p {
    margin: 10px 0 5px;
    padding-top: 10px;
    color: #fff;
    border-top: 1px solid #960208;
}

.footer__Music {
    padding: 0 5% 0 0;
}

.footer__Music ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.footer__Music ul li {
    list-style: none;
    padding: 0;
}

.footer__Music ul li a {
    margin-top: 5px;
}
.social-connect{
    margin-top: 25px;
}
.social-connect li{
    padding: 10px 0;
}
.social-connect ul li a{
    color: #fff;
    vertical-align: middle;
}
.footer__copyright__text {
    margin: 25px auto 0;
    border-top: 2px solid #403b3c;
    text-align: center;
}

.footer__copyright__text h5 {
    color: #fff;
    font-size: 1em;
    font-family: 'HK Grotesk';
    font-weight: 200;
    margin-top: 25px;
}
.footer__copyright__text h5 a {
    font-size: 1em;
    color: #fff;
    font-style: italic;
}

.footer__copyright__text p {
    margin: 5px 0 5px;
    font-size: 0.8em;
    color: #929292;
}

.footer__copyright__text p a {
    font-size: 1em;
    color: #929292;
    font-style: italic;
}

.footer__copyright__text a:hover {
    color: #d2a76e
}

.iframeWrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 50%;
    /* 16:9 Aspect Ratio */
}

.iframe_player {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media only screen and (max-width: 991px) {
    .grid-reset-md {
        display: block;
    }
    .sec-content {
        padding: 5% 0;
    }
    .music__left-bg img {
        display: block;
    }
	.music__item {
    height: 30vh;
	}
}


/*---------FAQ PAGE---------*/
.tabbable-panel{
    margin-top: 25px;
}
.faq-tabs {
    display: flex;
    align-items: center;
    font-family: 'HK Grotesk';
    font-size: 14px;
    font-weight: 300;
    line-height: 3.04;
    letter-spacing: 0.14px;
    text-align: left;
    color: #fff;
}

.faq-icon {
    width: 16px;
    height: 25px;
    margin-right: 15px;
}

.faq-qna-icon {
    width: 34px;
    height: 29px;
    margin-right: 15px;
}

.faq-tab-content {
    margin-top: -3px !important;
    padding-top: 36px !important;
}

.faq-sidebar-menu-list-item {
    padding: 20px;
    background-color: #780207;
    font-size: 18px;
    cursor: pointer;
}

.faq-sidebar-menu-list .active-item {
    background-color: #780207;
    opacity: 0.7;
    border-left: 2px solid white;
}

.faq-sidebar-menu-list-item a {
    color: white;
}

.faq-sidebar-menu {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 80px;
}

.faq-content .card {
    background-color: transparent;
}

.faq-content .card button {
    color: white;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.18px;
}

.faq-content .card-body {
    color: #e4e4e4;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0.16px;
}

.faq-content-video {
    margin-bottom: 70px;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

#faq-content-video-accordion button::after {
    font-family: 'classyfonts';
    content: "\e900";
    font-size: 0.8em;
    color: #e4e4e4;
    padding-left: 10px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
  
}

#faq-content-video-accordion .card button:focus {
    outline: 0px !important;
    box-shadow: none !important;
    
}

#faq-content-video-accordion .card-header,
#faq-content-video-accordion button {
    padding-left: 0px;
    white-space: normal;
}

#faq-content-video-accordion .card-header {
    border-bottom: 1px solid #ffffff3b;
}

.get-in-touch-wrapper {
    padding: 25px 0px;
    padding-bottom: 100px;
}

.get-in-touch-wrapper h2 {
    margin-bottom: 25px;
}

.get-in-touch-form {
    width: 50%;
}

.get-in-touch-form input,
.get-in-touch-form select {
    width: 100%;
    height: 43px;
    border: 1px solid #fff;
    color: #e4e4e43b;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0.14px;
    background-color: transparent;
    padding: 12px 8px;
    margin: 17px 0px;
    margin-top: 0px;
}
.get-in-touch-form select {
    color: rgb(255, 255, 255, 0.3);
}

.get-in-touch-form select  > option {
    background: #000;
    text-shadow: 0 1px rgba(0, 0, 0, 0.4);
  }
.get-in-touch-form-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
}
.get-in-touch-form-column span{
	width:100%
}
.get-in-touch-form textarea {
    width: 100%;
    /* height: 190px; */
    border: 1px solid #fff;
    color: #e4e4e43b;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0.14px;
    background-color: transparent;
    padding: 12px 8px;
    text-align: left;
}

.get-in-touch-form input[type=submit] {
    width: 95px;
    height: 43px;
    background-color: #780207;
    padding: 10px 15px 11px 16px;
    font-size: 17px;
    letter-spacing: 0.17px;
    color: #fff;
    text-transform: uppercase;
    border: 0px;
}
.get-in-touch-form input[type=submit]:hover{
    background-color: #3c0205;
    color: #ffffff;    
    box-shadow:0 1px 0px #3c3c3c;
}
#getintouch.modal {
    background-color: rgba(0, 0, 0, 0.5);
}
#getintouch .modal-content {
    padding: 20px;
}
#getintouch h2{text-align: center;}
#getintouch .get-in-touch-form {
    width: 100%;
}
#getintouch .get-in-touch-form input,
#getintouch .get-in-touch-form textarea {
    width: 100%;
    margin-bottom: 15px;
}
#getintouch  .get-in-touch-form input[type=submit] {
    width: 150px;
    display: inline-block;
    text-align: center;
}

.welcome-container {
    padding: 25px 0px;
}

.welcome-tag-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0px;
}

.welcome-tag-wrapper-tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.welcome-tag-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.welcome-tag-list-item {
    margin-right: 20px;
    padding: 5px 15px;
    border: 1px solid #fff;
    cursor: pointer;
}

.active-tag-item {
    background-color: #780207;
    padding: 5px 15px;
    border: 0px;
}

.welcome-tag-sort-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.welcome-tag-container p {
    margin-bottom: 0px;
}

.welcome-tag-heading,
.welcome-tag-sort-text {
    margin-right: 10px;
}

#welcome-accordion .card {
    background-color: transparent;
}

#welcome-accordion .card-header {
    padding-left: 0px;
    border-bottom: 1px solid #e4e4e43b;
}

#welcome-accordion .card-header button {
    font-size: 18px;
    line-height: 23px;
    color: #e4e4e4;
}

#welcome-accordion button::after {
    font-family: 'classyfonts';
    content: "\e900";
    font-size: 0.8em;
    color: #e4e4e4;
    padding-left: 10px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

#welcome-accordion .card-body {
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0.16px;
    color: #e4e4e4;
}

#welcome-accordion .card-header button:focus {
    box-shadow: none;
    outline: 0px;
}

@media only screen and (max-width: 1440px) {}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 768px) {
    #faq-content-video-accordion .card-header,
    #faq-content-video-accordion button,
    #welcome-accordion .card-header button {
        white-space: normal;
    }
    .get-in-touch-form textarea {
        width: 284px
    }
    .get-in-touch-form input[type=submit] {
        margin-top: 20px;
    }
    .welcome-tag-wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: space-around;
        padding: 25px 0px;
        flex-direction: column;
    }
    .welcome-tag-sort-container {
        margin-top: 20px;
    }
    .welcome-tag-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-flow: wrap;
    }
    .welcome-tag-list-item {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 481px) {
    .faq-sidebar-menu {
        margin-bottom: 20px;
    }
}


/*----------SPLASH SCREEN PAGE---------*/
.center-splash .row{margin: 0; padding: 0;}
.splash-screen-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #780207;
    position: fixed;
    overflow: auto;
    z-index: 999;
}
.splash-screen-container .center-splash{
    text-align: left;
    max-width: 650px;
}
.splash-screen-container p{
    margin: 10px 0;
}
.splash-screen-container img {
    width: 340px;
}

@media only screen and (max-width: 766px) {
    .splash-screen-container .center-splash {
        width: 80%;
        text-align: left;
    }
    .splash-screen-container img {
        width: 180px;
        height: initial;
        /*margin: 2%;*/
    }
    .center-splash .row .col-lg-6{margin: 0; padding: 0;}
    .splash-screen-container img.splash-anp{width: 80px;}
}


/*-------------LOGIN STUDENT PAGE------------*/

.student-login-section {
    background-image: url(../../images/LoginBG.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-login-container {
    display: flex;
    align-content: center;
    justify-content: center;
    position: relative;
}

.student-login-image {
    position: absolute;
    top: -100px;
    left: -125px;
    width: 200px;
    height: 480px;
}

.student-login-form-container {
    width: 380px;
    height: auto;
    padding: 30px 50px;
    background-color: #000;
    opacity: 0.68;
    text-align: center;
}

.student-login-form-container h2 {
    margin-bottom: 10px;
}

.student-login-form {
    text-align: center;
}
.student-login-form .forgetmenot{
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 13px;
    color: #a1a1a1;
}

.login-user-section input {
    width: 284px;
    height: 43px;
    border: 1px solid #fff;
    color: #fff;    
    padding: 12px 8px;
    background-color: transparent;
    margin: 2px 0;
}
.student-login-form #rememberme{
    width: 15px;
    height: 15px;
    vertical-align: middle;
    border: 1px solid #fff;
    background-color: transparent;
}
.error{
    color: red;
    font-size: 13px;
}
.ap-otp-input{
  border: 1px solid #fff;
  border-radius:0;
  color: #fff;
  width:43px;
  height: 43px;
  margin: 4px;  
  padding: 12px 8px;
  background-color: transparent;
  text-align: center;
  font-size: 1em;
}


.ap-otp-input:focus{
  outline: none !important;
  border: 1px solid #d2a76e;
  transition: 0.12s ease-in;
}
.resend-otp{
  margin-top:6px;
  cursor:pointer;
  font-size: 0.8em;
  color: red;
}
.student-login-message {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.13px;
    color: #a1a1a1;
    margin-top: 10px;
    margin-bottom: 0px;
    text-align: center;
}

.student-login-submit {
    margin-top: 25px;
    border: 1px solid #780207;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: #fff;
}
.student-login-submit i{
  font-size: 2em;
  color:#a1a1a1 ;
}

.student-login-submit:hover {
    background-color: #fff;
    border: 1px solid #780207;
}

@media only screen and (max-width: 481px) {
    .student-login-form-container {
        width: 100%;
        height: 100%;
        padding: 30px 30px;
        background-color: #000;
        opacity: 68%;
        text-align: center;
        margin: 20px;
    }
    .student-login-form input {
        width: 100%;
        height: 43px;
        border: 1px solid #fff;
        padding: 12px 8px;
        background-color: transparent;
    }
}


/*------PALTAS for Various Ragas----*/

.paltas-ragas {
    padding: 120px 0px 50px 0;
}

.palta-wrapper {
    padding: 50px 0px;
    text-align: center;
}

.palta-image-wrapper {
    width: 450px;
    height: 450px;
    border: 4px solid #d2a76e;
    position: relative;
}

.palta-image-inner-wrapper {
    position: absolute;
    left: -45px;
    top: 30px;
    width: 100%;
    height: 100%;
    border: 6px solid #780207;
}

.palta-image-inner-wrapper-left {
    position: absolute;
    left: 45px;
    top: 30px;
    width: 100%;
    height: 100%;
    border: 6px solid #780207;
}
@media only screen and (max-width: 481px) {
    
    .palta-image-wrapper {
        width: 90%;
        height: 350px;
    }
    .palta-column{margin-bottom: 35px;}
    .palta-image-inner-wrapper {
        position: absolute;
        left: 0px;
        top: 30px;
        width: 100%;
        height: 100%;
        border: 6px solid #780207;
    }
    .palta-image-inner-wrapper-left {
        position: absolute;
        left: 0;
        top: 30px;
        width: 100%;
        height: 100%;
        border: 6px solid #780207;
    }
}
/*.palta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    overflow: hidden;
}
*/
.palta-column {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.palta-heading {
    margin-bottom: 40px;
}

.palta-wrapper .jp-track-name {
    text-align: left;
}

.palta-wrapper .jplayer {
    margin-bottom: 30px;
}


/*-------52 Ragas------*/

.ragas-wrapper {
    padding: 0 0 100px 0px;    
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}
.ragas-audio-container{
    margin: 0 -5%;
}
.ragas-heading {
    text-align: center;
    margin-bottom: 30px;
}

.ragas-content {
    /* height: 600px; */
    margin-bottom: 30px;
    flex-flow: wrap;
}

.ragas-content .jplayer {
    width: 50% !important;
}

.ragas-load-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
	margin-top:20px;
}

.load-more-ragas {
    padding:10px 15px;
    background-color: #780207;
    color: #fff;
    text-transform: uppercase;
}

.load-more-ragas:hover {   
    background-color: #3c0205;
    color: #ffffff;    
    box-shadow: 0 1px 0px #3c3c3c;
}
.ragas-list {
    display: grid;
    grid-template-columns: 50% 50%;
}
.ragas-list li:nth-child(odd){
    margin-right:5% ;
}
.ragas-list li:nth-child(even){
    margin-left:5% ;
}
@media (max-width: 767px) {
    .ragas-list {
        grid-template-columns: 100%
    }
    .ragas-list li:nth-child(odd){
        margin-right:0 ;
    }
    .ragas-list li:nth-child(even){
        margin-left:0 ;
    }
}
.ragas-list .moreBox {margin: 0!important;}
/*----------MUSIC ALLIED ARTICLES, MUSIC ALLIED BOOKS and MUSIC ALLIED PRESENTATION-------*/
.article-grid, .presentation-3grid, .books-3grid, .images-3grid {
    padding: 3% 0;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}
.presentation_grid, .books_grid, .images_grid  {
    width: 100%;
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
}


@media (max-width: 991px) {
    .article_grid, .presentation_grid, .books_grid, .images_grid  {
        grid-template-columns: 50% 50%
    }
}

@media (max-width: 767px) {
    .article_grid, .presentation_grid, .books_grid, .images_grid {
        grid-template-columns: 100%
    }
}
.article__item{
    position: relative;
    margin:50px 0;
    display: block;
    height: auto!important;
}
.Articles-slider .article__item{
    margin:10px;
}
.article__item p{
    white-space: pre-line;
}
.ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
.block-ellipsis {
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 135px;
    margin: 10px auto;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.presentation__item, .books__item, .images__item {
    position: relative;
    margin: 10px;
    display: block;
    height: auto!important;
}

.presentation__item img, .books__item img, .images__item img{
    width: 100%;
    object-fit: cover;
    object-position: top;
    overflow: hidden;
}

.music-allied-article-text-container, .music-allied-presentation-text-container {
    text-align: center;
    padding: 10px;
}
.music-allied-article-text-container p, .music-allied-presentation-text-container p{
    padding: 0; 
    margin: 0;
}

.music-allied-article-read-more a {
    font-weight: 300;
    color: #fff;
}
.music-allied-article-read-more a:hover {
    font-weight: 300;
    color: #d2a76e;
}
.book-contain{
    width:100%;
    padding:15px 0;
    text-align: center;
}
.book-contain h3{
    color:#fff;
}

.books__item .load-more-ragas{
    margin-top: 15px;
}
/* slick Arrows */
.grid-slider .slick-prev,
.grid-slider .slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background:transparent;
}
.grid-slider .slick-prev:hover,
.grid-slider .slick-prev:focus,
.grid-slider .slick-next:hover,
.grid-slider .slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.grid-slider .slick-prev:hover:before,
.grid-slider .slick-prev:focus:before,
.grid-slider .slick-next:hover:before,
.grid-slider .slick-next:focus:before
{
    opacity: 1;
}
.grid-slider .slick-prev.slick-disabled:before,
.grid-slider .slick-next.slick-disabled:before
{
    opacity: .25;
}

.grid-slider .slick-prev:before,
.grid-slider .slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.grid-slider .slick-prev
{
    left: -25px;
}
.grid-slider [dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.grid-slider .slick-prev:before
{
    content: '❮';
}
.grid-slider [dir='rtl'] .slick-prev:before
{
    content: '❯';
}

.grid-slider .slick-next
{
    right: -25px;
}
.grid-slider [dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.grid-slider .slick-next:before
{
    content: '❯';
}
.grid-slider [dir='rtl'] .slick-next:before
{
    content: '❮';
}

/*slick Dots */
.grid-slider .slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.grid-slider .slick-dots
{
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.grid-slider .slick-dots li
{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.grid-slider .slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.grid-slider .slick-dots li button:hover,
.grid-slider .slick-dots li button:focus
{
    outline: none;
}
.grid-slider .slick-dots li button:hover:before,
.grid-slider .slick-dots li button:focus:before
{
    opacity: 1;
}
.grid-slider .slick-dots li button:before
{
    font-family: 'slick';
    font-size:35px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.grid-slider .slick-dots li.slick-active button:before
{
    opacity: .75;
    color: white;
}
@media (max-width: 767px) {
	.grid-slider .slick-next{right: -15px;}
	.grid-slider .slick-prev{ left: -15px;}
}

/* Bandish Parampara Section */

.music-social {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
   /* background-image: url(../../images/Social-Patch.jpg);*/
    padding: 3% 0 50px 0;
    background-attachment: fixed;
}

.music-social .music-container {
    max-width: 500px;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .music-social .music-container {
        grid-template-columns: 50% 50%;
    }
}

.mubutton-items {
    max-width: 100%;
    padding: 5px;
    text-align: center;
}
.mubutton-items img{
    max-height: 25px;
}
.mubutton-items a{
    display: inline-block;
    border-radius: 5px;    
    padding:5px 10px;
}
.music-icon {    
    background: #ff0000;
}
.spotify-icon {
    background: #1ed760;
}
.jio-icon {
    background: #2bc5b4;
}
.wynk-icon {
    background: #fa3235;
}
.mubutton-items a:hover{
    background: #333;
}


.articles-text p {
    white-space: pre-line;
}

.image-full-articles{
    width: 100%;
    position: relative;
    height: 40vh;
    margin-bottom: 30px;
}
.image-full-articles img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.image-full-articles .article-title{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.search-grid {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;}
.search-grid article{padding: 15px  0;   margin-bottom: 15px; border-bottom: 1px solid #a1a1a1;}
.search-grid article .entry-header{display: flex; flex-direction: row;}
.search-grid article .entry-header .entry-title{order: 2;    align-self: center;}
.search-grid article a{color: #d2a76e;}
.search-grid article h2 a{color: #d2a76e;}
.search-grid article .post-thumbnail {align-self: center; margin: 0 15px 0 0!important;}
.search-grid article .post-thumbnail .post-thumbnail-inner img { width: 50px !important;    height: 50px!important;   border-radius: 50%;}

.error-section{ text-align: center;}
.error-section img{width: 50%; max-width: 350px;}
@media (max-width: 991px) {
.title-section h2 { font-size: 2rem;}
.about_item_text h2, .about_main_text h2 { font-size: 2rem;}
.inner-main {  padding-top: 60px;}
.breadcrumbs-main.breadcrumbs-sticky {top: 60px;}
.breadcrumbs {margin: 0 0 auto;}
.header-area {top: 0px;}
.track__content {  padding: 0;}
.cd-cover::after {top: 20px; left: 0; width:100%;}