html {
	scroll-behavior: smooth;
}
*{
	padding:0;
	margin:0;
}
.page{
	margin:0 !important;
}
/* Define global colors in :root */
:root {
	--color-primary: #090909;
	--color-secondary: rgba(9, 9, 9, 0.6);
	--color-yellow: #FFC501;
	--color-black: #090909;
	--color-white: #ffffff;
}

/* Typography Styles */

h1.landing-typo {
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 66px;
	line-height: 100%;
	letter-spacing: -2px;
	color: var(--color-primary);
}

h2.landing-typo {
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 80px;
	line-height: 100%;
	letter-spacing: -4px;
	color: var(--color-primary);
}

h3.landing-typo {
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 110%;
	letter-spacing: 0px;
	color: var(--color-primary);
}

h4.landing-typo {
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 400;
	font-size: 38px;
	line-height: 116%;
	letter-spacing: 0px;
	color: var(--color-primary);
}

h5.landing-typo {
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 400;
	font-size: 34px;
	line-height: 116%;
	letter-spacing: 0px;
	color: var(--color-primary);
}

h6.landing-typo {
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 116%;
	letter-spacing: 0px;
	color: var(--color-primary);
}

.body-large {
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 116%;
	letter-spacing: 0px;
	color: var(--color-primary);
	opacity: var(--color-secondary);
}

.body-small {
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 116%;
	letter-spacing: 0px;
	color: var(--color-primary);
	opacity: var(--color-secondary);
}

/* Header CSS */
/* General Header Styling */
.custom-header {
	padding: 0px 15px;
	position: fixed;
	left: 0;
	right: 0;
	z-index: 9;
	top:25px;
}

.navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-wrap {
	background-color: #0F0F1A;
	padding: 6px 6px 6px 24px;
	border-radius: 16px;
	max-width: 1140px;
	background: rgba(21, 21, 21, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(60px);
	margin: 0 auto;
}
.header-buttons .menu-toggle {
	display: none;
}
.custom-header .logo a{
	display:flex;
}
/* Desktop Navigation */
.desktop-menu {
	display: flex;
}

.nav-menu {
	list-style: none;
	display: flex;
	gap: 18px;
}

.nav-menu li {
	display: inline-block;
}

.nav-menu li a {
	color: #ffffff;
	font-family: 'PP Neue Montreal', sans-serif;
	font-size: 16px;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 400;
	opacity: 0.8;
}
.nav-menu li a:hover {
	color: white;
	opacity:1;
	transition: color 0.3s ease;
}

/* Header Buttons */
.header-buttons {
	display: flex;
	gap: 10px;
}
.header-buttons > a.btn-yellow.white-btn{
	background: #ffffff;
	color: var(--color-black);
	border: 2px solid #ffffff;
}
.header-buttons > a.btn-yellow.white-btn:hover{

}
ul#menu-landingpage-manu > li.current_page_item > a,
ul#menu-landingpage-manu > li > a:hover{
	color: var(--color-yellow);
}
.btn-yellow {
	font-weight: 600;
	padding: 10px 12px;
	border-radius: 12px;
	text-decoration: none;
	transition: 0.3s ease;
	font-family: 'Oswald', sans-serif;
	font-size: 15px;
	background-color: var(--color-yellow);
	color: var(--color-black);
	line-height: 21px;
	border: 2px solid var(--color-yellow);
	text-transform: uppercase;
}
.btn-yellow-gtb a {
	font-weight: 600 !important;
	padding: 18px 20px !important;
	border-radius: 12px !important;
	text-decoration: none !important;
	transition: 0.3s ease !important;
	font-family: 'Oswald', sans-serif !important;
	font-size: 18px !important;
	background-color: var(--color-yellow) !important;
	color: var(--color-black) !important;
	line-height: 20px !important;
	border: 2px solid var(--color-yellow) !important;
}
.btn-yellow-gtb a:hover{
	color:var(--color-yellow) !important;
	background-color:transparent !important;
	transition: 0.3s ease !important;
	border-color:var(--color-yellow) !important;
}

.btn-yellow:hover, .menu-toggle:hover, .header-buttons > a.btn-yellow.white-btn:hover{
	color:var(--color-yellow);
	background-color:transparent;
	transition: 0.3s ease;
	border-color:var(--color-yellow);
}
.btn-black-gtb a {
	font-weight: 600 !important;
	padding: 18px 20px !important;
	border-radius: 12px !important;
	text-decoration: none !important;
	transition: 0.3s ease !important;
	font-family: 'Oswald', sans-serif !important;
	font-size: 18px !important;
	background-color: #000 !important;
	color: #fff !important;
	line-height: 20px !important;
	border: 2px solid #000 !important;
}
.btn-black-gtb a:hover{
	color: #000 !important;
	background-color: #fff !important;
	transition: 0.3s ease !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
	font-weight: 600;
	padding: 12px 20px;
	border-radius: 12px;
	text-decoration: none;
	transition: 0.3sease;
	font-family: 'Oswald', sans-serif;
	font-size: 15px;
	background-color: var(--color-white);
	color: var(--color-black);
	line-height: 18px;
	border: 2px solid var(--color-white);
}

