* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #E5D0A524;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

p {
    font-size: 18px;
    line-height: 24px;
    color: var(--Text-color);
    font-family: var(--Instrumental-font--);
    font-weight: 400;
}

h1 {
	font-family: var(--Amiri-font--);
}

h2 {
    font-size: 50px;
    font-weight: 400;
    font-family: var(--Amiri-font--);
    color: var(--Heading-color);
    line-height: 56px;
}

h3 a {
    color: var(--Heading-color);
}

.card-content h3 {
    font-weight: 700 !important;
}

h3 {
    font-size: 34px;
    font-weight: 400;
    font-family: var(--Amiri-font--);
    line-height: 38px;
    color: var(--Heading-color);
}

.post-detail-banner .content h1,
.episode-detail-banner .content h1,
.podcast-detail-banner .content h1 {
    font-size: 70px !important;
    text-transform: capitalize !important;
}

.no-episodes-msg {
    grid-column: span 3;
    z-index: 999;
}

.no-episodes-msg p {
    font-size: 20px;
}

.no-episodes-msg p {
    font-size: 34px;
    font-weight: 400;
    font-family: var(--Amiri-font--);
    line-height: 38px;
    color: var(--Heading-color);
}

.all-sec-heading {
    position: relative;
}

.all-sec-heading h4 {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--Amiri-font--);
    font-size: 34px;
    color: var(--Heading-color);
    line-height: 38px;
    white-space: nowrap;
    font-weight: 400;
    overflow: hidden;
}

.all-sec-heading h4::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: var(--Text-color);
    opacity: 0.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}

:root {
    --Amiri-font--: "Amiri", serif;
    --Instrumental-font--: "Instrument Sans", sans-serif;
    --Heading-color: #7D4C2C;
    --Text-color: #252525;
    --Button-color--: #E5D0A5;
}

.container {
    width: 100%;
    padding-left: 120px;
    padding-right: 120px;
}

/* Navbar Start*/

.navbar {
    position: absolute;
    top: 0;
    font-family: var(--Instrumental-font--);
    width: 100%;
    background: transparent;
    z-index: 99;
}

.navbar.darkmd {
    background: rgba(229, 208, 165, 0.20);
    position: relative;
    border-bottom: 1px solid #252525;
}

.navbar.darkmd .header-logo {
    margin-left: -160px;
}

.navbar.darkmd .header-logo img {
    filter: brightness(0.1);
    width: 100%;
    max-width: 140px;
}

.navbar.darkmd .nav-links a {
    color: #252525;
}

.navbar.darkmd .search-icon img {
    filter: brightness(0.1);
}

.navbar.darkmd .nav-actions .outline-btn a {
    border: 1px solid #252525;
    color: #252525;
}

.navbar.darkmd .nav-actions .mobile-toggle span {
    background: #252525;
}

.navbar .navigation-wrap {
    margin: 0 auto;
    display: flex;
    padding: 28px 0;
    border-bottom: 1px solid #ffffff40;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    color: white;
    font-family: var(--Amiri-font--);
    font-size: 46px;
    font-weight: 700;
}

.navbar .logo a {
    display: flex;
}

.navbar .logo a img {
    width: 200px;
}

.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 60px;
    /* margin-left: 5%; */
}

.navbar .nav-links a {
    color: #FFFFFF;
    position: relative;
    font-size: 20px;
    font-weight: 500;
}

.navbar .nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar .nav-actions .search-icon {
    background: none;
    border: none;
    color: #FFFFFF;
    padding-top: 5px;
    cursor: pointer;
}

.navbar .nav-actions .main-btn {
    width: 130px !important;
}

.navbar .nav-actions .outline-btn a {
    width: 189px;
    height: 56px;
    padding: 16px 30px;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    color: #FFFFFF;
    transition: .2s linear;
}

.navbar .nav-actions .outline-btn a:hover {
    background-color: #E5D0A5;
    color: #252525;
    border: 1px solid #E5D0A5;
}


.navbar .mob-menu-it {
	display: none;
}

.episode-btn {
    width: 155px !important;
}

.dropdown-btn {
    position: relative;
    display: inline-block;
}

.dropdown-btn a {
    background: #E5D0A5;
    display: flex;
    color: var(--Text-color);
    align-items: center;
    gap: 5px;
    border-radius: 0px;
    border: none;
    padding: 14px 41px;
    font-size: 18px;
    max-width: 100%;
    font-family: var(--Instrumental-font--);
    cursor: pointer;
    line-height: 28px;
    font-weight: 500;
}

.dropdown-content {
    display: none;
    position: absolute;
    margin-top: 2px;
    border: 2px solid #fff;
    background-color: #fff;
    font-family: var(--Instrumental-font--);
    width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    color: #000;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    font-size: 18px;
    border-bottom: 1px solid #f1f1f1;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background-color: #E5D0A5;
}

.main-btn {
    background: var(--Button-color--);
    color: var(--Text-color);
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--Instrumental-font--);
    border-radius: 0px;
    transition: all 0.5s;
    width: 176px;
    display: inline-block;
    overflow: visible;
    position: relative;
    transition: 0.5s;
}

.main-btn:after {
    content: "";
    position: absolute;
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    transition: 0.4s;
    width: 24px;
    height: 20px;
    background-image: url('/wp-content/uploads/2026/04/arrow-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
}

.main-btn:hover {
    /* padding-right: 20px; */
    padding-left: 20px;
}

.main-btn:hover:after {
    opacity: 1;
    right: 15px;
}

.navbar .nav-actions .mob-h {
	display: none;
}

.navbar .nav-actions .mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar .nav-actions .mobile-toggle span {
    width: 30px;
    height: 2px;
    background: white;
}

.search-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--Button-color--);
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.search-overlay.active {
    top: 0;
}

.search-overlay .search-content input {
    background: none;
    font-family: var(--Instrumental-font--);
    border: none;
    border-bottom: 2px solid black;
    color: black;
    font-size: 30px;
    outline: none;
    font-weight: 400;
    padding: 8px;
    width: 500px;
}

.search-overlay #closeSearch {
    font-size: 50px;
    background: none;
    cursor: pointer;
    color: black;
    border: none;
}

/* Navbar End*/


/* Podcast Page */
.all-podcast-sec {
    padding-top: 80px;
}

.all-podcast-sec .podcast-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    padding-top: 40px;
}

.podcast-card .podcast-inner-card {
    background: #F7F0E3;
    display: flex;
    padding: 24px;
    height: 100%;
    gap: 24px;
}

