/* ------------------------------------------------------------------------------ 
Project Name : Madras Flying Club 
Description : Theme Style Sheet 
Author : Imran Rovan 
Created On : 20 April 2024 
--------------------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');

@font-face {
    font-display: swap;
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ExtraBold.eot');
    src: url('../fonts/Gilroy-ExtraBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Gilroy-ExtraBold.woff') format('woff'), url('../fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold') format('svg');
    font-weight: 700;
    font-style: normal;
}

 *, *:before, *:after {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}
 html, body, p, a, ul, li, span, div {
     margin: 0;
     padding: 0;
     text-rendering: optimizeLegibility;
     -webkit-font-smoothing: antialiased;
}
 ul, ol, li table {
     margin: 0;
     padding: 0;
}
 h1, h2, h4, h5, h6 {
     margin: 0;
     font-weight: 700;
     font-family: 'Gilroy', sans-serif;
}
 h2 {
     font-size: 45px;
     line-height: 45px;
     margin-bottom: 25px;
}
 h4 {
     font-size: 30px;
     line-height: 35px;
     margin-bottom: 20px;
}
 h3 {
     font-size: 16px;
     line-height: 20px;
     color: #094c8c;
     position: relative;
     font-weight: 300px;
     margin-bottom: 20px;
     display: inline-block;
}
 h3::before {
     content: '';
     position: absolute;
     top: 10px;
     right: -80px;
     width: 70px;
     height: 1px;
     background-color: #bbb;
}
 img {
     display: block;
     outline: none;
     max-width: 100%;
}
 img, input, textarea, button, select {
     border: 0;
     outline: 0 !important;
     resize: none;
}
 a, a:hover, a:focus {
     text-decoration: none;
     -moz-transition: all .300s ease-in-out;
     -webkit-transition: all .300s ease-in-out;
     transition: all .300s ease-in-out;
}
/* Layout */
 body {
     color: #222;
     font-weight: 400;
     font-family: 'Sora', sans-serif;
     font-size: 16px;
     margin: 0;
     padding: 0;
}
 p {
     font-size: 16px;
     line-height: 26px;
     font-weight: 400;
     color: #222;
     margin-bottom: 15px;
}
#page > header {
     padding: 0;
     background-color: #fff;
     position: fixed;
     top: 0px;
     left: 0;
     width: 100%;
     z-index: 99;
     -moz-transition: all .500s ease-in-out;
     -webkit-transition: all .500s ease-in-out;
     transition: all .500s ease-in-out;
}
#page > header .container {
     display: flex;
     align-items: center;
     justify-content: space-between;
     position: relative;
     z-index: 9;
}
 header .logo img {
     height: 55px;
}
 header nav {
     height: 80px;
     display: flex;
     align-items: center;
     position: relative;
}

 header nav > ul {
     list-style: none;
     display: flex;
     align-items: center;
     position: relative;
     padding-left: 30px;
}
 header nav > ul > li {
     margin-right: 20px;
     position: relative;
}
 header nav > ul > li a {
    font-size: 15px;
    font-weight: 500;
    font-weight: normal;
    color: #666;
    position: relative;
}
header nav > ul > li a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -11px;
    height: 2px;
    width: 0;
    border-radius: 10px;
    background-color: #2c3098;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