/* Mobile Menu */
.mobile-menu {
	display: none;
	padding: 32px 20px;
	width: 100%;
	text-align: center;
}

.mobile-menu .mobile-nav-menu {
	list-style: none;
	padding: 0;
}

.mobile-menu .mobile-nav-menu li {
	margin-bottom: 16px;
}
.mobile-menu .mobile-nav-menu li:last-child{
	margin-bottom:0;
}

.mobile-menu .mobile-nav-menu a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 20px;
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 500;
}
.site-footer {
	background-color: #fcfcfc;
	padding: 20px 0;
}
.site-footer .footer-wrap {
	display: flex;
	justify-content: space-between;
}
.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 15px;
}
.footer-content {
	font-size: 14px;
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 400;
	color: #1F1F1FCC;
	line-height: 20px;
}
.footer-content a {
	color: #1f1f1f;
	font-weight: 500;
	text-decoration: underline;
	transition: .3s ease;
}
.footer-content a:hover{
	color:var(--color-yellow);
	transition: .3s ease;
}
.footer-social {
	display: flex;
	align-items: center;
}
.social-icons {
	list-style: none;
	display: flex;
	padding: 0;
	margin: 0;
	gap:6px;
}
.social-icons li a {
	background-color: #f1f1f1;
	width: 40px;
	display: flex;
	height: 40px;
	justify-content: center;
	align-items: center;
	border-radius: 7px;
	transition: .3s ease;
}
.social-icons img {
	width: 22px;
	object-fit: contain;
	height: 22px;
}
.social-icons li a:hover {
	box-shadow: 0 0 5px #00000045;
	transition: .3s ease;
}
.footer-section {
	background-position: 100% center;
}
.custom-contact-form .submit-button {
	width: 100%;
	background-color: var(--color-yellow) !important;
	border-radius: 10px !important;
	font-size: 18px !important;
	font-family: 'Oswald', sans-serif !important;
	color: var(--color-primary) !important;
}
.footer-section:before {
	content: "";
	width: 50%;
	height: 100%;
	position: absolute;
	background-color: black;
	left: -5px;
}
.full-width-field, .half-width-field {
	width: 100%;
	padding: 12px !important;
	border-radius: 0 !important;
	background-color: transparent !important;
	border-width: 0 0 1px 0 !important;
}
.full-width-field::placeholder, .half-width-field::placeholder {
	color: #fff;
	opacity: 0.8;
	font-size: 16px;
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 400;
}
.form-row{
	display: flex;
	gap: 15px;
}
.wpcf7-textarea.full-width-field {
	height: 90px;
}
.custom-contact-form .wpcf7-acceptance span.wpcf7-list-item {
	margin: 0;
	line-height: 22px;
	color: #fff;
}

.custom-contact-form .wpcf7-acceptance span.wpcf7-list-item .wpcf7-list-item-label{
	margin: 0;
	color: #fff;
	font-size: 16px;
	font-family: 'PP Neue Montreal', sans-serif;
	line-height: 24px;
	font-weight:400;
	opacity:0.8;
}
.heighlight span:after {
	content: "";
	width: 100%;
	height: 50px;
	background-image: url(/wp-content/uploads/2025/02/dream-line-6c48d6.svg);
	bottom: -53px;
	left: 0;
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
}
.heighlight span {
	position: relative;
	color: var(--color-yellow);
	display: inline-block;
}
.custom-contact-form {
	padding-top: 25px;
}
.form-wrap {
	padding: 60px 60px 0 0;
}
/* Slick Slider Dots Styling */
.slick-dots {
	position: absolute;
	bottom: -35px;
	list-style: none;
	display: flex;
	padding: 0;
	margin: 0;
	width: 100%;
}