.podcast-card .card-image {
    width: 50%;
    position: relative;
}

.podcast-card .card-image .play-btn img {
    width: 60px;
    height: 60px;
}

.podcast-card .card-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 99;
    opacity: 1;
    transition: .3s;
}

.podcast-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-card {
    min-height: 320px;
}

.all-podcast-sec .main-btn {
    margin-top: 40px;
    width: 155px;
}

.podcast-card .card-content {
    flex-grow: 1;
    width: 50%;
    gap: 14px;
    display: flex;
    justify-content: center;
    padding-right: 5px;
    flex-direction: column;
}

.podcast-card .podcast-time img {
    padding-top: 2px;
}

.podcast-card .podcast-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.podcast-card .podcast-time span {
    font-family: var(--Instrumental-font--);
    color: var(--Heading-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

/* Podcast Page End */


/* Home Page */

/* Banner Section */

.home-banner img.banner-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.home-banner {
    position: relative;
    overflow: hidden;
}

.home-banner {
    height: 100vh;
    position: relative;
    width: 100%;
    padding-bottom: 40px;
    overflow: hidden;
    display: flex;
    align-items: end;
    justify-content: center;
}
.banner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 100px;
}
.home-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.home-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.home-banner .content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0px;
    color: white;
}

.home-banner .content h2 {
    font-family: var(--Amiri-font--);
    font-size: 90px;
    line-height: 40px;
    text-align: center;
    font-weight: 400;
    color: white;
}

.home-banner .content h2 span {
    font-family: var(--Amiri-font--);
    font-size: 52px;
    line-height: 100%;
    font-weight: 400;
    color: white;
}

.home-banner .content h1 {
    font-family: var(--Amiri-font--);
    font-size: 90px;
    line-height: 100%;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    padding-bottom: 220px;
}

.home-banner .content p {
    font-size: 24px;
    font-family: var(--Instrumental-font--);
    font-weight: 600;
    line-height: 24px;
    color: white;
    text-align: start;
}

.home-banner .content p a {
    color: #FFFFFF;
}

/* Banner Section End */

/* Latest Episode Section Start */
.episode-page-latest-episode {
    margin-top: 40px;
}

.latest-episode-card h2 a {
    color: inherit;
}

.episode-page-latest-episode .detail-content {
    position: absolute;
    bottom: 0;
    z-index: 99;
    padding-left: 40px;
    padding-bottom: 40px;
}

.episode-download-bar a {
    display: flex;
    color: #7D4C2C;
    font-family: "Instrument Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    gap: 6px;
    align-items: center;
}

.episode-download-bar {
    display: flex;
    gap: 24px;
    margin-top: 14px;
}

.episode-page-latest-episode .latest-card img {
    position: relative;
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.2) 100%);
    z-index: 5;
    pointer-events: none;
}

.latest-episode-card .img {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.latest-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    z-index: 5;
    transition: all 0.3s ease;
}

.latest-play-overlay img {
    width: 100%;
    height: 100% !important;
}

.latest-play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.post-sec {
    padding: 80px 0 !important;
}

.latest-episode,
.latest-post,
.post-sec {
    padding-top: 80px;
    position: relative;
}

.latest-episode-card,
.latest-post-card {
    display: flex;
    align-items: center;
    gap: 54px;
    padding-top: 40px;
}

.latest-episode-card .img,
.latest-post-card .img {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.latest-episode-card .img img,
.latest-post-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.latest-episode-card .img img:hover,
.latest-post-card .img img:hover {
    transform: scale(1.1);
}

.latest-episode-card .img img,
.latest-post-card .img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.latest-post-card p {
    margin-top: 18px;
}

.latest-episode-card .episode-card-content,
.latest-post-card .post-card-content {
    width: 50%;
}

.post-card-content h2 a {
    color: inherit;
}

.episode-card-content .episode-info,
.post-card-content .post-info {
    display: inline-flex;
    align-items: end;
    background-color: #7D4C2C1A;
    padding: 6px 8px;
    border-radius: 6px;
    margin-bottom: 20px;
    gap: 5px;
}

.episode-card-content h2,
.post-card-content h2 {
    padding-bottom: 14px;
}

.episode-info span,
.post-info span {
    font-family: var(--Instrumental-font--);
    color: var(--Heading-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

.episode-card-content .main-btn,
.post-card-content .main-btn {
    margin-top: 50px;
}

/* Latest Episode Section End */


.solid-bg-banner {
    text-align: center;
    padding: 100px 0px;
    background: rgba(229, 208, 165, 0.20);
    position: relative;
}

.solid-bg-banner h1 {
    font-family: var(--Amiri-font--);
    font-size: 90px;
    line-height: 100%;
    text-align: center;
    font-weight: 400;
    /* text-transform: uppercase; */
    color: #252525;
}

.instaposts {
    padding: 50px 0px;
}

#insta .title {
    display: flex;
    justify-content: space-between;
}

.title-r a {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-family: 'Instrument Sans';
    padding-top: 17px;
    justify-content: center;
    color: var(--Heading-color);
}

.title-r a svg {
    max-width: 30px;
    height: auto;
    margin-right: 10px;
}

/* POst Cards Section Start*/

.post-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    padding-top: 40px;
}

.post-card .inner-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 9;
}

.post-card .card-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.post-card .card-image img {
    width: 100%;
    height: 100%;
    transition: .3s;
    object-fit: cover;
}

.post-card .card-image img:hover {
    transform: scale(1.1);
}

.post-sec .main-btn {
    margin-top: 40px;
    width: 155px;
}

.post-card .card-content {
    padding-top: 24px;
    flex-grow: 1;
    gap: 14px;
    display: flex;
    padding-right: 5px;
    flex-direction: column;
}

/* POst Cards Section End*/

/* All Episode Section Start */

.home-episode-sec {
    /* margin-top: 90px; */
    padding: 50px 0;
}

.episode-detail-banner {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

/* Centering Play Button on Image */
.video-main-wrapper {
    margin: 0 auto;
}

.video-poster-overlay {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-btn-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Perfect Center */
    width: 80px;
    /* Icon size */
    height: auto;
    transition: transform 0.3s ease;
}

.video-poster-overlay:hover .play-btn-centered {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.all-episode-sec {
    background-color: #E5D0A533;
    padding: 50px 0;
}

.all-episode-sec .episode-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    padding-top: 40px;
}

.episode-card .episode-inner-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.episode-card .card-image {
    width: 100%;
    position: relative;
}

.episode-card .card-image .play-btn img {
    width: 75px;
    height: 75px;
}

.episode-card .card-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 99;
    opacity: 1;
    transition: .3s;
}