header nav > ul > li a.active {
    background: -webkit-linear-gradient(45deg, #008fef, #2c3098 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
header nav > ul > li a.active::before {
    content: '';
    width: 22px;
    height: 2px;
    background-color: #3f04b6;
    border-radius: 5px;
}
header nav > ul > li:nth-last-child(2) a  {
    margin: 0;
    padding: 15px 20px;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.08);
    background-image: linear-gradient(120deg, #008fef 0%, #2c3098 80%);
}
header nav > ul > li:last-child a  {
    margin: 0;
    padding: 15px 20px;
    color: #2c3098;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.08);
    border:2px solid #2c3098;
}
header nav > ul > li:last-child {
    margin-right: 0;
}
 header.header-fixed {
    box-shadow: 0 8px 20px 0 rgb(0 0 0 / 10%);
}
header nav > ul > li > ul {
    position: absolute;
    top: 0;
    left: 0;
    list-style: none;
    padding-top: 45px;
    margin-left: -10px;
    display: none;
    width: 200px;
}

header nav > ul > li > ul li {
    background: #fff;
    padding: 10px 18px;
    white-space: nowrap;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
    -moz-transition: all .300s ease-in-out;
     -webkit-transition: all .300s ease-in-out;
     transition: all .300s ease-in-out;
}
header nav > ul > li > ul li:hover {
    background-color: #eee;
    padding-left: 25px;
}
header nav > ul > li a i {
    margin-left: 3px;
    font-size: 11px;
}
header nav > ul > li:hover > ul {
    display: block;
}
 #burgernav {
     display: none;
}
 .marqueefy {
     background-color: transparent;
     width: 100%;
     padding: 0;
     height: 50px;
     line-height: 50px;
}
 .marqueefy .content .item {
     font-weight: 500;
}
 .hero-slider {
     background-color: #094c8c;
     padding-top: 90px;
     height: 650px;
     display: flex;
     align-items: center;
     justify-content: space-between;
}
 .hero-slider .container {
     display: flex;
     align-items: center;
     justify-content: space-between;
     position: relative;
     z-index: 9;
}
 .hero-slider .dtls {
     width: 45%;
}
 .hero-slider .dtls h2 {
     color: #fff;
     line-height: 55px;
     margin-bottom: 20px;
}
 .hero-slider .dtls p {
     font-size: 16px;
     line-height: 26px;
     color: #fff;
     margin-bottom: 30px;
}
 .hero-slider .img img {
     height: 500px 
}
 .btn-primary {
     background-color: #2c3098;
     border: 2px solid #2c3098;
     padding: 14px 25px;
     display: inline-block;
     color: #fff;
     font-weight: 500;
     border-radius: 5px;
}
 .btn-secondary {
     background-color: transparent;
     border: 2px solid #0387e8;
     padding: 14px 25px;
     display: inline-block;
     color: #0387e8;
     font-weight: 500;
     border-radius: 5px;
}
 .btn-dark {
     background-color: transparent;
     border: 2px solid #333;
     padding: 14px 25px;
     display: inline-block;
     color: #333;
     font-weight: 500;
     border-radius: 5px;
}
 .btn-primary i, .btn-secondary i, .btn-dark i {
     margin-left: 35px;
}
 .btn-primary:hover, .btn-secondary:hover, .btn-dark:hover {
     box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
 .gap15 {
     gap: 15px;
}
 .gap10 {
     gap: 10px;
}
 .announcement {
     width: 100%;
     background-color: #5dbbff;
     height: 50px;
}
 .hme-section {
     padding: 80px 0;
}
 .bg-abt-hme img {
     margin-left: -50px 
}
 .stats {
     list-style: none;
     display: flex;
     align-items: center;
     gap: 20px;
     margin-top: 25px;
}
 .stats li {
     width: 33%;
     border-right: 1px solid #ccc;
}
 .stats li:last-child {
     border-right: none;
}
 .stats li h6 {
     font-size: 35px;
     color: #222;
     margin-bottom: 5px;
}
 .stats li p {
     color: #666;
     margin-bottom: 0px;
}
 .why-card {
     border: 1px solid #fed732;
     padding: 15px;
     border-radius: 50px 0 50px 0;
     height: 100%;
}
 .why-card img {
     height: 90px 
}
 .why-card h6 {
     font-size: 22px;
     color: #222;
     margin-bottom: 15px;
}
 .hme-nextcourse {
     background-color: #6039a1;
     padding: 40px 0;
     color: #fff;
     position: relative;
     border-radius: 0 0 100px 100px;
}
 .hme-nextcourse::before {
     content: '';
     width: 100%;
     height: 100%;
     background-color: #eee;
     position: absolute;
     top: 0;
     left: 0;
     z-index: -1;
}
 .hme-nextcourse .col-md-6 {
     position: relative;
     z-index: 9;
}
 .hme-nextcourse p {
     color: #fff;
}
 .hme-nextcourse ul {
     list-style: none;
     margin-bottom: 25px;
     display: inline-block;
}
 .hme-nextcourse ul li {
     margin-bottom: 10px;
     padding-bottom: 10px;
     border-bottom: 1px solid rgba(255,255,255,0.2);
}
 .hme-nextcourse > img {
     position: absolute;
     top: 0;
     right: 0;
     height: calc(100% + 50px);
     margin-top: -50px;
     border-radius: 0 0 0 100px;
}
 .hme-about ul {
     margin: 25px 25% 0 0;
     list-style: none;
}
 .hme-about ul li {
     margin-bottom: 15px;
     padding-bottom: 15px;
     border-bottom: 1px solid rgba(0,0,0,0.2);
}
 .hme-about ul li a {
     color: #222;
     display: flex;
     align-items: center;
     justify-content: space-between;
}
 .hme-about ul li a i {
     color: #666;
}
 .hme-blog {
     padding: 40px 0;
}
 .hme-blog .social {
     display: flex;
     align-items: center;
     gap: 15px;
}
 .hme-blog .social a {
     width: 50px;
     height: 50px;
     background-color: #fff;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 0 10px rgba(0,0,0,0.20);
}
 .hme-blog .social a img {
     max-height: 24px;
}
 .hme-about {
     background: #eee;
}
.hme-blog {
    background: #fff;
}
.blog-list .col-md-3 a img {
    width: 100%;
    height: 140px;
}
 .blog-list span {
     font-size: 13px;
     display: block;
     color: #666;
     margin-top: 10px;
     margin-bottom: 5px;
     text-transform: capitalize;
}
 .blog-list p a {
     font-size: 15px;
     line-height: 22px;
     color: #222;
     display: block;
}
.home-contactul h4 {
    font-size: 24px;
    line-height: 25px;
    margin-bottom: 15px;
}
.home-contactul h4 span {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
}
.home-contactul li {
    border: none;
    display: flex;
    gap: 20px;
}
.home-contactul li .dtls span {
    color: #343f52;
    font-size: 16px;
    font-weight: 700;
}
.home-contactul li .img {
    color: #2c3098;
    font-size: 22px;
}
.home-contactul li .dtls h6 {
    font-weight: 400;
    font-family: 'Sora', sans-serif;
    line-height: 25px;
}
.footer-admin {
    position: relative;
    display: block;
    background: #a79132 url(../images/bg-footer.png) no-repeat top left;
    background-size: cover;
    padding: 50px 0 50px;
    z-index: 1;
    margin-bottom: 40px;
}
.footer-admin h6 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

footer.s-footer {
    height: auto;
    position: relative;
    padding: 0 0 25px 0;
    background-color: #12132e;
}

footer .first-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .first-row .flogo img {
    height: 80px;
    width: auto;
    margin: auto;
}

footer .first-row label {
    color: #31b0e1;
    font-size: 15px;
    margin-bottom: 8px;
}

footer .first-row h6 {
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    margin: 0px;
    font-weight: 500;
    line-height: 24px;
}
footer ul {
    list-style: none;
    margin: 0;
}
footer .first-row h6 span {
    display: block;
}

footer .second-row {
    padding: 30px 0;
    margin: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

footer .second-row li {
    margin-bottom: 8px;
}

footer .second-row li a, footer .second-row li span, footer .second-row li p {
    color: #fff;
    font-size: 15px;
}

footer .second-row li span {
    color: #31b0e1;
    display: block;
    margin-bottom: 8px;
}

footer .second-row li.social-link span {
    margin-top: 20px;
}

footer .second-row li.social-link a {
    font-size: 20px;
    color: #fff;
    margin-right: 20px;
}

footer .second-row>ul>li>a:hover {
    color: #31b0e1;
}

footer .third-row {
    text-align: center;
    color: #fff;
}
 /* footer {
     background-color: #12132e;
}
 footer .topfoot {
     padding: 15px 0;
     border-bottom: 1px solid rgba(255,255,255,0.1);
}
 footer .topfoot .social a {
     border: 1px solid rgba(255,255,255,0.1);
     width: 35px;
     height: 35px;
     border-radius: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 15px;
     color: #aaa;
}
 footer .topfoot .social a:hover {
     border: 1px solid #2c3098;
     background-color: #2c3098;
     color: #222;
}
 footer .topfoot .topscroll a {
     font-size: 15px;
     color: #ccc 
}
 footer .topfoot .topscroll a i {
     font-size: 10px;
     margin-left: 5px;
}
 footer .btmfoot {
     padding: 20px 0;
}
 footer .btmfoot img {
     height: 80px;
     margin-bottom: 25px;
}
 footer .btmfoot p {
     font-size: 14px;
     color: #fff;
     margin-bottom: 5px;
}
 footer .btmfoot .left p a {
     color: #fff;
} */
.hme-whyus {
    position: relative;
    background: #f8f7f1 url(../images/bg-benefit.png) left bottom; 
    z-index: 1;
    background-repeat: no-repeat;
    background-blend-mode: luminosity;
}
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.benefits-one__single {
    position: relative;
    display: flex;
    align-items: center;
    width: calc(50% - 15px);
    justify-content: space-between;
    padding: 20px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.04);
    margin-bottom: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}
.benefits-one__single:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
    border-radius: 15px;
	background-color: #2c3098;
	transform: scaleX(0.7) rotateX(20deg);
	opacity: 0;
	transition: all 0.4s linear;
	z-index: -1;
}
.benefits-one__single:hover:before {
	transform: scaleX(1) rotateX(0deg);
	transition: all 0.4s linear;
	opacity: 1;
}
.benefits-one__content {
	position: relative;
	/* display: flex;
	align-items: center; */
}
.benefits-one__icon {
	position: relative;
	display: inline-block;
	margin-right: 18px;
	top: 5px;
}
.benefits-one__icon img {
	height:45px;
    margin-bottom: 10px;
}
.benefits-one__single:hover .benefits-one__icon img {
    filter: brightness(100);
}
.benefits-one__title {
	position: relative;
	display: block;
}
.benefits-one__title h6 {
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
}
.benefits-one__title a {
	color: #2c3098;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.benefits-one__single:hover .benefits-one__title h6 {
	color: #fff;
}
.benefits-one__arrow {
	position: relative;
	display: block;
}
.benefits-one__arrow a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #ccc;
	border-radius: 50%;
	font-size: 14px;
	color: #fff;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.benefits-one__single:hover .benefits-one__arrow a {
	color: #fff;
	background-color: #123821;
}