.slick-dots li {
	margin: 0 5px;
}
.slick-dots li button {
	font-size: 0;
	width: 6px;
	height: 6px;
	padding: 0;
	background: var(--color-primary);
	cursor: pointer;
	transition:.3s ease;
}
.slick-dots li button:hover {
	width: 40px;
	transition:.3s ease;
}
.slick-dots li.slick-active button {
	width: 40px;
	transition:.3s ease;
}
.blog-heading:before {
	content: "";
	width: 100%;
	height: 50px;
	background-image: url(/wp-content/uploads/2025/02/line-2-3bae66.svg);
	position: absolute;
	bottom: -10px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1;
}
.blog-heading {
	max-width: 610px;
	margin-bottom: 0;
	position: relative;
	padding-bottom: 55px;
}
h3.post-card-title {
	text-transform: capitalize;
	font-size: 24px;
	line-height: 27.5px;
	font-weight: 500;
	font-family: 'PP Neue Montreal', sans-serif;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.post-card-image {
	margin-bottom: 15px;
}
h3.post-card-title a{
	color:var(--color-primary);
}
.post-slide-wrap.slick-slide {
	margin: 0 12px;
}
.post-card-image img {
	height: 315px;
	object-fit: cover;
	width: 100%;
}
.post-card-category {
	font-size: 18px;
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 400;
}
.text-yellow span {
	color: var(--color-yellow);
}
.btn-with-img,
.btn-with-arrow{
	width: 100%;
	justify-content: flex-start !important;
	position:relative;
}
.btn-with-img a,
.btn-with-arrow a{
	width:100%;
	text-align:left;
}
.btn-with-img a:after {
	content: "";
	width: 160px;
	height: 100%;
	background-image: url(/wp-content/uploads/2025/03/team-ae8f95.svg);
	position: absolute;
	right: 15px;
	background-repeat: no-repeat;
	background-position: center;
	top: 0;
}

.btn-with-arrow a:after {
	content: "";
	width: 40px;
	height: 100%;
	background-image: url(/wp-content/uploads/2025/05/button-down-arrow-ab567e.svg);
	position: absolute;
	right: 15px;
	background-repeat: no-repeat;
	background-position: center;
	top: 0;
}

.instagram-reels-slider {
	width: 100%;
	max-width: 400px;
	margin: auto;
}
.reel-item {
	text-align: center;
}
.reel-video {
	width: 100%;
	border-radius: 10px;
}
.ryan-img {
	margin-right: -135px;
}
.connect-with-ryan > .wp-block-themeisle-blocks-advanced-columns-overlay {
	background-image: url(/wp-content/uploads/2025/02/Layer-1.webp);
	background-size: contain;
	background-position: center;
	position: absolute;
	width: 100%;
	z-index: 2;
	top: 0;
}
.ryan-video-col .wp-block-image {
	width: 275px;
}
.ryan-video-col {
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: center;
	padding-bottom: 75px;
}
.twitter-col > .wp-block-columns-is-layout-flex {
	background-color: var(--color-yellow);
	padding: 24px;
	border-radius: 24px;
	max-width: 320px;
}
.twitter-col > .wp-block-columns-is-layout-flex h3.wp-block-heading {
	background-color: var(--color-primary);
	position: relative;
	margin-bottom: 15px;
	font-size: 18px;
	font-family: 'oswald', sans-serif;
	padding: 5px 5px 5px 40px;
}
.twitter-col > .wp-block-columns-is-layout-flex h3.wp-block-heading:before {
	content: "";
	width: 25px;
	height: 100%;
	background-image: url(/wp-content/uploads/2025/02/twitter-1-2db3a7.svg);
	background-size: contain;
	position: absolute;
	background-repeat: no-repeat;
	left: 8px;
	top: 2px;
	bottom: 0;
	margin: auto;
	background-position: center;
}
.twitter-col .social-icons a {
	background-color: var(--color-white);
}
.twitter-col > .wp-block-columns-is-layout-flex p {
	margin-bottom: 0;
	font-size: 20px;
	font-family: 'PP Neue Montreal', sans-serif;
	color: var(--color-primary);
}
.twitter-col {
	display: flex;
	flex-direction: column;
	gap: 15px;
	justify-content: flex-end;
	align-items: end;
	padding-bottom: 112px;
}
.twitter-col .footer-social {
	z-index: 2;
}
.insta-real-heading {
	font-size: 18px;
	font-weight: 600;
	font-family: 'Oswald', sans-serif;
	line-height: 20px;
	color: var(--color-primary);
}
.ryan-book-sec p.body-large {
	margin-bottom: 15px;
}
.amazon-btn a, .watch-video-btn a {
	position: relative;
	padding-right: 60px !important;
	text-transform:uppercase;
}
.amazon-btn a:after, .watch-video-btn a:after {
	content: "";
	width: 40px;
	height: 40px;
	background-image: url(/wp-content/uploads/2025/02/amazonsvg-ac262e.svg);
	position: absolute;
	background-size: contain;
	background-position: center;
	top: 0;
	right: 6px;
	bottom: 0;
	margin: auto;
}
.watch-video-btn a:after{
	background-image: url(/wp-content/uploads/2025/03/play-icon-302c21.svg)
}
.book-col figure.wp-block-image {
	position: relative;
	left: 220px;
}
.book-left-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Slick Slider Styles */
/* .client-review-slider {
width: 500px;
} */
.client-review-slider-wrapper {
	max-width: 355px;
	background-color: #F1F1F1D6;
	padding: 24px 24px 45px;
	border-radius: 24px;
	bottom: -83px;
	backdrop-filter: blur(5px);
	margin: -250px auto 0;
}
.client-image {
	width: 55px;
	height: 55px;
	border-radius: 50%;
}
.client-review-title h3.client-name {
	margin-bottom: 6px;
	font-size: 16px;
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 500;
	line-height: 16px;
}
.review-date {
	display: block;
	font-size: 12px;
	color: gray;
	line-height: 14px;
}
.review-text {
	font-size: 18px;
	font-family: 'PP Neue Montreal';
	font-weight: 400;
	color: var(--color-primary);
	margin-bottom: 0;
	line-height: 22px;
}
.read-more-btn {
	color: var(--color-yellow);
	padding: 0;
	border: none;
	cursor: pointer;
	margin-top: 0;
	border-radius: 0;
	background-color: transparent;
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	position:relative;
}
.read-more-btn:hover {
	background-color: transparent;
	color:var(--color-primary);
}

/* Popup Styles */
.popup-overlay {
	display: none;
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999;
	justify-content: center;
	align-items: center;
}
.popup-overlay.active {
	display: flex;
}
.popup-content {
	background: white;
	padding: 30px;
	border-radius: 10px;
	width: 50%;
	text-align: center;
	position: relative;
}
.popup-content h3 {
	margin-top: 0;
	font-size: 28px;
	text-align: left;
	margin-bottom: 0;
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 500;
}
p#popup-description {
	margin-bottom: 0;
	text-align: left;
	font-size: 18px;
	line-height: 24px;
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 400;
	color: var(--color-primary);
}
.close-popup {
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 24px;
	cursor: pointer;
}
.img-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}
.read-more-btn:after {
	content: "";
	width: 8px;
	height: 8px;
	border-style: solid;
	position: absolute;
	top: 4px;
	bottom: 0;
	margin: auto;
	right: -14px;
	transform: rotate(45deg);
	border-width: 3px 3px 0px 0px;
}
.hero-section {
	height: 800px;
}
.hero-section .wp-block-themeisle-blocks-advanced-column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.hero-heading{
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 80px;
	line-height: 100%;
	letter-spacing: -4px;
	margin-bottom:0;
}
p.hero-text {
	font-size: 34px;
	line-height: 39px;
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 400;
	max-width: 314px;
	margin-left: auto;
	margin-bottom: 15px;
}
p.hero-text span {
	color: var(--color-white);
}
.hero-heading span {
	color: var(--color-yellow);
	position: relative;
}
.hero-heading span:after {
	width: 100%;
	height: 50px;
	position: absolute;
	content: "";
	background-image: url(/wp-content/uploads/2025/03/hero-h-line-bf1fb0.svg);
	left: 0;
	background-size: contain;
	bottom: 10px;
	background-repeat: no-repeat;
	background-position: bottom;
}