.episode-card .card-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.all-episode-sec .main-btn {
    margin-top: 40px;
    width: 155px;
}

.episode-card .card-content {
    padding-top: 24px;
    flex-grow: 1;
    gap: 14px;
    display: flex;
    padding-right: 5px;
    flex-direction: column;
}

.episode-card .episode-time img {
    padding-top: 2px;
}

.episode-card .episode-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.episode-card .episode-time span {
    font-family: var(--Instrumental-font--);
    color: var(--Heading-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

/* All Episode Section End */

/* Tiktok Section Start */

.tiktok-sec {
    padding: 80px 0;
    background-color: #F7F0E3;
    text-align: center;
}

.tiktok-sec .tiktok-videos {
    display: grid;
    padding-top: 30px;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.tiktok .tiktok-img {
    position: relative;
    width: 100%;
}

.tiktok .tiktok-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tiktok .tiktok-img .click-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9;
    opacity: 1;
    transition: .3s;
}

.tiktok .tiktok-img .click-btn img {
    width: 120px;
    height: 120px;
}

.rotating-text-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: contain;
    z-index: 1;
    animation: spinText 10s linear infinite;
}

@keyframes spinText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Tiktok Section End */

/* Social Media Section Start */

.social-media-sec {
    padding: 0 0 80px 0;
    position: relative;
    text-align: center;
}

.instagram-imgs-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-imgs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 58px;
    padding-top: 40px;
}

/* Social Media Section End */

/* Footer */

footer {
    background-color: var(--Heading-color);
    padding-top: 0px;
}

footer .party-sec {
    background-color: rgba(255, 255, 255, 0.06);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .party-sec .party-title {
    width: 30%;
}

.party-sec .party-title h5 {
    font-size: 60px;
    font-weight: 400;
    font-family: var(--Amiri-font--);
    color: white;
    line-height: 56px;
    padding-bottom: 10px;
}

.party-sec .party-title p {
    color: white !important;
}

.party-sec .email-sec .email-input {
    display: flex;
    border-bottom: 1px solid white;
    padding: 20px 10px;
}

.email-sec .email-input input {
    border: none;
    background-color: transparent;
    font-family: var(--Instrumental-font--);
    font-size: 18px;
    padding-left: 10px;
    font-weight: 500;
    color: white;
    width: 100%;
}

.email-sec .email-input input::placeholder {
    color: white;
    opacity: 1;
}

.email-sec .email-input .main-btn {
    width: 185px;
}

.email-sec .email-input input:focus {
    outline: none;
    border: none;
}

footer .party-sec .email-sec {
    width: 60%;
}

footer .logo img {
    width: 243px;
}

.social-media-links {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.social-media-links h6 {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--Instrumental-font--);
    color: white;
}

.social-media-links .social-icons {
    display: flex;
    gap: 13px;
}

.links-sec {
    width: 630px;
    margin: 0px auto;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
}

.links-sec .logo h6 {
    font-size: 31px;
    display: inline-grid;
    line-height: 40px;
    font-family: var(--Amiri-font--);
    color: white;
    font-weight: 700;
}

.page-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
}

.page-links ul li {
    padding-right: 30px;
    border-right: 1px solid white;
}

.page-links ul li a {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--Instrumental-font--);
    color: white;
}

/* Footer End */

/* About Page */

.about-detail {
    display: flex;
    gap: 80px;
    align-items: center;
}


.about-detail .img {
    width: 800px;
}

.about-detail .img img {
    width: 100%;
    object-fit: cover;
}

.about-detail-sec h2 {
    padding-bottom: 14px;
}

.about-detail .detail {
    width: 614px;
}

.about-detail .detail p {
    margin-bottom: 16px;
}

.cta-text p {
    margin-bottom: 16px;
}

.hosting-text p:not(:last-child) {
    margin-bottom: 16px;
}

.dave-text p {
    margin-bottom: 16px;
}

.code-explain-sec {
    padding: 80px 0;
}

.code-explain-sec .title {
    text-align: center;
}

.code-explain-sec .course-cards {
    display: grid;
    padding-top: 40px;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.course-cards .inner-card {
    background-color: #E5D0A533;
    padding: 40px 24px;
}

.course-cards .inner-card .text h3 {
    padding-top: 24px;
}

.course-cards .inner-card .text p {
    padding-top: 14px;
}

.post-card .inner-card img {
  height: 410px;
}

.about-cta {
    height: 600px;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-cta .container {
    height: 100%;
}

.about-cta .inner-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    height: 100%;
    align-items: end;
}

.about-cta .inner-content .empty-div {
    width: 50%
}

.about-cta .inner-content .content {
    width: 45%;
    display: flex;
    flex-direction: column;
}

.second-h2 {
    padding-bottom: 14px;
}

.about-cta .inner-content .content h2 {
    color: #FFFFFF;
}

.about-cta .inner-content .content p {
    color: #FFFFFF;
}

.dav-sec {
    padding: 80px 0;
}

.dav-sec .dav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.dav-sec .dav-inner .content {
    width: 907px;
}

.dav-sec .dav-inner .content h2 {
    padding-bottom: 14px;
}

.dav-sec .dav-inner .img {
    width: 685px;
}

.dav-sec .dav-inner .img img {
    width: 100%;
}

.hosting-sec {
    /*background-color: #E5D0A533;*/
    padding: 60px 0;
    text-align: center;
}

.hosting-sec .content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* About Page End */

/* Post Page Start */

.post-banner {
    background-image: url("../img/post-banner.png");
}

.inner-pages-banner {
    height: 55vh;
    background-size: cover;
    background-position: 100% 26%;
    position: relative;
    width: 100%;
    padding-bottom: 100px;
    overflow: hidden;
    display: flex;
    align-items: end;
    justify-content: center;
    z-index: 9;
}

.inner-pages-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.inner-pages-banner .content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
    text-align: center;
}

.inner-pages-banner .content h2 {
    font-family: var(--Amiri-font--);
    font-size: 90px;
    line-height: 40px;
    font-weight: 400;
    color: white;
}

.inner-pages-banner .content h2 span {
    font-family: var(--Amiri-font--);
    font-size: 52px;
    line-height: 100%;
    font-weight: 400;
    color: white;
}

.inner-pages-banner .content h1 {
    font-family: var(--Amiri-font--);
    font-size: 90px;
    line-height: 100%;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
}