/* Inner pages */
 .inner-ban {
     background: #094c8c url(../images/innerban.jpg) top center fixed;
     background-size: cover;
     padding-top: 90px;
     height: 300px;
     display: flex;
     align-items: center;
     justify-content: space-between;
}
 .inner-ban h2 {
     color: #fff;
     font-size: 45px;
     margin-bottom: 10px;
}
 .inner-ban p {
     font-size: 16px;
     line-height: 26px;
     color: #fff;
     margin-bottom: 30px;
}
 .coursedtls {
     background-color: #f1f1f1;
     padding: 40px 0;
}
 .coursedtls .col-md-4 {
     margin-bottom: 30px;
}
 .coursedtls .col-md-4 .why-card {
     background-color: #fff;
     border-radius: 8px;
}
 .visionblk {
     background-color: #eee;
     padding: 0px 0;
     margin-top: 40px;
}
 .visionblk h4 span {
     margin-bottom: 10px;
}
 .visionblk p {
     font-weight: 400;
}
 .pl-50 {
     padding-left: 50px;
}
 .visionblk h4 {
     margin-bottom: 10px;
}
 .visionblk h4 span {
     position: relative;
     font-size: 22px;
     color: #094c8c;
     font-weight: 500;
     display: inline-block;
     margin-bottom: -10px;
}
 .visionblk h4 span::after {
     content: "";
     width: 80px;
     height: 2px;
     background: #094c8c;
     position: absolute;
     top: 50%;
     right: -15px;
     transform: translate(100%, -50%);
}
 .values {
     background-color: #094c8c;
     padding: 40px 0;
}
 .values {
     color: #fff;
}
 .values p {
     color: #ccc;
}
 #accordValues, #accordValues .accordion-item, #accordValues .accordion-button {
     background: #094c8c;
     border: none;
     outline: none;
     box-shadow: none;
     padding: 0;
     border-radius: 0;
}
 #accordValues .accordion-item {
     border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
 #accordValues .accordion-button {
     padding: 15px 0;
     color: #fff;
     font-family: 'Sora', sans-serif;
     font-size: 20px;
     font-weight: 400;
}
 .accordion-button::after {
     color: #fff;
     filter: invert(1);
}
 .accordion-body {
     position: relative;
     font-size: 18x;
     color: #fff;
     font-weight: 300;
     margin-bottom: 20px;
     padding: 0 0 20px 0;
     margin: 0;
}
 .deskul li {
     margin-bottom: 35px;
     display: flex;
     justify-content: flex-start;
     align-items: center;
}
 .deskul li .img {
     margin-right: 15px;
     width: 55px;
     height: 55px;
     border-radius: 50%;
     background-color: #094c8c;
     color: #fff;
     font-size: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .deskul li span {
     color: #666;
     width: 100%;
     font-size: 17px;
     font-weight: 400;
     margin-bottom: 5px;
     display: block;
}
 .deskul li h6 {
     color: #094c8c;
     width: 100%;
     font-size: 16px;
     display: block;
     font-weight: 500;
     margin-bottom: 0px;
     font-family: 'Sora', sans-serif;
}
 .deskul li h6 a {
     color: #094c8c;
     font-size: 16px;
     display: inline-block;
     font-weight: 600;
     margin-bottom: 0px;
}
 .formcontact input {
     width: 100%;
     padding-left: 20px !important;
     padding-right: 20px !important;
     padding-top: 16px;
     padding-bottom: 16px;
     margin-bottom: 20px;
     border: 1px solid #B6B7CC;
     border-radius: 5px;
     font-size: 14px;
     line-height: 1em;
     font-weight: 500;
     background-color: #fff;
     resize: none;
}
 .formcontact textarea {
     width: 100%;
     padding-left: 20px !important;
     padding-right: 20px !important;
     padding-top: 16px;
     padding-bottom: 16px;
     margin-bottom: 20px;
     border: 1px solid #B6B7CC;
     border-radius: 5px;
     font-size: 14px;
     line-height: 1em;
     font-weight: 500;
     height: 90px;
     resize: none;
}
 .form-md {
     width: 100%;
}
 .form-md .form-group {
     margin-bottom: 25px;
     position: relative;
}
 .form-md .form-group input, .form-md .form-group select, .form-md .form-group textarea {
     position: relative;
     display: block;
     width: 100%;
     border: 1px solid rgba(0,0,0,.37);
     border-radius: 4px;
     background-color: transparent;
     margin: 0px auto;
     padding: 0 10px;
     height: 55px;
     outline: none !important;
     font-size: 16px;
     color: rgba(0,0,0,0.85);
     transition: all .2s ease-in-out;
     box-shadow: none;
}
 .form-md .form-group select {
     background: url(../images/icons/down.png) no-repeat center right 10px;
     background-size: auto 14px;
}
 .form-md .form-group textarea {
     height: 120px;
     padding-top: 15px;
}
 .form-md .form-group label {
     position: absolute;
     top: 20px;
     left: 12px;
     text-align: left;
     display: inline-block;
     padding: 0 8px;
     height: 14px;
     line-height: 14px;
     font-size: 14px;
     font-weight: 400;
     background: #fff;
     color: rgba(0,0,0,0.8);
     margin: 0px auto;
     cursor: text;
     transition: all .15s ease-in-out;
}
 .form-md .form-group input[type="file"] {
     line-height: 55px;
}
 .form-md .form-group input:hover, .form-md .form-group input:focus, .form-md .form-group textarea:hover, .form-md .form-group textarea:focus, .form-md .form-group select:hover, .form-md .form-group select:focus {
     border: 1px solid #000;
     box-shadow: none;
}
 .form-md .form-group input:valid + label, .form-md .form-group input:focus + label, .form-md .form-group textarea:valid + label, .form-md .form-group textarea:focus + label, .form-md .form-group select:valid + label, .form-md .form-group select:focus + label, .form-md .form-group label.active-label {
     top: -6px;
     color: #000;
     font-weight: bold;
}
 .form-md .form-group .gl-form-asterisk {
     background-color: inherit;
     color: #fd5555;
     padding: 0;
     padding-left: 3px;
}
 .form-md .form-group .gl-form-asterisk:after {
     content: "*";
}
 .btn-group {
     display: flex;
     align-items: center;
     justify-content: flex-start;
     gap: 5px;
}
 .bch-radio {
     position: relative;
     display: block;
}
 .bch-checkbox input, .bch-radio input {
     position: absolute;
     top: 0;
     z-index: 9;
     width: 18px;
     height: 18px;
     opacity: 0.01;
     cursor: pointer;
}
 .bch-checkbox > label, .bch-radio > label {
     min-height: 18px;
     padding-right: 16px;
     margin-bottom: 0;
     font-weight: normal;
     cursor: pointer;
     -webkit-transition: all 400ms;
     -moz-transition: all 400ms;
     -ms-transition: all 400ms;
     -o-transition: all 400ms;
     transition: all 400ms;
}
 .bch-checkbox > label, .bch-radio > label {
     display: flex;
     align-items: center;
     justify-content: flex-start;
     position: relative;
}
 .bch-radio > label {
     border-radius: 50%;
     border-color: #aaa;
}
 .bch-radio input[type=radio]:checked + label::after, .bch-radio input[type=radio] + label::before {
     -moz-box-sizing: border-box;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     position: absolute;
     display: table;
     content: "";
}
 .bch-radio input[type=radio] + label::before {
     content: "";
     width: 18px;
     height: 18px;
     white-space: nowrap;
     text-indent: 10px;
     cursor: pointer;
     border: 2px solid #666;
     border-radius: 2px;
     border-radius: 50%;
}
 .bch-radio > label span {
     margin-left: 25px;
     font-weight: 400;
}
 .bch-radio input[type=radio]:checked + label::before {
     background-color: #fff;
     border-color: #405189;
}
 .bch-radio input[type=radio]:checked + label::after {
     left: 4px;
     width: 10px;
     height: 10px;
     background: #405189;
     border-radius: 50px;
}
 .paydtls {
     width: 100%;
     padding: 20px;
     background-color: #eee;
     border: 1px solid #ccc;
     border-radius: 15px;
     margin-top: 15px;
     margin-bottom: 25px;
}
 .packagedls .coursecard {
     box-shadow: none;
     border: 2px solid #ccc;
}
 .packagedls .col-md-4, .packagedls .col-md-12 {
     position: relative;
}
 .packagedls .col-md-4 .radio,.packagedls .col-md-12 .radio {
     position: absolute;
     width: 100%;
     height: 90%;
     z-index: 9;
     opacity: 0;
     cursor: pointer;
}
 .packagedls .col-md-4 .radio:checked + .coursecard, .packagedls .col-md-12 .radio:checked + .coursecard {
     border: 2px solid #094c8c;
}
 .packagedls .col-md-4 .radio + .coursecard, .packagedls .col-md-12 .radio + .coursecard {
     padding-top: 30px;
}
 .packagedls .col-md-4 .radio + .coursecard::before, .packagedls .col-md-12 .radio + .coursecard::before {
     content: '';
     width: 25px;
     height: 25px;
     border: 2px solid #ccc;
     border-radius: 50px;
     position: absolute;
     top: 10px;
     right: 15px;
}
 .packagedls .col-md-4 .radio + .coursecard::after, .packagedls .col-md-12 .radio + .coursecard::after {
     content: '';
     width: 15px;
     height: 15px;
     background-color: #fff;
     border-radius: 50px;
     position: absolute;
     top: 15px;
     right: 20px;
}
 .packagedls .col-md-4 .radio:checked + .coursecard::before, .packagedls .col-md-12 .radio:checked + .coursecard::before {
     border: 2px solid #094c8c;
}
 .packagedls .col-md-4 .radio:checked + .coursecard::after, .packagedls .col-md-12 .radio:checked + .coursecard::after {
     background-color: #094c8c;
}
 .txt-center {
     text-align: center;
}
 .paydtls img {
     max-width: 200px;
     margin: 10px auto 5px auto;
     border-radius: 8px;
}
 .bankdtls p {
     margin-bottom: 5px;
     font-size: 14px;
}
 .bankdtls p.note {
     font-size: 14px;
}
 .paydtls .row .col-md-12:first-child {
     border-right: 1px solid #ccc;
     padding-right: 50px;
}
 .bankdtls .listdtls {
     margin-top: 15px;
     border-top: 1px solid #ccc;
     padding-top: 15px;
}
 .copy-text {
     position: relative;
     padding: 5px 10px;
     background: #fff;
     border: 1px solid #ddd;
     border-radius: 10px;
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .copy-text input.text {
     padding: 0px;
     font-size: 17px;
     font-weight: 500;
     color: #222;
     border: none;
     outline: none;
}
 .copy-text #copytxt {
     padding: 7px;
     background: rgb(9, 76, 140);
     color: rgb(255, 255, 255);
     font-size: 15px;
     border: none;
     outline: none;
     border-radius: 5px;
     cursor: pointer;
     width: 35px;
     height: 35px;
}
 .copy-text #copytxt:active {
     background: #094c8c;
}
 .copy-text #copytxt:before {
     content: "Copied";
     position: absolute;
     top: -45px;
     right: 0px;
     background: #094c8c;
     padding: 8px 10px;
     border-radius: 20px;
     font-size: 12px;
     display: none;
}
 .copy-text #copytxt:after {
     content: "";
     position: absolute;
     top: -20px;
     right: 25px;
     width: 10px;
     height: 10px;
     background: #094c8c;
     transform: rotate(45deg);
     display: none;
}
 .copy-text.active #copytxt:before, .copy-text.active #copytxt:after {
     display: block;
}
 .registerwrap {
     background: linear-gradient(310deg,#ecd1c9b5,rgb(255 214 202 / 28%));
     border-radius: 15px;
     padding: 20px;
     width: 100%;
}
 .bg-white input {
     background-color: #fff;
}
 #uploadCard {
     display: block;
}
 .coursecard {
     box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
     border-radius: 10px;
     background: #fff;
     position: relative;
     height: 100%;
     transition: 0.4s;
     margin-bottom: 30px;
}
 .coursecard .img img {
     padding: 0px;
     border-radius: 10px;
}
 .coursecard .dtls {
     padding: 10px 20px;
}
 .coursecard .dtls h4 {
     font-size: 20px;
     line-height: 26px;
     margin: 0 0 10px 0;
}
 .coursecard .dtls .videodtls > span {
     font-size: 13px;
     line-height: 16px;
     display: inline-block;
     margin: 0 10px 0 0;
     color: #666;
     position: relative;
}
 .coursecard .dtls .videodtls > span:first-child {
     /* border-right: 1px solid #aaa; */
     padding-right: 6px;
}
 .coursecard .dtls .videodtls > span:last-child {
     margin-left: auto;
     margin-right: 0px;
}
 .coursecard .dtls .videodtls span a {
     color: #094c8c;
}
 .coursecard .dtls .videodtls span a i {
     font-size: 16px;
}
 .coursecard .dtls ul {
     margin-left: 15px;
     font-size: 14px;
     margin-top: 6px;
}
 .videodtls p.videotooltip {
     position: absolute;
     bottom: 6px;
     right: -10px;
     width: 250px;
     background: rgba(0,0,0,0.9);
     border-radius: 10px;
     color: #fff;
     padding: 15px;
     display: none;
}
 .btn-tooltipvid:hover + p.videotooltip {
     display: block;
}
 .coursecard .dtls .videodtls span p.videotooltip span {
     display: block;
     color: #fff;
     font-size: 13px;
     line-height: 18px;
     margin: 0;
}
 .course-price .rbt-price {
     padding-bottom: 10px;
     margin-bottom: 10px;
     border-bottom: 1px solid #ccc;
}
 .course-price .off-price, .course-price .current-price {
     font-size: 15px;
     font-weight: 500;
     margin-right: 5px;
     display: block;
     opacity: 0.7;
}
 a.rbt-btn-link {
     color: #192335;
     position: relative;
     transition: 0.3s;
     font-size: 14px;
     font-weight: 500;
     display: inline-block;
}
 a.rbt-btn-link i {
     position: relative;
     top: 1px;
     display: inline-block;
     padding-left: 4px;
     color: #192335;
}
 a.rbt-btn-link::after {
     position: absolute;
     content: "";
     left: auto;
     bottom: 0;
     background: currentColor;
     width: 0;
     height: 2px;
     transition: 0.3s;
     right: 0;
}
 a.rbt-btn-link:hover::after {
     width: 100%;
     left: 0;
     right: auto;
}
 .sociallogin {
     padding-top: 20px;
     margin-top: 20px;
     border-top: 1px solid #bbb;
}
 .sociallogin button {
     position: relative;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: flex-start;
     gap: 20px;
     padding: 12px 20px;
     background-color: #fff;
     border: 1px solid #bbb;
     margin-bottom: 15px;
     border-radius: 8px;
}
 .sociallogin button:hover {
     background-color: #fff;
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
 .sociallogin button svg {
     width: 26px;
     height: 26px;
}
 #btn-signin, #btn-signup {
     background-color: #fff;
     color: #111;
     border-bottom: 1px solid #111;
     font-weight: 600;
     padding: 0;
     margin-left: 5px;
}
 .otp-input-fields {
     max-width: 100%;
     width: 100%;
     display: flex;
     justify-content: flex-start;
     gap: 10px;
     padding: 0px;
}
 .otp-input-fields input {
     height: 45px;
     width: 100%;
     background-color: transparent;
     border-radius: 4px;
     border: 1px solid rgba(0,0,0,.37);
     text-align: center;
     outline: none;
     font-size: 15px;
}
 .otp-input-fields input::-webkit-outer-spin-button, .otp-input-fields input::-webkit-inner-spin-button {
     -webkit-appearance: none;
     margin: 0;
}
 .otp-input-fields input[type=number] {
     -moz-appearance: textfield;
}
 .otp-input-fields input:focus {
     border-width: 2px;
     border-color: #287a1a;
     font-size: 20px;
}
 .form-group .show-password {
     position: absolute;
     top: 0;
     right: 0;
     width: 50px;
     height: 47px;
     z-index: 8;
     display: flex;
     justify-content: center;
     align-items: center;
}
 .form-group .show-password input[type="checkbox"] {
     position: absolute;
     top: 0;
     right: 0;
     width: 50px;
     height: 47px;
     z-index: 10;
     opacity: 0;
     cursor: pointer;
}
 .form-group .show-password label {
     background-color: transparent;
     color: #666!important;
     position: unset;
     height: 45px;
     width: 38px;
     top: inherit;
     right: 0;
     left: unset;
     transform: unset !important;
     line-height: 48px;
     border-radius: 10px;
     font-size: 16px !important;
}
 .form-group .show-password label .fa-eye::before {
     content: "\f070";
}
 .form-group .show-password input[type="checkbox"]:checked+label .fa-eye::before {
     content: "\f06e";
}
 button.btn-status {
     color: #155724;
     background-color: #d4edda;
     border-color: #c3e6cb;
     position: relative;
     padding: 0.75rem 1.25rem;
     margin-bottom: 0;
     border: 1px solid transparent;
     border-radius: 5px;
     cursor: default !important;
     user-select: none;
}
 .marqueefy .content .item {
     position: relative;
}
 .marqueefy .content .item:first-child::before, .marqueefy .content .item:nth-child(2)::before, .marqueefy .content .item:nth-child(3)::before {
     content: 'New';
     background: red;
     color: #fff;
     font-size: 10px;
     line-height: 12px;
     text-transform: uppercase;
     position: absolute;
     display: block;
     left: -25px;
     top: -6px;
     padding: 3px;
     border-radius: 3px;
     height: 15px;
}
/* Media Details Page */
div#main > .media-post {
    padding-top: 120px;
}
div#main > .media-post ul {
    margin-left: 25px;
}
#social_icon li a {
    color: #094c8c;
}
.gap10 {
    gap: 15px;
}
.facultywrap .facultycard {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    width: calc(33% - 15px);
}
.facultywrap .facultycard:hover {
    border: 1px solid #ccc;
    background-color: #eee;
}
.facultywrap .facultycard h6 {
    font-size: 22px;
    margin-bottom: 5px;
}
.facultywrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.videowrap .video {
    max-width: 950px;
    margin: auto;

    position: relative;
}