.marquee-gallery {
	overflow: hidden;
	position: relative;
	white-space: nowrap;
}

.marquee-wrapper {
	display: flex;
	width: max-content;
	gap: 20px;
}

.marquee-content {
	display: flex;
	gap: 20px;
	width:150vw;
}

.marquee-content img {
	width: auto !important;
	object-fit: contain !important;
	max-height:65px;
}
p.intro-text {
	font-size: 34px;
	line-height: 37.8px;
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 500;
	margin: 50px 0;
}
.intro-column {
	max-width: 655px;
	margin: 0 auto;
}
.signature-img {
	margin-top: -145px;
	margin-right: -194px;
	z-index: 2;
	position: relative;
	max-width: 600px;
	margin-left: auto;
}
.speaker-heading{
	margin-bottom:40px;
}
.speaker-heading span {
	color: var(--color-yellow);
	position:relative;
}
.speaker-heading span:after {
	content: "";
	width: 100%;
	height: 50px;
	background-image: url(/wp-content/uploads/2025/03/speaker-line-51433c.svg);
	background-size: contain;
	background-position: top;
	position: absolute;
	bottom: -35px;
	left: 0;
	background-repeat: no-repeat;
}
.speaker-col-left {
	height: 800px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.who-is-column h5 {
	margin-bottom: 10px;
	font-weight: 500;
}
.who-is-column .is-style-plain a {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	text-decoration: underline;
}
.speaker-col-right {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}
.ryan-book-sec {
	overflow: hidden;
}
.gallery-grid .grid-items img {
	height: 335px;
	object-fit: cover;
	width:100%;
}
.watch-video-btn a:before {
	content: "";
	width: 100%;
	height: 22px;
	background-image: url(/wp-content/uploads/2025/03/video-btn-line-422cb0.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -34px;
	right: 0;
	background-position: right;
}
.ryan-educational:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-image: url(/wp-content/uploads/2025/03/bg-1-scaled.webp);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: -1;
}
.ryan-educational {
	position: relative;
	z-index: 1;
}
.post-slider-main {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 0 0;
	margin-bottom: 100px;
}
.custom-contact-form input, .custom-contact-form textarea {
	color: #fff !important;
}
@media (min-height:950px){
	.hero-section {
		height: 100vh !important;
	}
}
/* Responsive Behavior */
@media (max-width:1240px){
	.client-review-slider-wrapper {
		margin: -249px auto 0px 40px;
	}
	.connect-ryan {
		margin-top: -240px !important;
	}
}
@media (max-width:1140px){
	.signature-img {
		margin-top: -100px;
		margin-right: -95px;
		max-width: 445px;
	}
	.book-col figure.wp-block-image {
		position: relative;
		left: 160px;
	}
	.ryan-img {
		margin-right: -30px;
	}
}
@media(max-width:1023px){
	.signature-img {
		margin-top: -100px;
		margin-right: -95px;
		max-width: 445px;
	}
	.hero-heading, h2.landing-typo {
		font-size: 60px;
		line-height: 65px;
	}
	p.hero-text {
		font-size: 32px;
		line-height: 36px;
	}
	p.intro-text {
		font-size: 32px;
		line-height: 34.8px;
	}
	h3.landing-typo {
		font-size: 50px;
		line-height: 100%;;
	}
	.ryan-educational:after {
		background-size: cover;
	}
	.connect-ryan .innerblocks-wrap {
		flex-direction: column;
	}
	.connect-ryan .innerblocks-wrap #wp-block-themeisle-blocks-advanced-column-991882a9 {
		order: 1;
	}
	.connect-ryan .innerblocks-wrap #wp-block-themeisle-blocks-advanced-column-63b974e4 {
		order: 2;
	}
	.connect-ryan .innerblocks-wrap #wp-block-themeisle-blocks-advanced-column-6b7a170d{
		order:3;
	}
	.ryan-img {
		margin-right: -120px;
	}
	.connect-with-ryan > .wp-block-themeisle-blocks-advanced-columns-overlay {
		background-size: 100%;
		background-position: top;
		background-repeat: no-repeat;
	}
	.twitter-col {
		justify-content: center;
		align-items: center;
		padding-bottom: 70px;
	}
	.ryan-video-col {
		padding-bottom: 40px;
		margin-top: -16px;
		z-index: 3;
	}
	.ryan-img:before {
		width: 100%;
		height: 50px;
		background: linear-gradient(90deg, #09090996, #0000000d);
		content: "";
		position: absolute;
		bottom: -40px;
		backdrop-filter: blur(2px);
	}
	.connect-with-ryan {
		overflow-x: hidden;
	}
	.leader-ship .empt-col {
		display: none;
	}
	.leader-ship .empt-col + div {
		padding: 0 20px !important;
		width: 100% !important;
		flex-basis: 100% !important;
		padding-top: 330px !important;
		text-align: center;
	}
	.    .post-slider-main {
		overflow: hidden;
	}


}
@media (max-width:991px){
	.nav-menu {
		gap: 10px;
	}
	.btn-yellow {
		padding: 10px 12px;
	}
	.amazon-btn a {
		max-width: 320px;
	}
	.amazon-btn a span{
		display:block;
		text-align:left;
	}
	.connect-ryan {
		margin-top: -170px !important;
	}
	.connect-with-ryan > .wp-block-themeisle-blocks-advanced-columns-overlay {
		opacity: .8 !important;
	}
	.post-slider-main {
		padding: 0 10px;
	}
	.site-footer .footer-wrap {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		gap: 15px;
		align-items: center;
		text-align: center;
	}
	.mainslideItem.slick-slide {
		height: 300px !important;
	}

	.mainslideItem.slick-current.slick-active {
		height: auto !important;
	}
	.header-buttons .menu-toggle {
		display: block;
	}
	.desktop-menu {
		display: none;
	}

	.header-buttons {
		display: flex;
		align-items: center;
	}

	.mobile-menu {
		display: none;
	}
	.mobile-menu.open {
		display: block;
	}

	.menu-toggle.active + .mobile-menu {
		display: block;
	}
}