.inner-pages-banner .content p {
    font-size: 24px;
    font-family: var(--Instrumental-font--);
    font-weight: 600;
    line-height: 24px;
    color: white;
}

.faqs-sec {
    padding-top: 80px;
    padding-bottom: 80px;
}

.faqs-sec .faq-inner-sec {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.faq-inner-sec .faq-content {
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-content .faq-img {
    display: flex;
    align-items: end;
    padding-top: 26px;
    gap: 20px;
}

.faq-inner-sec .faqs {
    width: 55%;
}

.accordion .accordion-item {
    border-bottom: 1px solid #ababab;
}

.accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: none;
}

.accordion button {
    position: relative;
    display: flex;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    border: none;
    background: none;
    outline: none;
}

.accordion button h3 {
    width: 85%;
}

.accordion button span {
    width: 15%;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: var(--Heading-color);
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: var(--Heading-color);
    border: 1px solid var(--Heading-color);
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 30px;
    color: var(--Heading-color);
    height: 30px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 6px;
    right: 0;
    width: 14px;
    color: var(--Heading-color);
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.accordion button .icon::after {
    display: none;
}

.accordion button[aria-expanded='true'] {
    color: var(--Heading-color);
}

.accordion button[aria-expanded='true'] .icon::before {
    transform: rotate(-135deg);
    top: 9px;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 11em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--Instrumental-font--);
    line-height: 24px;
    color: var(--Text-color);
    margin: 1em 0;
}

.behind-img-grid-2 {
    padding-top: 24px !important;
}

.behind-img-grid {
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 24px;
    padding-top: 40px;
    display: flex;
}

.behind-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

/* Post Page End */

/* EPisode Page Start */

.episode-banner {
    background-image: url("../img/episode-banner.png");
}

.episode-page {
    background-color: transparent !important;
    padding: 80px 0;
}

.episode-inner-card-2 {
    margin-top: 50px;
}

/* EPisode Page End */


/* Post Detail Page Start */

.post-detail-banner {
    background-image: url("../img/post-detail-img.png");
}

.post-detail-content {
    padding: 80px 240px;
}

.post-detail-content blockquote p {
    border-left: 4px solid #7D4C2C;
    font-size: 30px !important;
    font-family: 'Amiri' !important;
    padding: 30px 20px 10px;
    margin-top: 30px;
    font-weight: 500;
    color: #7D4C2C;
	line-height: 1;
}

.post-detail-content .featured-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.post-detail-content .wp-block-post-author-name {
    box-sizing: border-box;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Instrument Sans';
    text-transform: capitalize;
    margin: 20px 0px 40px;
}

.post-detail-content .wp-block-post-author-name::before {
    content: "By ";
}

.post-detail-content .content hr {
    margin-top: 40px;
    margin-bottom: 20px;
}

.featured-img-credit {
    font-family: 'Instrument Sans';
    text-align: right;
    font-size: 14px;
    color: #252525;
}

.featured-img-credit a {
    color: var(--Heading-color);
}

.post-detail-content .content .hashtag {
    display: flex;
    align-items: center;
    gap: 24px;
}

.post-detail-content .content .hashtag h5 {
    font-size: 24px;
    font-family: var(--Amiri-font--);
    font-weight: 400;
    color: var(--Heading-color);

}

.post-detail-content h6 {
    padding-top: 20px;
    font-size: 20px;
    color: var(--Heading-color);
    font-weight: 500;
    font-family: var(--Instrumental-font--);
}

.episode-sub-headline {
    font-size: 26px;
    font-weight: 400;
    font-family: var(--Amiri-font--);
    line-height: 38px;
    color: var(--Heading-color);
}

.hashtag .tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tags .inner-tag {
    font-size: 18px;
    background-color: rgba(125, 76, 44, 0.1);
    font-weight: 400;
    border-radius: 6px;
    padding: 4px 6px;
    font-family: var(--Instrumental-font--);
    color: var(--Heading-color);
}

.post-detail-content .content {
    padding-top: 60px;
}

.post-detail-content .content p {
    padding-top: 15px;
}

.post-detail-content .content h3 {
    padding-top: 40px;
}

/* Post Detail Page End */

/* Episode Detail Page */

.episode-detail-content {
    padding: 80px 240px;
}


.episode-detail-content ul {
    list-style: none;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.episode-detail-content .container {
    max-width: 1010px;
    margin: 0 auto;
}

.episode-detail-content ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    padding-left: 35px;
    color: #252525;
    position: relative;
    font-family: var(--Instrumental-font--);
    line-height: 24px;
}

.episode-detail-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/uploads/2026/04/tick-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.episode-detail-content .featured-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.episode-detail-content .content {
    padding-top: 60px;
}

.episode-detail-content .content p {
    padding-top: 15px;
}

.episode-detail-content .content h3 {
    padding-top: 40px;
}

.episode-detail-content .content h6 {
    padding-top: 20px;
    font-size: 20px;
    color: var(--Heading-color);
    font-weight: 500;
    font-family: var(--Instrumental-font--);
}

.episode-detail-content .entry-content h6 {
    padding-top: 20px;
    font-size: 20px;
    color: var(--Heading-color);
    font-weight: 500;
    font-family: var(--Instrumental-font--);
}

.entry-content .post-sub-headline {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

/* FOoter Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    /* Patli line ke liye */
    padding-top: 19px;
    padding-bottom: 22px;
    text-align: center;
}

.footer-bottom p {
    color: #ffffff;
}


/*Contact Page*/

.contact-first-section {
    padding: 80px 0px;
    background-color: #F7F0E3;
}

.contact-first-section .contact-left-content {
    max-width: 700px;
}

.contact-first-section .contact-first-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-first-section .contact-right-content p {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.contact-first-section .contact-right-content .contact-text p span {
    color: #7D4C2C;
    font-family: Amiri;
    font-size: 86px;
    font-style: normal;
    font-weight: 700;
    display: block;
}

.contact-first-section .contact-text {
    margin-top: 15px;
}

.contact-first-section .contact-text p {
    margin-bottom: 16px;
}

.availability-form-sec {
    padding: 80px 0px 0px;
}

.availability-form-sec .wpforms-field-limit-text {
    font-family: 'Instrument Sans';
}

.availability-form {
    margin-top: 32px !important;
    border: 1px solid rgba(37, 37, 37, 0.20);
    background: rgba(229, 208, 165, 0.10);
    backdrop-filter: blur(30px);
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    padding: 9px 16px 24px;
}

.availability-form-title, .availability-form-subtitle {
    max-width: 1098px;
    margin: 0 auto;
    text-align: center;
}

.availability-form-title h2 {
    margin-bottom: 10px;
}

.availability-form-subtitle strong {
    margin-top: 10px;
    display: block;
}

.availability-form .wpforms-container {
    margin: 0 !important;
}

.availability-form form input, .availability-form form textarea {
    background-color: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid #000 !important;
    border-radius: 0px !important;
    padding: 0 !important;
    outline: 0 !important;
    color: #252525 !important;
    font-family: "Instrument Sans" !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    outline: 0 !important;
    box-shadow: none !important;
    line-height: normal !important;
}

.availability-form form textarea {
    height: 117px !important;
}

.availability-form form input::placeholder, .availability-form form textarea::placeholder {
    color: #252525 !important;
    opacity: 1 !important;
}

.availability-form form .wpforms-submit {
    background: #E5D0A5 !important;
    color: #000 !important;
    font-family: 'Instrument Sans' !important;
    color: #252525 !important;
    text-align: center !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 28px !important;
    width: 256px !important;
    height: 56px !important;
    padding: 14px 31px !important;
}

.availability-form-image {
    margin-top: 0 !important;
    margin-bottom: -4px;
    overflow: hidden;
}

.availability-form-image img {
    width: 100%;
	height: auto !important;
}

.post-tags {
    border-top: 1px solid #D9D9D9;
    display: flex;
    font-size: 18px;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
}

.post-tags-label {
    color: #7D4C2C;
    font-family: Amiri;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-right: 25px;
}

.post-tags-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.post-tags-list a {
    display: flex;
    padding: 4px 6px;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: rgba(125, 76, 44, 0.10);
    font-family: 'Instrument Sans';
    color: #7D4C2C;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.post-tag-icon {
    display: flex;
}

.post-detail-content .container {
        max-width: 800px;
        margin: 0 auto;
    }
/*Contact Page*/



/* Media Queries */
@media(max-width:1620px) {

    .dav-sec .dav-inner .content {
        width: 50%;
    }

	.episode-detail-content .container {
		padding-left: 120px;
		padding-right: 120px;
	}

	.post-detail-content .container {
		padding-left: 120px;
		padding-right: 120px;
	}

    .dav-sec .dav-inner .img {
        width: 45%;
    }

    .about-cta .inner-content .content {
        width: 60%;
    }

    .about-cta .inner-content .empty-div {
        width: 30%;
    }


    .about-detail {
        justify-content: space-between;
        gap: 50px;
    }

    .about-detail .img {
        width: 50%;
    }

    .about-detail .img img {
        height: 350px;
    }

    .about-detail .detail {
        width: 50%;
    }

    .container {
        padding-left: 50px;
        padding-right: 50px;
    }

    footer .party-sec .party-title {
        width: 40%;
    }

    .party-sec .party-title h5 {
        font-size: 50px;
    }

    footer .party-sec .email-sec {
        width: 55%;
    }

    .instagram-imgs-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 58px;
        padding-top: 30px;
    }

    .social-media-sec {
        padding: 70px 0;
    }

    .tiktok-sec .tiktok-videos {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .home-episode-sec {
        /* margin-top: 70px; */
    }

    .episode-card {
        gap: 30px;
    }

    .post-card {
        gap: 30px;
    }

    h2 {
        line-height: 50px;
        font-size: 45px;
    }

    h3 {
        font-size: 30px;
        line-height: 30px;
    }

    .home-banner .content h1 {
        padding-bottom: 50px;
    }

    .all-sec-heading h4 {
        font-size: 32px;
    }

    .home-banner {
        padding-top: 0px;
        padding-bottom: 40px;
        height: 100vh;
        align-items: end;
    }

    /*.inner-pages-banner {
        height: 600px;
    }*/

    .home-banner .content h1,
    .home-banner .content h2,
    .inner-pages-banner .content h1,
    .inner-pages-banner .content h2 {
        font-size: 75px;
    }

    .episode-card-content .main-btn,
    .post-card-content .main-btn {
        margin-top: 30px;
    }

    .post-detail-content {
        padding: 80px 100px;
    }

    .episode-detail-content {
        padding: 80px 100px;
    }

}

@media(max-width:1440px) {
    .dav-sec .dav-inner .img img {
        height: 500px;
        object-fit: cover;
    }
}

@media(max-width: 1240px) {
   .navbar .nav-links {
	gap: 40px;
   }
   .navbar .nav-links a {
        font-size: 16px;
   }
   .dropdown-btn a, .outline-btn a {
        font-size: 16px;
   }
   .navbar.darkmd .header-logo {
        margin-left: 0;
   }
}

@media(max-width:1024px) {
    .banner-logo img {
        max-width: 200px;
    }
    .navbar .nav-actions {
        gap: 15px;
    }
    .dropdown-btn, .outline-btn {
        display: none;
    }
    .navbar.darkmd .nav-actions {
        justify-content: end;
    }
    .navbar .nav-actions {
        width: 100%;
        justify-content: space-between;
    }

    .all-podcast-sec .podcast-card {
        grid-template-columns: repeat(1, 1fr);
    }

    .post-detail-banner .content h1,
    .episode-detail-banner .content h1,
    .podcast-detail-banner .content h1 {
        font-size: 55px !important;
    }

    .dav-sec {
        padding: 60px 0;
    }

    .about-cta {
        height: 450px;
    }

    .about-cta .inner-content .content {
        width: 80%;
    }

    .about-cta .inner-content .empty-div {
        width: 0%;
    }

    .about-detail .img img {
        height: 350px;
    }

    .code-explain-sec {
        padding: 50px 0;
    }

    .code-explain-sec .course-cards {
        padding-top: 30px;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .episode-page-latest-episode .latest-card img {
        height: 650px;
    }

    .post-sec {
        padding: 60px 0 !important;
    }

    .post-detail-content {
        padding: 60px 70px;
    }

    .post-detail-content .featured-img img {
        height: 100%;
    }

    .post-detail-content .content {
        padding-top: 40px;
    }

    .episode-detail-content {
        padding: 60px 70px;
    }

    .episode-detail-content .featured-img img {
        height: 100%;
    }

    .episode-detail-content .content {
        padding-top: 40px;
    }

    .episode-page {
        padding: 60px 0;
    }

    .episode-inner-card-2 {
        margin-top: 0px;
    }

    .behind-img-grid {
        padding-top: 30px;
    }

    .faq-inner-sec .faqs {
        width: 55%;
    }

    .faq-inner-sec .faq-content {
        width: 40%;
    }


    .faqs-sec {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .page-links ul li a {
        font-size: 18px;
    }

    footer .party-sec {
        padding: 30px;
    }

    .navbar .nav-links {
        margin-left: 0;
    }

    .email-sec .email-input input {
        border-bottom: 1px solid white;
        padding: 15px 10px;
    }

    .email-sec .email-input input:focus {
        border: none;
        border-bottom: 1px solid white !important;
    }

    .party-sec .email-sec .email-input {
        gap: 30px;
        display: flex;
        padding: 0;
        border-bottom: none;
        flex-direction: column;
    }

    .party-sec .party-title h5 {
        font-size: 40px;
    }

    .instagram-imgs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding-top: 30px;
    }

    .social-media-sec {
        padding: 0px 0;
    }

    .tiktok-sec .tiktok-videos {
        padding-top: 20px;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .tiktok-sec {
        padding: 50px 0;
    }

    .home-episode-sec {
        /* margin-top: 50px; */
    }

    .all-episode-sec .episode-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-card {
        grid-template-columns: repeat(2, 1fr);
    }

    h2 {
        line-height: 40px;
        font-size: 35px;
    }

    .post-card .card-content {
        padding-top: 20px;
    }

    .episode-card .card-content {
        padding-top: 20px;
    }

    .all-episode-sec .episode-card {
        gap: 30px;
        padding-top: 25px;
    }

    .post-card {
        gap: 30px;
        padding-top: 25px;
    }

    .latest-episode-card,
    .latest-post-card {
        gap: 35px;
        padding-top: 25px;
    }

    .episode-info span,
    .post-info span {
        font-size: 16px;
    }

    .latest-episode,
    .latest-post,
    .post-sec {
        padding-top: 50px;
        position: relative;
    }

    .all-sec-heading h4 {
        font-size: 28px;
    }

    h3 {
        font-size: 25px;
    }

    .home-banner .content h1,
    .home-banner .content h2,
    .inner-pages-banner .content h1,
    .inner-pages-banner .content h2 {
        font-size: 70px;
    }

    .home-banner .content p {
        font-size: 22px;
    }

	.navbar .nav-actions .mob-h {
		display: block;
	}

    .navbar .nav-actions .mobile-toggle {
        display: flex;
        z-index: 101;
    }

    .navbar .nav-links {
        position: absolute;
        top: 90%;
        left: 0;
        width: 100%;
        flex-direction: column;
        padding: 0;
        text-align: center;
        max-height: 0;
        gap: 0;
        opacity: 0;
        overflow: hidden;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
    }

    .navbar .nav-links.active li {
        transition: .3s;
        padding: 15px 0;
        position: relative;
    }

    .navbar .nav-links.active li:hover {
        background-color: var(--Button-color--);
    }

    .mobile-toggle span:nth-child(2) {
        margin-left: -10px;
    }

    .nav-actions .mobile-toggle span {
        transition: 0.3s ease-in-out;
    }

    .mobile-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .navbar .nav-links.active {
        max-height: 500px;
        background: white;
        opacity: 1;
        visibility: visible;
    }

    .navbar .nav-links.active li {
        border-bottom: 1px solid var(--Text-color);
    }

    .navbar .nav-links.active a {
        color: var(--Text-color);
        font-size: 18px;
    }

    /* .navbar .nav-actions {
        flex-direction: row-reverse;
    } */

    .navbar .main-btn {
        display: none;
    }

    p {
        font-size: 16px;
    }

    .episode-card .card-image img {
        height: 250px;
    }
   
    .contact-first-section {
        padding: 50px 0px;
    }
 
    .contact-first-section .contact-first-inner {
        flex-direction: column;
    }

    .contact-first-section .contact-left-content {
        max-width: 100%;
    }

    .contact-first-section .contact-right-content {
        width: 100%;
    }

    .contact-first-section .contact-right-content .contact-text p span {
        font-size: 50px;
        line-height: 60px;
    }
    
    .availability-form {
        max-width: 100%;
    }
   
    .availability-form-sec {
        padding: 60px 0px 0px;
    }

}

@media(max-width:767px) {

    .episode-detail-content ul li {
        font-size: 15px;
    }

	.post-detail-content .container {
        padding-left: 20px;
        padding-right: 20px;
    }

	.episode-detail-content .container {
		padding-left: 20px;
        padding-right: 20px;
	}

    .hosting-sec {
        padding: 40px 0;
    }

    .dav-sec .dav-inner {
        flex-direction: column;
        gap: 30px;
    }

    .dav-sec .dav-inner .img img {
        height: 100%;
    }

    .dav-sec .dav-inner .img {
        width: 100%;
    }

    .dav-sec .dav-inner .content {
        width: 100%;
    }

    .about-cta .inner-content .content {
        width: 100%;
    }

    .about-detail {
        justify-content: center;
        gap: 30px;
        flex-direction: column;
    }

    .about-detail .img {
        width: 100%;
    }

    .about-detail .detail {
        width: 100%;
    }

    .episode-card .card-image img {
        height: 100%;
    }

    .episode-page-latest-episode .latest-card img {
        height: 500px;
    }

    .episode-page-latest-episode .detail-content {
        padding-left: 20px;
        padding-bottom: 20px;
    }

    .navbar .logo a img {
        width: 150px;
    }

    .home-banner .content h1 {
        padding-bottom: 220px;
    }

    .post-detail-content {
        padding: 60px 0px;
    }

    .post-detail-content .content {
        padding: 40px 0 0 0;
    }

    .post-detail-content .content p {
        padding-top: 14px;
    }

    .hashtag .tags {
        justify-content: center;
    }

    .post-detail-content .content h3 {
        padding-top: 30px;
    }

    .episode-detail-content {
        padding: 60px 0px;
    }

    .episode-detail-content .content {
        padding: 40px 0 0 0;
    }

    .episode-detail-content .content h3 {
        padding-top: 30px;
    }

    .episode-detail-content .content p {
        padding-top: 14px;
    }

    .episode-detail-content .content h6,
    .post-detail-content .content h6 {
        font-size: 18px;
        padding-top: 15px;
    }

    .episode-page {
        padding: 60px 0;
    }

    .faq-inner-sec .faqs {
        width: 100%;
    }

    .faq-inner-sec .faq-content {
        width: 100%;
    }

    .faqs-sec .faq-inner-sec {
        flex-direction: column;
        gap: 30px;
    }

    .faq-content .faq-img {
        padding-top: 0;
    }

    .home-episode-sec {
        padding: 40px 0;
    }

    .home-episode-sec {
        /* margin-top: 60px; */
    }

    .post-sec {
        padding-top: 50px;
    }

    .latest-episode {
        padding-top: 50px;
    }

    .tiktok-sec {
        padding: 50px 0;
    }

    .social-media-sec {
        padding: 50px 0;
    }

    .all-podcast-sec {
        padding-top: 50px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .social-media-links h6 {
        font-size: 20px;
    }


    .links-sec {
        gap: 30px;
        padding: 40px 0;
        width: auto !important;
    }

    .page-links ul {
        flex-direction: column;
        gap: 20px;
    }

    .page-links ul li {
        padding-right: 0px;
        border-right: none;
    }

    footer .party-sec {
        flex-direction: column;
        gap: 30px;
        padding: 40px;
    }

    footer .party-sec .party-title {
        width: 100%;
        text-align: center;
    }

    footer .party-sec .email-sec {
        width: 100%;
    }

    .instagram-imgs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding-top: 30px;
    }

    .tiktok-sec .tiktok-videos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .main-btn {
        font-size: 18px;
        padding: 14px 30px;
    }

    .all-episode-sec .episode-card {
        grid-template-columns: 1fr;
    }

    .post-card {
        grid-template-columns: 1fr;
    }

    .latest-episode-card .img img,
    .latest-post-card .img img {
        height: 100%;
    }

    /* .post-sec .main-btn {
        width: 170px !important;
    } */

    h2 {
        line-height: 48px;
        font-size: 40px;
    }

    .post-detail-content blockquote p {
    	border-left: 2px solid #7D4C2C;
    	font-size: 20px !important;
    	padding: 12px 20px 10px;
    	margin-top: 30px;
    }

    .episode-card-content .main-btn,
    .post-card-content .main-btn {
        margin-top: 20px;
    }

    .latest-episode-card .img,
    .latest-post-card .img {
        width: 100%;
    }

    .latest-episode-card,
    .latest-post-card {
        gap: 30px;
        flex-direction: column;
        align-items: start;
    }

    .page-links ul li a {
        font-size: 20px;
    }
    

    .latest-episode-card .episode-card-content,
    .latest-post-card .post-card-content {
        width: 100%;
    }

    .episode-card .card-content {
        gap: 10px;
    }

    .post-card .card-content {
        gap: 10px;
    }

    h3 {
        font-size: 28px;
    }

    .all-sec-heading h4 {
        font-size: 22px;
    }

    .nav-actions {
        flex-direction: row !important;
    }

    /* .nav-actions .search-icon {
        display: none;
    } */

    /* .navbar .navigation-wrap {
        border-bottom: none;
    } */

    /* .episode-btn {
        width: 176px !important;
    } */

    .home-banner {
        height: 100vh;
        /* padding-top: 90px; */
    }

    /*.inner-pages-banner {
        height: 500px;
    }*/

    .home-banner .content h1,
    .inner-pages-banner .content h1,
    .solid-bg-banner h1 {
        font-size: 52px;
        line-height: 60px;
    }

    .behind-img-grid {
        gap: 15px;
    }

    .comment-section {
        padding: 30px !important;
    }

    .behind-img-grid-2 {
        padding-top: 15px !important;
    }

    .home-banner .content,
    .inner-pages-banner .content {
        gap: 13px;
    }

    .home-banner .content h2,
    .inner-pages-banner .content h2 {
        font-size: 60px;
        line-height: 0;
    }

    .home-banner .content p {
        font-size: 18px;
        line-height: 26px;
        text-align: center;
    }

    .home-banner .content h2 span,
    .inner-pages-banner .content h2 span {
        font-size: 35px;
    }

    .search-overlay .search-content input {
        width: 300px;
        font-size: 20px;
    }

    .navbar .nav-links.active a {
        font-size: 16px;
    }

    .tags .inner-tag {
        font-size: 16px;
    }

    .video-thumbnail {
        height: auto !important;
    }

    .play-btn-centered img {
        width: 60px;
    }

    .episode-page-latest-episode {
        margin-top: 20px; 
    }

    .all-podcast-sec .podcast-card {
        padding-top: 20px;
    }

}

@media(max-width:500px) {

    .all-podcast-sec .podcast-card {
        gap: 25px;
    }

    .podcast-card .podcast-inner-card {
        flex-direction: column;
    }

    .podcast-card .card-image {
        width: 100%;
    }

    .podcast-card .card-content {
        width: 100%;
    }

    .post-detail-banner .content h1,
    .episode-detail-banner .content h1,
    .podcast-detail-banner .content h1 {
        font-size: 40px !important;
        line-height: 45px !important;
    }

    .second-h2 {
        padding-left: 0 !important;
        padding-bottom: 14px;
    }

    .comment-section form .row {
        flex-direction: column !important;
    }

    .comment-section {
        padding: 20px !important;
    }

    .episode-download-bar a {
	font-size: 14px;
	gap: 10px;
    }

    .episode-download-bar {
        gap: 20px;
    }
 
    .code-explain-sec .course-cards {
        padding-top: 20px;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .post-detail-content .content .hashtag {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 24px;
    }

    .tiktok .tiktok-img .click-btn img {
        width: 80px;
        height: 80px;
    }

    .behind-img-grid {
        flex-direction: column;
    }

    .behind-img-grid img {
        height: 300px;
        object-fit: cover;
    }

    .behind-img-grid-2 {
        flex-direction: column-reverse;
    }
}

@media(max-width: 390px) {

    .home-banner .content h1,
    .inner-pages-banner .content h1 {
        font-size: 48px;
    }

    .home-banner .content h2,
    .inner-pages-banner .content h2 {
        font-size: 48px;
    }
}


.menu-item-333 {
    border-right: none !important;
}

.comment-section {
    background-color: #E5D0A533;
    padding: 60px;
    margin-top: 60px;
}

.comment-section form .row {
    display: flex;
    gap: 24px;
}

.comment-section form .row .input-group {
    width: 100%;
}

.comment-section form .row input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid black;
    padding: 13px 10px;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--Instrumental-font--);
    color: var(--Text-color);
}

.input-group {
    margin-top: 40px;
}

.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--Instrumental-font--);
    color: var(--Text-color);
    border-bottom: 1px solid black;
    padding: 13px 10px;
}

.comment-section form .row input:focus,
.input-group textarea:focus {
    outline: none;
    border: none;
    border-bottom: 1px solid black !important;
}

.comment-section form button {
    margin-top: 40px;
    background-color: #E5D0A5;
    border: none;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--Instrumental-font--);
    padding: 14px 23px;
    cursor: pointer;
}

