@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/***** General CSS *****/

body {
    overflow-x: hidden;
    color: var(--white);
    word-break: break-word;
    background-color: var(--black);
    font: 15px/25px 'Poppins', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --themeColor: #3e4a87;
    --themeColor2: #222544;
    --headingColor: #161a1d;
    --headingColor2: #131212;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-size: 55px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Lora';
    color: var(--white);
}

h2 {
    font-size: 39px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Lora';
}

h3 {
    margin: 0 0 0px;
    font-size: 25px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Lora';
}

h4 {
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Lora';
}

h5 {
    margin: 0 0 0px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Lora';
    color: var(--white);
}

h6 {
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--white);
    font-family: 'Poppins';
}

p {
    margin: 0px;
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0px;
    font-family: 'Poppins';
}

.theme-btn-1 {
    font-size: 17px;
    padding: 20px 60px;
    color: var(--white);
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 20%, rgba(255, 255, 255, 0.582) 100%);
    background-size: contain;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    margin: 0;
    gap: 15px;
    padding: 0;
    display: flex;
    list-style: none;
    text-align: center;
    position: relative;
    align-items: center;
    flex-direction: column;
    text-transform: capitalize;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: var(--white);
    text-decoration: underline;
}

.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(20px) rotate(-315deg);
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-20px) rotate(315deg);
}

.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu-trigger {
    position: relative;
    width: 50px;
    height: 44px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
}

.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #fff;
    border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
    top: 0;
}

.menu-trigger span:nth-of-type(2) {
    top: 20px;
}

.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}

.menuSec {
    top: 0;
    width: 100%;
    left: -100%;
    height: 100%;
    display: flex;
    z-index: 9;
    position: fixed;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    backdrop-filter: blur(10px);
    background-color: #00000098;
}