@media (max-width: 768px) {


	.hero-section .wp-block-themeisle-blocks-advanced-column {
		justify-content: flex-end;
	}
	p.hero-text {
		font-size: 28px;
		line-height: 32px;
		max-width: 450px;
		margin-left: 0;
	}
	.hero-heading, h2.landing-typo {
		font-size: 46px;
		line-height: 46px;
	}
	.marquee-content {
		width: 250vw;
	}
	.btn-with-img a {
		text-align: center !important;
		height: 100px;
	}
	.btn-with-img a:after {
		content: "";
		height: 45px;
		top: auto;
		left: 0;
		bottom: 12px;
		margin: auto;
	}
	.signature-img {
		margin-top: -65px;
		margin-right: auto;
		max-width: 360px;
		margin-left: auto;
	}
	p.intro-text {
		font-size: 26px;
		line-height: 30px;
		margin: 40px 0;
		text-align: center;
	}
	h3.landing-typo {
		font-size: 44px;
		line-height: 100%;
	}
	.site-footer .footer-wrap {
		flex-direction: column;
		gap: 20px;
		align-items: center;
		text-align:center;
	}
	.social-icons {
		flex-wrap: wrap;
	}
	.ryan-img img {
		width: 70%;
	}
	.connect-ryan {
		margin-top: -125px !important;
	}
	.leader-ship {
		background-position: 30% !important;
	}
	.customTestimonialSlider {
		padding: 85px 20px;
	}
	.post-slider-main ul.slick-dots {
		bottom: 0;
	}
	.post-slider-main{
		overflow:hidden;
	}
}