.comment-list {
    display: none !important;
}

.pinned-pill-2 {
    display: inline-flex;
    align-items: end;
    background-color: #7D4C2C1A;
    padding: 6px 8px;
    border-radius: 6px;
    margin-bottom: 20px;
    gap: 10px;
}

.pinned-pill-2 img {
    width: 20px !important;
    height: 20px !important;
    filter: brightness(5);
}

.pinned-pill-2 span {
    font-size: 18px;
    color: white;
    font-weight: 400;
    font-family: var(--Instrumental-font--);
}

.search-banner-sec .content span {
    font-family: var(--Amiri-font--);
    font-size: 40px;
    line-height: 100%;
    font-weight: 400;
    color: white;
}

.search-results-sec h4 {
    text-transform: capitalize !important;
}

.search-results-sec .card-content span {
    font-size: 22px;
    font-family: var(--Amiri-font--);
    color: var(--Heading-color);
    text-transform: capitalize;
    font-weight: 500;
}

.search-banner-sec .content h1 {
    font-family: var(--Amiri-font--);
    font-size: 65px;
    line-height: 100%;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
}

.search-results-sec {
    padding: 80px 0;
}

@media(max-width:1024px) {

    .form-sec .flex-container {
        flex-direction: column;
        gap: 40px !important;
    }
    .first-sec .line {
        height: 50px;
    }
	.custom-form form textarea, .custom-form form input {
		font-size: 16px !important;
	}
     .form-sec .flex-container .first-sec,
     .form-sec .flex-container .second-sec {
        width: 100%;
    }
    .search-results-sec {
        padding: 50px 0;
    }
    .search-banner-sec .content h1 {
        font-size: 45px;
    }
}