.video-js .vjs-big-play-button:before {
    color: #3f04b6;
    font-size: 38px;
}

.videowrap {
    position: relative;
}

.videowrap img.orange {
    position: absolute;
    bottom: -54px;
    left: -85px;
    z-index: 0;
}

.videowrap img.blue {
    position: absolute;
    top: 0px;
    right: -130px;
    z-index: 0;
    transform: rotate(90deg);
}

.shadow {
    width: 90%;
    height: 20px;
    margin: 0 auto;
    opacity: 0.2;
    border-radius: 13px;
    -webkit-filter: blur(14px);
    filter: blur(14px);
    background-color: #000;
}
.play-button {
    transition: .5s
}
.play-button svg {
    overflow: visible
}
.play-button .polygon {
    fill: #fff;
    transition: transform .5s, fill .5s;
    transition-timing-function: cubic-bezier(.7, .01, .37, 1);
    transform-origin: 50% 50%
}

#videoblk {
    position: relative;
    z-index: 9;
}
.youtube {
    background-color: #000;
    margin-bottom: 0px;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
}

.youtube img {
    width: 100%;
    top: 0%;
    left: 0;
    opacity: 0.8;
}

.youtube .play-button {
    width: 80px;
    height: 80px;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    border-radius: 50%;
    z-index: 1;
    opacity: 1;
}

.youtube img,
.youtube .play-button {
    cursor: pointer;
}

.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
    position: absolute;
}

.youtube .play-button,
.youtube .play-button:before {
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
    transform: scale(1);
}

.youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.youtube:hover .play-button {
    transform: scale(1.2);
}

.youtube:hover .play-button {
    background-color: #000;
}

.youtube:hover .play-button svg {
    fill: #fff;
}
#gallery-1 {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
} 
#gallery-1 br {
    display: none !important;
}
#gallery-1 .gallery-item {
    float: none !important;
    margin: 0px !important;
    text-align: left !important;
    width: calc(25% - 10px) !important;
    max-width: 25% !important;
    padding: 0 !important;
}
#gallery-1 .gallery-item .gallery-icon {
    padding: 0;
    height: 100%;
}
#gallery-1 img {
    height: 100%;
}