@media (max-width:600px){
	.client-review-slider-wrapper {
		margin: -190px auto 55px;
	}
	.book-col figure.wp-block-image {
		left: 100px;
	}
	.speaker-col-right {
		justify-content: center;
		align-items: flex-end;
		min-height: 470px;
	}
	.ryan-img {
		margin-right: -80px;
	}
	.connect-ryan {
		margin-top: -100px !important;
	}
	.footer-form .innerblocks-wrap {
		flex-direction: column-reverse !important;
	}
	.client-review-slider-wrapper {
		max-width: 320px;
	}
	.page-template-landing-page{
		overflow-x:hidden;
	}
}
.header-buttons-mobile {
	display: none;
}
@media (max-width: 575px){
	.header-buttons-mobile a.btn-yellow.white-btn{
		background: #ffffff;
		color: var(--color-black);
		border: 2px solid #ffffff;
	}
	.header-buttons-mobile a.btn-yellow.white-btn:hover{
		color: var(--color-yellow);
		background-color: transparent;
		transition: 0.3s 
			ease;
		border-color: var(--color-yellow);
	}
	.header-wrap {
		padding: 12px 12px 12px 12px;
	}
	.header-buttons-mobile a {
		text-align: center;
		width: 100%;
	}
	.header-buttons-mobile {
		display: flex;
		justify-content: space-around;
		padding-bottom: 10px;
		border-bottom: 1px solid #413f3f;
		margin-bottom: 12px;
		column-gap: 10px;
	}
	.header-buttons .btn-yellow{
		display: none;
	}
}

@media (max-width:480px){
	.ryan-img img {
		width: 60%;
	}
	.ryan-img {
		margin-right: -64px;
	}
	.connect-ryan {
		margin-top: -82px !important;
	}
}
@media (max-width:400px){
	.custom-header .btn-yellow, .menu-toggle {
		padding: 7px 10px;
		font-size:12px;
		border-radius:10px;
	}
	.custom-header {
		padding: 0px 15px;;
	}

	.marquee-content {
		width: 300vw;
	}
}

/* Podcast Page Style */

/* All Podccast Section */
.all_podcast h2 {
	font-family: Oswald;
	font-weight: 500;
	font-size: 80px;
	line-height: 100%;
	letter-spacing: -4px;
	text-align: center;
	text-transform: uppercase;
	color: rgba(9, 9, 9, 1);
	margin: 0 0 60px 0;
}

.all_podcast {
	background-color: rgba(241, 241, 241, 1);
	padding: 60px 20px;
}

.episode-info-top {
	width: 100%;
}

.episode-bottom {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.episode-card {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	padding: 30px;
	gap: 20px;
	transition: 0.3s;
	max-width: 1320px;
	margin: 0 auto 30px auto;
}

.episode-card:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.episode-image {
	height: 245px;
}

.episode-image img {
	width: 422px;
	height: 245px;
	object-fit: cover;
	border-radius: 0;
}

.episode-info {
	flex: 1;
}

.episode-meta {
	color: rgba(33, 33, 33, 1);
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 25px;
	font-family: 'PP Neue Montreal', sans-serif;
}

.episode-info {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	min-height: 245px;
	align-items: stretch;
}

.episode-meta {
	font-size: 16px;
	color: #666;
	margin-bottom: 8px;
}

.episode-title {
	margin-bottom: 10px;
	font-weight: 500;
	font-size: 24px;
	line-height: 115.99999999999999%;
	font-family: 'PP Neue Montreal';
	text-transform: capitalize;
	max-width: 440px;
}

.episode-time {
	font-size: 18px;
	color: rgba(33, 33, 33, 1);
	margin: 0;
}

.episode-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-left: 1px solid rgba(165, 165, 165, 0.3);
	padding-left: 30px;
	gap: 16px;
}

.action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(241, 241, 241, 1);
	border-radius: 8px;
	width: 140px;
	height: 55px;
	text-decoration: none;
	color: #000;
	gap: 8px;
	transition: all 0.3s ease;
	font-family: Oswald;
	font-weight: 600;
	font-size: 18px;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase;
}

.action-btn:hover {
	background: #ffc501;
	color: #000;
}

.action-btn img {
	width: 26px;
}

.action-btn i {
	font-style: normal;
}