@media(max-width:767px) {
    #insta .title {
        flex-direction: column;
    }
    .social-media-sec h2 {
        margin-bottom: 0px !important;
    }
    .title-r a {
        padding-top: 20px;
    	margin-bottom: 30px;
	justify-content: center;
    }
    .navbar.darkmd .header-logo {
        margin-left: 0px;
    }
    .navbar .mob-menu-it {
		display: block;
	}
	.form-sec{
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .flex-container .first-sec h2{
        font-size: 32px !important;
        line-height: 35px !important;
        text-align: left !important;
    }
    #wpforms-625{
        margin-top: 10px !important;
    }
    .second-sec .head h4 {
        font-size: 26px !important;
    }
    .first-sec .email h4{
        font-size:26px !important;
    }
    .first-sec .email a{
        font-size: 18px !important;
    }
    .search-banner-sec .content h1 {
        font-size: 40px;
    }
    .availability-form-image {
        margin-top: -50px;
    }
	.availability-form-image img {
		height: auto;
	}
    .thumb-card {
        min-height: 100%;
    }
    .post-tags {
    	flex-direction: column;
    	font-size: 18px;
    	align-items: flex-start;
    }
    .post-tags-label {
	margin: 0px 0px 20px 0px;
    }
}

@media(max-width:500px) {
    .search-banner-sec .content h1 {
        font-size: 30px;
    }

    .search-banner-sec .content span {
        font-size: 27px;
    }

    .search-banner-sec .content p {
        font-size: 20px;
    }
}