.menuSec.active {
    left: 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.header-logo {
    z-index: 999;
    position: relative;
}

.menuSection {
    padding: 40px 0px;
}

.header-right {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-video {
    width: 70px;
    height: 70px;
    display: flex;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #ffffff24 0%, #ffffffa3 100%);
}


/*header css start */


/*banner css start */

.main_slider {
    padding: 100px 0px 0px;
}

.banner_img {
    width: 100%;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/*banner css end*/


/* about-sec */

.about-sec {
    padding: 100px 0px;
}

.about-img img {
    width: 100%;
    height: 450px;
    object-fit: contain;
}

.about-img h3 {
    margin: 0px auto;
    max-width: 330px;
    font-weight: 400;
    line-height: 40px;
    font-style: italic;
    text-align: center;
}

.about-video {
    width: 90%;
    height: 610px;
    overflow: hidden;
    margin: 0px auto;
    position: relative;
    border-radius: 0px;
    border: 1px solid #ffffff79;
}

.about-video .play-btn {
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: auto;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
}

.about-video .play-btn::before {
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    content: '';
    height: 100%;
    opacity: 0.7;
    position: absolute;
    background-color: #000;
}

.about-video .play-btn i {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 65px;
    margin: auto;
    height: 65px;
    color: #fff;
    display: flex;
    font-size: 20px;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: #ffffff48;
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ffffff7e;
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px #ffffff7e;
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 #ffffff7e;
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 #ffffff7e;
        box-shadow: 0 0 0 0 #ffffff7e;
    }
    70% {
        -moz-box-shadow: 0 0 0 10px #ffffff7e;
        box-shadow: 0 0 0 10px #ffffff7e;
    }
    100% {
        -moz-box-shadow: 0 0 0 0 #ffffff7e;
        box-shadow: 0 0 0 0 #ffffff7e;
    }
}

.about-video .play-btn img {
    width: 105%;
    height: 100%;
    max-width: 105%;
    object-fit: cover;
    animation: moveLeftToRight 4s linear infinite;
    filter: grayscale(4);
}

.about-video .vid {
    width: 100%;
    height: 100%;
}

.about-video .vid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-1 {
    text-align: center;
}

.about-img-1 h2 {
    margin-bottom: 30px;
}

.about-img-1 img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    margin: 0px auto 35px;
    background-color: var(--white);
}

.about-img-1 h6 {
    font-size: 15px;
    font-family: 'Lora';
    margin-bottom: 20px;
}

.about-img-1 h4 {
    font-size: 18px;
    max-width: 300px;
    margin: 0px auto;
    line-height: 30px;
}


/* about-sec */


/* logo-sec */

.logo-box {
    display: flex;
    height: 125px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-box-1 {
    height: 365px;
    display: flex;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
}

.logo-box-1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.custom-row-space {
    margin-top: 70px;
}

.logo-box-3 {
    gap: 70px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.logo-box-3 img {
    width: 100%;
    height: 330px;
    object-fit: contain;
}

.logo-box-2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box-4 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
}

.logo-box-4 .theme-btn-1 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.logo-box-4 form {
    display: flex;
    max-width: 312px;
    align-items: center;
    justify-content: center;
}

.logo-box-4 form input {
    width: 100%;
    height: 50px;
    border: none;
    padding: 0 15px;
    color: #505b73;
    border-radius: 0px;
}

.logo-box-4 form input::placeholder {
    color: #505b73;
    font-weight: 600;
}

.logo-box-4 form button {
    border: none;
    height: 50px;
    color: #fff;
    flex-shrink: 0;
    padding: 0 18px;
    width: fit-content;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 20%, rgba(255, 255, 255, 0.582) 100%);
}


/* logo-sec */


/* video-sec */

.video-sec {
    padding: 100px 0px;
}

.join-box {
    padding-top: 60px;
}

.join-box h2 {
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}

.join-box ul {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.join-box ul li a {
    width: 100px;
    height: auto;
    display: flex;
    font-size: 25px;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    aspect-ratio: 1 / 1;
    justify-content: center;
    background: radial-gradient(circle, #00296e 20%, #005fc3 100%);
}

.video-box .about-video {
    width: 100%;
    border: none;
    height: 500px;
    margin-bottom: 40px;
}

.video-box h4 {
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Poppins';
}

.video-box h6 {
    font-size: 24px;
    font-weight: 300;
    line-height: 35px;
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Lora';
}

.video-box p {
    font-size: 22px;
    font-weight: 300;
    line-height: 25px;
    text-align: center;
    font-family: 'Lora';
}


/* video-sec */


/*Footer Start*/

.footer-sec {
    width: 100%;
    height: 100%;
    background-size: cover;
    padding-top: 55px;
}

.footer-sec h2 {
    margin-bottom: 30px;
    color: var(--white);
}

.footer-quick-link ul li a {
    font-size: 14px;
    color: #fff;
}

.footer-sec h2 {
    font-size: 25px;
}

.footer-quick-link {
    margin-left: 50px;
}

.footer-contact ul {
    line-height: 45px;
}

.footer-contact ul li a {
    color: #ffff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-newsletter h2 {
    font-size: 25px;
    margin-bottom: 30px;
}

.footer-newsletter .theme-btn-1 {
    padding: 20px 50px;
    margin-bottom: 30px;
}

.footer-newsletter input {
    width: 100%;
    height: 50px;
    border: none;
    padding: 0 15px;
    color: #505b73;
    border-radius: 0px;
}

.footer-newsletter input::placeholder {
    color: #505b73;
    font-weight: 600;
}

.footer-newsletter form {
    display: flex;
    position: relative;
    align-items: center;
    margin-bottom: 25px;
}

.footer-newsletter form button {
    border: none;
    height: 50px;
    color: #fff;
    flex-shrink: 0;
    padding: 0 18px;
    width: fit-content;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 20%, rgba(255, 255, 255, 0.582) 100%);
}

.footer-logo {
    display: flex;
    height: 210px;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.copy-right-sec {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #ffffff2d;
    margin-top: 40px;
}

.copy-right-sec p {
    margin: 0;
    opacity: 0.5;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    text-align: left;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.footer-social-icon ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.footer-social-icon h6 {
    font-size: 18px;
    text-transform: uppercase;
}

.footer-social-icon ul i {
    font-size: 16px;
    color: #fff;
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    display: grid;
    place-content: center;
    border-radius: 50px;
}

.copy-right-sec .row {
    align-items: center;
}


/*Footer End*/



.academy-left-logo img {
    width: 55%;
}

.academy-right-logo img {
    width: 80%;
    /* margin-left: auto; */
    /* display: block; */
}

.academy-overview {
    padding: 80px 0;
}
.academy-left-logo {
    width: 60%;
    margin: 40px auto;
}
.academy-overview .row {
    align-items: center;
}

.accademy-content {
    text-align: center;
    margin-top: 30px;
}
.accademy-content h2 {
    font-size: 80px;
    text-transform: uppercase;
}

.accademy-content h2 span {
}
h3.for-font span {
    font-size: 70px;
}
.accademy-content p {
    margin: 15px 0;
}
h2.soon.forfont {
    font-size: 77px;
}
.event-media-sec {
    padding: 100px 0;
}

.soon {
    font-size: 90px;
    margin: 40px 0;
}

.event-media-content p {
    font-size: 20px;
    line-height: 35px;
}

.music-studio-content p {
    font-size: 18px;
    line-height: 33px;
    margin: 20px 0;
}

.music-studio-content a {
    font-size: 20px;
    color: #fff;
    text-decoration: underline;
}

.pfs-podcast-content p {
    font-size: 20px;
    line-height: 35px;
}

.pfs-podcast-sec {
    padding: 80px 0;
}

.pfs-podcast-content p a {
    color: #fff;
    text-decoration: underline;
}

.pfs-book-sec {
    padding: 0 0 100px 0;
}

.pfs-book-loog img {
    width: 65%;
}

.event-media-content h3 {
    font-size: 80px;
}

.event-media-content p {
    margin: 16px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #bada55;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.success-msg {
    display: none;
    /* show after submit via JS */
    color: #bada55;
    font-size: 14px;
}

.contact-info {
    text-align: center;
    max-width: 400px;
    margin: auto;
    line-height: 1.8;
}

.contact-info h6 {
    font-size: 18px;
    margin: 5px 0;
    font-weight: 500;
}

.contact-info a {
    display: inline-block;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    margin: 10px 0;
}

.contact-info a:hover {
    color: #bada55;
}

.contact-info p {
    font-size: 14px;
    margin-top: 5px;
}

.contact-sec {
    padding: 100px 0;
}

.contact-card {
    background: #fff;
    height: 190px;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 50px;
}

.contact-card h4 {
    color: #000;
    font-size: 30px;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contact-card p,
.contact-card a {
    color: #000;
    font-size: 18px;
}

.contact-image img {
    width: 95%;
}

.contact-pg-form button {
    border: 0;
}

ul.casadi-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 25px 0;
}

ul.casadi-logos li {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

ul.casadi-logos li img {
    width: 80px;
    height: 80px;
    margin: 10px 0;
}

ul.casadi-logos li a span {
    line-height: 24px;
    text-align: left;
    margin-left: 20px;
    width: 70%;
    font-family: 'Lora';
    color: #ffffff;
    font-size: 24px;
    text-shadow: -2px 0px 12px #ffffff;
    font-weight: 500;
    text-transform: uppercase;
}
ul.casadi-logos ~ h4 {
    margin: 15px 0;
    line-height: 35px;
}
.episodes-list {
}


ul.episodes-list li h4 {
    color: #ffffff;
    font-size: 24px;
    /* -webkit-text-stroke: 1px #ffffff; */
    text-shadow: -2px 0px 12px #ffffff;
    /* background: radial-gradient(circle, rgba(0, 0, 0, 1) 20%, rgba(255, 255, 255, 0.582) 100%); */
    /* background: -webkit-linear-gradient(#eee, #333); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}
.episodes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 30px;
    padding: 0;
    list-style: none;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.episodes-list li {
    list-style: none;
    position: relative;
    padding-left: 18px;
    width: 100%;
}

/* Custom Bullet */
/*.episodes-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
}*/

@media (max-width: 768px) {
.logo-box {
    text-align: center;
}
    .episodes-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .episodes-list h4 {
        font-size: 22px;
    }
}

.accademy-content h3 {
    font-size: 36px;
}
.accademy-content p {
    font-size: 20px;
        line-height: 35px;
}
.f-24 {
    font-size: 24px;
        line-height: 35px;
}
.pfs-podcast-logo img {
    width: 35%;
}
.about-img-1 h6 a {
    color: #fff;
    text-decoration: underline;
}
.pfs-podcast-content.text-center H3 {
    font-size: 50px;
    margin: 20px 0;
}

footer * {
    text-transform: uppercase;
}
.academy-right-logo {
    text-align: center;
}
.event-media-content.text-center h3 {
    font-size: 50px;
}