/* Skeleton Loading */
.skeleton-card {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	padding: 30px;
	gap: 20px;
	max-width: 1320px;
	margin: 0 auto 30px auto;
	animation: pulse 1.5s ease-in-out infinite;
}

.skeleton-image {
	width: 422px;
	height: 245px;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	border-radius: 4px;
	animation: shimmer 2s infinite;
}

.skeleton-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.skeleton-title {
	height: 24px;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	border-radius: 4px;
	animation: shimmer 2s infinite;
	width: 60%;
}

.skeleton-meta {
	height: 14px;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	border-radius: 4px;
	animation: shimmer 2s infinite;
	width: 40%;
}

.skeleton-time {
	height: 18px;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	border-radius: 4px;
	animation: shimmer 2s infinite;
	width: 30%;
	margin-top: 10px;
}

.skeleton-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-left: 1px solid rgba(165, 165, 165, 0.3);
	padding-left: 30px;
}

.skeleton-btn {
	width: 140px;
	height: 55px;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	border-radius: 8px;
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.8;
	}
}

/* Pagination Styling */
.podcast-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 60px;
	padding: 30px 20px;
	flex-wrap: wrap;
}

.podcast-page-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	height: 48px;
	padding: 0 8px;
	background: #f1f1f1;
	border-top: 3px solid transparent;
	border-radius: 0;
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 400;
	font-size: 19px;
	color: #333;
	cursor: pointer;
	transition: all 0.3s ease;
}

.podcast-page-btn:hover:not(:disabled) , .podcast-page-btn.podcast-page-num.active{
	background: #f1f1f1;
	border-color: #ffc501;
	color: #000000;
}

p.episode-time img {
	position: relative;
	top: 2px;
	margin-right: 5px;
}

.podcast-page-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.podcast-page-btn.active {
	font-weight: 700;
}

.podcast-prev-btn,
.podcast-next-btn {
	font-size: 25px;
	min-width: 50px;
}

button.podcast-page-btn.podcast-prev-btn {
	background: rgba(255, 197, 1, 1);
	color: #000;
	border-radius: 9px;
	margin-right: 80px;
}


button.podcast-page-btn.podcast-next-btn {
	background: rgba(255, 197, 1, 1);
	color: #000;
	border-radius: 9px;
	margin-left: 80px;
}

.podcast-ellipsis {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	color: #333;
	font-weight: 600;
	font-size: 16px;
}

@media (max-width:991px) {
	.episode-image img {
		width: 260px;
		height: 245px;
	}
}

@media (max-width: 767px) {
	.all_podcast h2 {
		font-size: 60px;
	}

	.all_podcast {
		padding: 20px 20px;
	}

	.episode-card {
		padding: 17px;
	}

	.episode-title {
		font-size: 23px;
		max-width: 445px;
		margin: auto;
		margin-bottom: 20px;
	}

	.episode-info {
		text-align: center;
		justify-content: center;
		width: 100%;
		align-items: center;
	}

	.episode-image {
		height: auto;
		width: 100%;
		text-align: center;
	}

	.all_podcast h2 {
		font-size: 48px;
		letter-spacing: -2px;
		margin: 0 0 40px 0;
	}

	.episode-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.episode-actions {
		flex-direction: row;
		border-left: none;
		border-top: 1px solid #ddd;
		padding-left: 0;
		padding-top: 15px;
		gap: 10px;
		width: 100%;
		justify-content: center;
	}

	.action-btn {
		width: auto;
		padding: 10px 20px;
		height: 45px;
		font-size: 14px;
		line-height: 20px;
	}

	.episode-info {
		min-height: unset;
	}

	.episode-image img {
		width: 100%;
		height: auto;
		border-radius: 15px;
	}

	.podcast-pagination {
		gap: 6px;
		margin-top: 40px;
		padding: 20px 10px;
	}

	.podcast-page-btn {
		min-width: 40px;
		height: 40px;
		padding: 0 6px;
		font-size: 14px;
	}

	.podcast-prev-btn,
	.podcast-next-btn {
		min-width: 40px;
		font-size: 16px;
	}
}

/* Second Section */
/* After Banner Section */
.after_banner {
	background-color: #000;
	text-align: center;
	color: #fff;
	font-weight: 500;
	font-size: 30px;
	line-height: 110%;
	letter-spacing: 0px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 350px;
	font-family: 'PP Neue Montreal', sans-serif;
}

.lp_sign {
	margin-top: -40px;
}

.lp_mic img {
	margin-top: -190px;
}

.after_banner p {
	max-width: 553px;
	margin: auto;
}

/* Recent Podcast Secion */
/* Recent Podcast Main Container */
.recent-podcast-main .recent_podcast_upper_content {
	display: flex;
}

.recent-podcast-main .podcast_play_info {
	width: 50%;
}

.recent-podcast-main .podcast_actions {
	width: 50%;
}