/* WP Form */
.form-sec{
    background-size: cover;
    background-position: center center;
    padding-top: 90px;
    padding-bottom: 90px;

}
.form-sec .flex-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}
.flex-container .first-sec{
    width: 700px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flex-container .first-sec h2{
    color: white;
}

.line{
    position: relative;
    width: 1px;
    height: 300px;
    left: 10px;
    background-color: #FFFFFF;
}
.first-sec .email{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.first-sec .email h4{
    font-size: 40px;
    color: white;
    font-family: var(--Amiri-font--);
    font-weight: 400;
    margin: 0;
    line-height: 50px;
}

.first-sec .email a{
    text-decoration: none;
    font-family: var(--Instrumental-font--);
    color: white;
    font-size: 26px;
    font-weight: 500;
}

.second-sec{
    width: 780px;
}

.second-sec .head h4{
    font-size: 40px;
    color: white;
    font-family: var(--Amiri-font--);
    font-weight: 400;
    margin: 0;
    line-height: 50px;
}


/* Contact Form */

.custom-form .wpforms-uploader.dz-clickable {
    padding: 15px 12px 16px 12px !important;
    border: none !important;
    border-bottom: 1px solid white !important;
    border-radius: 0px !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    background: transparent !important;
    color: white !important;
}

.custom-form .modern-title {
    font-family: var(--Instrumental-font--) !important;
    border-radius: 0px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    background: transparent !important;
    color: white !important;
}

.custom-form .wpforms-uploader .dz-message svg {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    opacity: 0.90;
    color: #FFF;
}

.custom-form .wpforms-container div.wpforms-uploader .dz-preview {
    font-family: 'Instrument Sans' ! important;
    padding: 10px ! important;
    background-color: #FFF;
}

.custom-form .wpforms-field-label-inline {
    padding: 0 !important;
}

.custom-form input[type="checkbox"] {
    margin-right: 12px !important;
}

.custom-form form textarea,
.custom-form form input {
    padding: 0 !important;
    border: none !important;
    border-bottom: 1px solid white !important;
    font-family: var(--Instrumental-font--) !important;
    border-radius: 0px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    background: transparent !important;
    color: white !important;
}

.custom-form form input::placeholder,
.custom-form form textarea::placeholder {
    color: white !important;
    opacity: 1 !important;
}

.custom-form form input:focus,
.custom-form form textarea:focus {
    box-shadow: none !important;
    border-bottom: 1px solid white !important;
}

.custom-form form input,
.custom-form .wpforms-field-row {
    max-width: 100% !important;
}

.custom-form .wpforms-field {
    padding: 15px 0 !important;
}

.custom-form .wpforms-field-label-inline{
    font-size: 14px !important;
    color: white !important;
    padding-top: 2px !important;
    font-weight: 400 !important;
    font-family: var(--Instrumental-font--) !important;
}

.custom-form #wpforms-625-field_6_1{
    border: none !important;
}

.custom-form button {
    border-radius: 0px !important;
    padding: 15px 24px !important;
    font-family: var(--Instrumental-font--) !important;
    height: 100% !important;
    width: auto !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #252525 !important;
    background: #E5D0A5 !important;
    position: relative !important;
}

.wpforms-error {
    font-family: var(--Instrumental-font--) !important;
}

/*Contact Form*/