.recent-podcast-main a.btn.listen img {
	width: 27px;
}

.recent-podcast-main .recent_podcast {
	background: rgba(33, 33, 33, 1);
	max-width: 1320px;
	margin: -215px auto 0 auto;
	padding: 32px;
}

.recent-podcast-main .podcast_container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin: auto;
	flex-wrap: wrap;
}

.recent-podcast-main .podcast_media img {
	width: 650px;
	max-width: 100%;
	display: block;
	height: 370px;
	object-fit: cover;
}

.recent-podcast-main .podcast_content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 370px;
}

.recent-podcast-main .section_label {
	color: rgba(165, 165, 165, 1);
	margin-bottom: 12px;
	font-family: Oswald;
	font-weight: 600;
	font-size: 18px;
	line-height: 20px;
	text-transform: uppercase;
}

.recent-podcast-main .episode_info {
	color: rgba(165, 165, 165, 1);
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 120%;
}

.recent-podcast-main .podcast_title {
	font-family: 'PP Neue Montreal', sans-serif;
	font-weight: 500;
	font-size: 28px;
	line-height: 115%;
	color: #fff;
	text-transform: capitalize;
	margin: 0 0 15px 0;
}

.recent-podcast-main .podcast_meta {
	font-size: 18px;
	color: rgba(165, 165, 165, 1);
	margin-bottom: 0;
}

.recent-podcast-main span.time img {
	position: relative;
	top: 2px;
}

.recent-podcast-main .podcast_actions > a:nth-child(2) {
	position: relative;
	right: -27px;
}

.recent-podcast-main .podcast_actions {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: space-around;
}

.recent-podcast-main .podcast_actions a {
	display: inline-flex;
	align-items: center;
	background: transparent;
	border: none;
	color: #ffc501;
	font-size: 18px;
	gap: 15px;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase;
	font-family: 'Oswald';
	text-decoration: none;
}

.recent-podcast-main .podcast_actions a:hover {
	color: #fff;
}

.recent-podcast-main .podcast_actions .btn i {
	font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
	.recent-podcast-main .podcast_actions {
		gap: 0px;
	}

	.recent-podcast-main .podcast_title {
		font-size: 27px;
	}

	.recent-podcast-main .podcast_actions a {
		font-size: 15px;
	}

	.recent-podcast-main .podcast_container {
		gap: 20px;
	}

	.podcast_media {
		width: 50%;
	}

	.recent-podcast-main .podcast_actions > a:nth-child(2) {
		right: -8px;
	}

	.recent-podcast-main .podcast_content {
		min-height: 310px;
	}

	.recent-podcast-main .podcast_media img {
		width: 100%;
		max-width: 100%;
		height: 300px;
	}

	.recent-podcast-main .recent_podcast {
		max-width: 96%;
	}
}

@media (max-width: 991px) {
	.recent-podcast-main .podcast_actions {
		width: 204px;
		justify-content: space-between;
	}

	.recent-podcast-main .podcast_title {
		font-size: 22px;
		line-height: 125%;
	}

	.recent-podcast-main .podcast_play_info {
		width: 100%;
	}

	.recent_podcast_upper_content {
		display: block;
	}
}

@media (max-width: 767px) {
	.lp_mic img {
		margin-top: -120px;
		max-width: 440px;
	}

	.after_banner {
		font-size: 20px;
		line-height: 30px;
		padding-bottom: 130px;
	}

	.recent-podcast-main .episode_info {
		margin: 0 0 15px 0;
	}

	.podcast_media {
		width: 100%;
	}

	.recent-podcast-main .podcast_media img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}

	.recent-podcast-main .podcast_play_info {
		width: 100%;
		text-align: center;
	}

	.recent_podcast_upper_content {
		display: block !important;
		text-align: center;
	}

	.recent-podcast-main .recent_podcast {
		margin: -100px auto 0 auto;
		padding: 20px;
	}

	.recent-podcast-main {
		padding: 25px;
	}

	.recent-podcast-main .podcast_content {
		min-height: unset;
	}

	.recent-podcast-main .podcast_play_info {
		text-align: center;
	}

	.recent-podcast-main .podcast_actions > a:nth-child(2) {
		right: -13px;
	}

	.recent-podcast-main .podcast_title {
		font-size: 20px;
		line-height: 28px;
		max-width: 400px;
	}

	.recent-podcast-main .podcast_container {
		flex-direction: column;
		text-align: center;
	}

	.recent-podcast-main .podcast_actions {
		width: 100%;
		justify-content: center;
		padding-bottom: 20px;
		gap: 13px;
	}
}

@media (max-width: 480px) {
	.action-btn {
		padding: 7px 10px;
		height: 36px;
		font-size: 12px;
		line-height: 18px;
	}
	.after_banner {
		font-size: 18px;
	}

	.lp_mic img {
		max-width: 100%;
	}
}

/* Recent Podcast Section End */