:root {
}

/* Others */
main.wp-block-group > div:not(.entry-content) {
	display: none;
}

main.wp-block-group .entry-content {
	margin-top: 0;
}

/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	background-color: #1a1a1a;
/* Menus */
}

header li a {
	font-size: 14px;
	font-weight: 500;
	font-family: "Rubik", sans-serif;
	color: white;
	opacity: .5;
	text-decoration: none !important;
	transition: all .15s ease-in-out;
}

header li.current-menu-item a {
	opacity: 1;
}

header li a:hover {
	opacity: 1;
}

header li .wcd__nav__logo a {
	opacity: 1;
	outline: none;
	border: none;
}

/* Header Columns */
.wcd__header > .wp-block-group > * {
	flex: 1;
}

.wcd__header > .wp-block-group > :nth-child(2) {
	flex: 2;
}

.wcd__header > .wp-block-group > :nth-child(3) {
	justify-content: flex-end;
}

/* Logo */
.wcd__header .wp-block-group .wcd__logo {
	margin-bottom: -65px;
}

.wcd__header .wp-block-group .wcd__logo img {
	max-width: 100px;
	width: 100%;
}

/* Header Menus Color */
.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
	color: #fff;
	outline: none;
	background: black;
}

.current-menu-item > a:nth-child(1) {
	background: black;
	outline: none;
}

.wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open {
	background-color: #1a1a1a;
}

.wcd__nav .wcd__nav__logo {
	display: none;
}

@media screen and (max-width: 991.99px) {
	.wcd__header {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	
	.wcd__header > .wp-block-group > * {
		flex: initial;
	}
	
	.wcd__header > .wp-block-group > :nth-child(2) {
		flex: initial;
	}
}

@media screen and (max-width: 767.99px) {
	.wcd__header {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

@media screen and (max-width: 575.99px) {
	.wcd__header .wp-block-group .wcd__logo {
		display: none;
	}
	
	.wcd__nav .wp-block-navigation__responsive-container-open, .wcd__nav .wp-block-navigation__responsive-container-close {
		outline: none;
	}
	
	.wcd__nav .wp-block-navigation__responsive-container-open svg rect, .wcd__nav .wp-block-navigation__responsive-container-close svg rect, .wcd__nav .wp-block-navigation__responsive-container-open svg path, .wcd__nav .wp-block-navigation__responsive-container-close svg path {
		fill: #fff;
	}
	
	.wcd__nav .wcd__nav__logo {
		display: block;
	}
}

/* Header Ends */
/* Main */
main.wp-block-group {
	margin-top: 0;
	padding-top: 78px;
}

/* Hero Section */
.wcd__hero {
	min-height: calc(100dvh - 78px);
	max-height: calc(100dvh - 78px);
	background-position: 50% 100%;
	padding: 110px 2rem;
}

.wcd__hero > .wp-block-columns {
	margin-left: 0 !important;
	margin-right: 0 !important;
	margin-top: 40px;
}

.wcd__hero_col * {
	max-width: 100% !important;
}

.wcd__hero_heading, .wcd__hero_sub_heading {
/* line-height: 72px;
	 */
	color: #25648f;
	font-family: "Rubik", sans-serif;
}

.wcd__hero_highlighted_content {
	font-size: 14px;
	font-weight: 500;
	background: #ebf3f3;
}

.wcd__hero_sub_heading {
	font-size: 2rem;
	line-height: 2.25;
	background: #ebf3f3;
}

.wcd__hero_heading {
	font-size: 4rem;
	line-height: 1.125;
	font-weight: 800;
}

/* Hero Mobile */
@media screen and (max-width: 767px) {
	.wcd__hero {
		background-position: 90% 75%;
		padding: 4rem 1rem;
		background-size: contain !important;
		background-repeat: no-repeat;
		background-color: #EBF3F3;
	}
	
	.wcd__hero_highlighted_content {
		line-height: 1.2;
		margin-bottom: .5rem !important;
	}
	
	.wcd__hero_sub_heading {
		font-size: 1.25rem;
		line-height: 1.6;
	}
	
	.wcd__hero_heading {
		font-size: 2rem;
		line-height: 1.25;
		background: #ebf3f3;
		margin-bottom: 3rem !important;
	}
}

/* Button */
.wcd__btn {
/* 
	/* padding: 8px 16px 8px 16px;
	 */
}

.wcd__btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	font-family: "Rubik", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #3f4144;
	line-height: 1.2;
	padding: 10px 1rem;
	background: #fda13a;
	border: 1px solid #1a1a1a;
	border-radius: 5px;
	filter: drop-shadow(2px 2px 0 #fff);
	outline: none;
	transition: all .15s ease-in-out;
}

.wcd__btn a:hover, .wcd__btn a:active, .wcd__btn a:focus {
	color: #3f4144;
	background: #fda13a;
	border: 1px solid #1a1a1a;
	opacity: .99;
	filter: drop-shadow(4px 4px 0 #fff);
}

.wcd__btn--dark a {
	filter: drop-shadow(2px 2px 0 #1a1a1a);
}

.wcd__btn--dark a:hover, .wcd__btn--dark a:active, .wcd__btn--dark a:focus {
	filter: drop-shadow(4px 4px 0 #1a1a1a);
}

@media screen and (max-width: 767px) {
	.wcd__btn a {
		font-size: 12px;
		min-height: 40px;
	}
	
	.wcd__btn a img {
		max-width: 1rem;
	}
}

/* Button Ends */
/* Button Road */
.wcd__bottom_road {
	position: fixed;
	z-index: 99;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0 !important;
}

.wcd__bottom_road > * {
	width: 100%;
}

.wcd__bottom_road > div {
	max-width: 100% !important;
}

.wcd__bottom_road img {
	width: 100%;
}

.wcd__bottom_road__img {
	line-height: 0;
}

.wcd__bottom_road__img img {
	min-width: 930px;
}

.progress-container {
	margin-top: 0;
}

.progress-bar {
	position: relative;
}

.progress-bar img {
	position: absolute;
	bottom: 0;
	right: 0;
	transform: translateX(50%);
	width: 5rem;
}

@media screen and (min-width: 768px) {
	.progress-bar img {
		width: 120px;
	}
}

@media screen and (min-width: 992px) {
	.progress-bar img {
		width: 170px;
	}
}

.progress-bar__content {
	background: #e2b300;
	position: absolute;
	margin: 0;
	z-index: 99;
/* height: 50px;
	 */
	bottom: 115px;
	right: -30px;
	transform: translateX(100%);
	max-width: 160px;
	width: max-content;
	padding: 10px 1.25rem;
	border-radius: 100px;
	min-height: 20px;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.3;
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .5));
}

.progress-bar__content--reverted {
	right: 250px;
/* top: 12px;
	 */
}

.progress-bar__content::before {
	content: '';
/* background: #E2B300;
	 */
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 40px solid #e2b300;
	line-height: 0;
	position: absolute;
	transform: rotate(50deg);
	left: -15px;
	top: 13px;
	z-index: -1;
}

.progress-bar__content--reverted::before {
	left: 125px;
	top: 14px;
	border-top: 30px solid #e2b300;
}

@media screen and (max-width: 991px) {
	.progress-bar__content {
		bottom: 5rem;
	}
}

@media screen and (max-width: 767px) {
	.progress-bar__content {
		max-width: 5rem;
		padding: .5rem 1rem;
		bottom: 3.5rem;
	}
	
	.progress-bar__content::before {
		border-top: 30px solid #e2b300;
		left: -15px;
		top: 20px;
	}
	
	.progress-bar__content--reverted {
		right: 170px;
	}
	
	.progress-bar__content--reverted::before {
		left: 80px;
		top: 18px;
	}
}

.button-container {
	position: relative;
}

.button-container button {
	position: absolute;
	bottom: 12px;
	z-index: 99;
	cursor: pointer;
	border: none;
	background: transparent;
	outline: none;
	margin: 0;
	padding: 0;
	line-height: 0;
}

.button-container button img {
	aspect-ratio: .2857142857;
	width: .25rem;
}

@media screen and (min-width: 768px) {
	.button-container button img {
		width: 6px;
	}
}

@media screen and (min-width: 992px) {
	.button-container button {
		bottom: 20px;
	}
	
	.button-container button img {
		width: 10px;
	}
}

.hoverable__stop_content {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: all 1000ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
}

.hoverable__stop_content span {
	display: inline-block;
	width: max-content;
	padding: 6px 10px 6px 6px;
	line-height: 1.2;
	font-size: 4px;
	color: #fff;
	transform: rotate(-7deg);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 35px;
/* transition: ;
	 */
}

.hoverable__stop_content svg {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	left: 50%;
	transform: translateX(-50%);
}

.button-container > button:hover > .hoverable__stop_content {
/* animation: bounce .5s normal;
	 */
	transform: translateX(-50%) scale(2);
	opacity: 1;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0) scale(2);
	}
	
	40% {
		transform: translateY(-30px) scale(2);
	}
	
	60% {
		transform: translateY(-15px) scale(2);
	}
}

/* WCD Join */
.wcd__join {
	min-height: calc(100dvh - 78px);
	padding: 110px 2rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	background-position: bottom center;
}

.wcd__join .wcd__join__heading_wrapper {
	max-width: 370px;
	margin: 0 auto 3rem;
}

.wcd__join__heading {
	font-family: "Rubik", sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
}

.wcd__join__sub_heading {
	margin: .25rem 0 0;
}

.wcd__join .wcd__join__col_wrapper {
	max-width: 980px;
	position: relative;
	z-index: 1;
}

.wcd__join .wcd__join__col_wrapper::after {
	content: '';
	position: absolute;
	top: -170px;
	right: -60px;
	background: url('https://delhi.wordcamp.org/2024/files/2024/05/join-camp.png')no-repeat;
	aspect-ratio: 180/200;
	max-width: 180px;
	width: 100%;
	background-size: 100%;
	height: 100%;
	z-index: -1;
}

.wcd__join .wcd__join__col_wrapper > .wp-block-column {
	border: 1px solid #000;
	border-radius: 10px;
	padding: 1rem;
	background: #fff;
	filter: drop-shadow(0 0 4px rgba(0,0,0, .25));
	display: flex;
	flex-direction: column;
}

.wcd__join__card_desc {
	margin-top: 0;
	flex: 1;
}

.wcd__join__card_heading {
	font-family: "Rubik", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	text-align: left;
	margin-bottom: 1rem;
}

.wcd__join__card_heading strong {
	font-size: 1.5rem;
}

.wcd__join .wcd__join__col_wrapper .wcd__btn--dark {
	width: 100%;
}

.wcd__join .wcd__join__col_wrapper .wcd__btn--dark img {
	max-width: 14px;
	width: 100%;
}

.wcd__join .wcd__join__col_wrapper .wcd__btn--dark .wp-block-button__link {
	justify-content: space-between;
}

@media screen and (max-width: 1200px) {
	.wcd__join .wcd__join__col_wrapper::after {
		right: 0;
	}
}

@media screen and (max-width: 992px) {
	.wcd__join .wcd__join__col_wrapper::after {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.wcd__join {
		padding: 4rem 1rem;
		font-size: 14px;
		background-position: 90% 100%;
		background-color: #EBF3F3;
		background-size: contain !important;
		background-repeat: no-repeat;
	}
	
	.wcd__join__heading {
		font-size: 1.5rem;
	}
	
	.wcd__join__card_heading {
		font-size: 1rem;
	}
	
	.wcd__join__card_heading strong {
		font-size: 1.25rem;
	}
}

/* Why Camp */
.wcd__why {
	min-height: calc(100dvh - 78px);
	padding: 110px 2rem;
	background: url('https://delhi.wordcamp.org/2024/files/2024/05/lp-why.png')no-repeat;
	background-position: bottom center;
	background-size: cover;
}

.wcd__why .wcd__why__heading_wrapper {
	max-width: 490px;
	margin: 0 auto 0 60px !important;
	position: relative;
}

.wcd__why .wcd__why__heading_wrapper .wcd__why__heading {
	font-family: "Rubik", sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
}

.wcd__why .wcd__why__heading_wrapper .wcd__why__sub_heading {
	font-size: 1rem;
	font-weight: 400;
}

.wcd__why .wcd__why__heading_wrapper::before {
	content: '';
	position: absolute;
	left: -5rem;
	top: 0;
	background: url('https://delhi.wordcamp.org/2024/files/2024/05/why-lamp.png')no-repeat;
	background-size: 100%;
	aspect-ratio: 70/100;
	max-width: 70px;
	width: 100%;
}

.wcd__why .wcd__why__col_wrapper {
	max-width: initial;
	margin-top: 4rem;
}

.wcd__why .wcd__why__col_wrapper .wcd__why__col_counter {
	padding: 1.5rem 6.25rem;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	color: #FDA13A;
}

.wcd__why .wcd__why__col_wrapper .wcd__why__col_counter p {
	margin: 0;
}

.wcd__why .wcd__why__col_wrapper .wcd__why__col_counter strong {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 20px;
}

.wcd__why .wcd__why__col_wrapper .wcd__why__col_counter > .wp-block-columns {
	max-width: 250px;
}

.wcd__why .wcd__why__col_wrapper .wcd__why__col_content {
	max-width: 600px;
	flex: 2;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.75;
	color: #25648F;
}

.wcd__why .wcd__why__col_wrapper .wcd__why__col_content > .wp-block-group {
	position: relative;
	padding-right: 60px;
	padding-bottom: 1rem;
	margin-top: 0 !important;
	margin-bottom: 1rem;
	border-bottom: 1px solid #FDA13A;
}

.wcd__why .wcd__why__col_wrapper .wcd__why__col_content > .wp-block-group:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border: none;
}

.wcd__why .wcd__why__col_wrapper .wcd__why__col_content > .wp-block-group p:last-child {
	position: absolute;
	right: 0;
	bottom: 1rem;
}

.wcd__why .wcd__why__col_wrapper .wcd__why__col_content > .wp-block-group p {
	max-width: 530px;
	margin-left: 0 !important;
}

.wcd__why .wcd__why__col_wrapper .wcd__why__col_content > .wp-block-group p strong {
	font-weight: 500;
}

.wcd__why .wcd__why__col_wrapper .wcd__why__col_content > .wp-block-group:last-child p:last-child {
	bottom: 0;
}

@media screen and (max-width: 1200px) {
	.wcd__why .wcd__why__col_wrapper .wcd__why__col_counter {
		padding-right: 2.5rem;
		padding-left: 2.5rem;
	}
	
	.wcd__why .wcd__why__col_wrapper .wcd__why__col_counter > .wp-block-columns {
		flex-wrap: nowrap !important;
		max-width: 300px;
	}
}

@media screen and (max-width: 992px) {
	.wcd__why .wcd__why__heading_wrapper {
		margin: 0 auto !important;
	}
	
	.wcd__why .wcd__why__heading_wrapper .wp-block-heading, .wcd__why .wcd__why__heading_wrapper .wcd__why__sub_heading {
		text-align: center;
	}
	
	.wcd__why .wcd__why__col_wrapper {
		margin-top: 2.25rem;
		gap: 2.25rem;
	}
	
	.wcd__why .wcd__why__col_wrapper .wcd__why__col_counter {
		padding: 0 1rem;
	}
	
	.wcd__why .wcd__why__col_wrapper .wcd__why__col_counter > .wp-block-columns {
		max-width: initial;
	}
	
	.wcd__why .wcd__why__col_wrapper .wcd__why__col_content {
		max-width: initial;
	}
}

@media screen and (max-width: 767px) {
	.wcd__why {
		padding: 4rem 1rem;
	}
	
	.wcd__why .wcd__why__heading_wrapper {
		max-width: initial;
		margin: 0 2.5rem !important;
	}
	
	.wcd__why .wcd__why__heading_wrapper::before {
		max-width: 45px;
		left: 0;
		top: -1.25rem;
	}
	
	.wcd__why .wcd__why__heading_wrapper .wcd__why__heading {
		font-size: 1.5rem;
		margin: 0 auto 2.25rem !important;
		padding: 0 2.25rem;
		max-width: max-content;
	}
	
	.wcd__why .wcd__why__heading_wrapper .wcd__why__sub_heading {
		font-size: 14px;
	}
}

.d-none {
	display: none !important;
}

/* Amartya's Code */
.auto-progress {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.road-image {
	width: 100vw;
}

.auto-image {
	margin-bottom: -150%;
}

.speech-bubble {
	position: relative;
	background: #caa413;
	border-radius: 10px;
	padding: 20px;
	color: #000;
	font-size: 14px;
	text-align: center;
	width: fit-content;
	max-width: 300px;
	bottom: 200px;
	left: 50px;
	width: 150px;
	height: 15px;
}

.speech-bubble::after {
	content: '';
	position: absolute;
	bottom: 8px;
/* Adjust based on the size of the triangle */
	left: 20px;
/* Adjust based on the position of the triangle */
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-top-color: #caa413;
	border-bottom: 0;
	margin-left: -20px;
	margin-bottom: -20px;
}

.auto-group {
	height: 150px;
	width: 180px;
	animation: moveImage 40s linear infinite;
}

@keyframes moveImage {
	0% {
		transform: translateX(0);
	}
	
	11% {
		transform: translateX(11vw);
	}
	
	22% {
		transform: translateX(22vw);
	}
	
	33% {
		transform: translateX(33vw);
	}
	
	44% {
		transform: translateX(44vw);
	}
	
	55% {
		transform: translateX(55vw);
	}
	
	66% {
		transform: translateX(66vw);
	}
	
	77% {
		transform: translateX(77vw);
	}
	
	88% {
		transform: translateX(88vw);
	}
	
	100% {
		transform: translateX(100vw);
	}
}

.speech-bubble span {
	position: absolute;
	opacity: 0;
	width: 150px;
	left: 20px;
	bottom: 10px;
	animation: changeContent 40s linear infinite;
/* 8 messages * 11 seconds each */
}

.speech-bubble span:nth-child(1) {
	animation-delay: 0;
}

.speech-bubble span:nth-child(2) {
	animation-delay: 5s;
}

.speech-bubble span:nth-child(3) {
	animation-delay: 10s;
}

.speech-bubble span:nth-child(4) {
	animation-delay: 15s;
}

.speech-bubble span:nth-child(5) {
	animation-delay: 20s;
}

.speech-bubble span:nth-child(6) {
	animation-delay: 25s;
}

.speech-bubble span:nth-child(7) {
	animation-delay: 30s;
}

.speech-bubble span:nth-child(8) {
	animation-delay: 35s;
}

@keyframes changeContent {
	0%, 12.5% {
		opacity: 1;
	}
	
	12.6%, 100% {
		opacity: 0;
	}
}

.why-section {
	background-image: url('https://delhi.wordcamp.org/2024/files/2024/05/lp-why.png');
	background-position: center center;
	background-size: cover;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 10px;
	align-items: center !important;
	padding-bottom: 15%;
	margin-top: 0 !important;
}

.why-section-heading {
	display: flex;
	gap: 10px;
	margin-top: 5%;
	align-items: flex-end;
}

.why-wordcamp-text {
	font-size: 50px;
	font-weight: 800;
	color: #25648F;
}

.why-hero-text {
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	color: #508EBD;
	width: 40%;
}

.why-numbers-section {
	display: flex;
	gap: 100px;
}

.why-number-text {
	font-weight: 700;
	font-size: 30px;
	color: #FDA13A;
	text-align: center;
	margin-bottom: 0 !important;
}

.why-info-text {
	font-weight: 400;
	font-size: 20px;
	color: #FDA13A;
	text-align: center;
	margin-top: 0 !important;
}

.what-when-why {
	width: 60%;
}

.what-when-why-section-plain {
	border-bottom: none !important;
}

.what-when-why-section {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	border-bottom: #FDA13A 1px solid;
}

.what-when-why-section-text {
	color: #25648F;
	font-size: 16px;
	font-weight: 400;
	margin-right: 10%;
}

.what-when-why-section-heading {
	color: #FDA13A;
	font-size: 14px;
	font-weight: 500;
}

.gold-sponsors-section {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.gold-sponsors-section {
	background-color: #EBF3F3;
	margin-top: 0 !important;
}

.sponsor-info-section {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 80px;
	padding-bottom: 4%;
}

.gold-sponsors-grid {
	padding-bottom: 4%;
	padding-top: 4%;
}

.gold-sponsor-section-heading {
	font-size: 40px;
	font-weight: 800;
	text-align: center;
	color: #25648F;
}

.gold-sponsors-row {
	display: flex;
	gap: 60px;
	justify-content: center;
	margin-top: 6%;
}

.gold-sponsors-row-mobile {
	gap: 30px;
	justify-content: center;
	margin-top: 6%;
	display: none;
}

.gold-sponsor-tiles {
	display: flex;
	gap: 65px;
}

.gold-sponsor-tile {
	width: 180px;
	height: 180px;
	gap: 0;
	border-radius: 10px;
	background-color: #FFFF;
	display: flex;
	justify-content: center;
	align-items: center;
}

.weglot-image {
	height: 65px;
	width: 125px;
}

.godaddy-image {
	width: 138px;
	height: 35px;
}

.bluehost-image {
	width: 135px;
	height: 26px;
}

.jetpack-image {
	width: 160px;
	height: 120px;
}

.siteground-image {
	width: 155px;
	height: 49px;
}

.gold-sponsor-info {
	width: 335.07px;
	gap: 0;
	border-radius: 10px 0 0 0;
}

.sponsor-info-card {
	position: relative;
	width: 350px;
	min-height: 530px;
	padding: 20px;
	background-color: white;
	border-radius: 10px;
	padding-right: 60px;
	font-family: Arial, sans-serif;
}

.sponsor-info-card::before {
	content: '';
	position: absolute;
	top: 20px;
	left: -10px;
	width: 20px;
	height: 20px;
	background-color: white;
	transform: rotate(45deg);
}

.sponsor-info-card h1 {
	margin: 0;
	font-size: 1.5em;
	color: #25648F;
}

.sponsor-info-details {
	animation: fade 70s infinite;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	flex-direction: column;
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 80%;
}

.sponsor-info-details:nth-child(1) {
	animation-delay: 0;
}

.sponsor-info-details:nth-child(2) {
	animation-delay: 10s;
}

.sponsor-info-details:nth-child(3) {
	animation-delay: 20s;
}

.sponsor-info-details:nth-child(4) {
	animation-delay: 30s;
}

.sponsor-info-details:nth-child(5) {
	animation-delay: 40s;
}

.sponsor-info-details:nth-child(6) {
	animation-delay: 50s;
}

.sponsor-info-details:nth-child(7) {
	animation-delay: 60s;
}

@keyframes fade {
	0% {
		opacity: 0;
		visibility: hidden;
	}
	
	10% {
		opacity: 1;
		visibility: visible;
	}
	
	15% {
		opacity: 1;
		visibility: visible;
	}
	
	20% {
		opacity: 0;
		visibility: hidden;
	}
	
	100% {
		opacity: 0;
		visibility: hidden;
	}
}

.sponsor-info-card .content-placeholder {
	width: 80%;
	height: 40px;
	background-color: #ddd;
	margin: 20px auto 0;
	border-radius: 5px;
}

.sponsor-details {
	height: 120px;
	position: relative;
}

.sponsor-cta {
	width: 210px;
	height: 50px;
	background-color: #D9D9D9;
	cursor: pointer;
	margin-right: auto;
}

.sponsor-content {
	margin-right: 8%;
}

.footer-hero {
	display: flex;
	padding-left: 5%;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.footer-heading {
	font-size: 30px;
	font-weight: 800;
	color: #25648F;
}

.footer-byline {
	font-size: 14px;
	font-weight: 400;
	color: #508EBD;
}

.footer-hero-text {
	flex: 1;
}

.footer-hero-image {
	flex: 2;
}

.hanuman-image {
	margin-bottom: -5%;
	margin-left: 20%;
}

.footer-platform {
	width: 100vw;
}

.footer-platform-image {
	width: 100%;
}

.footer-links-section {
	display: flex;
	justify-content: space-around;
	margin-top: -.65% !important;
}

.train-image {
	width: 100%;
}

.lamp-image {
	width: 12%;
}

.wc-header {
	background-color: #000;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	height: 50px;
}

.wc-header-logo {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

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

.wc-dropdown {
	position: relative;
	display: inline-block;
	margin-left: 10px;
}

.wc-dropdown-button {
	border-radius: 10px;
	background-color: #F5A623;
	color: black;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	border: 1px solid #000000;
	box-shadow: 2px 2px 0 0 #FFFFFF;
}

.wc-dropdown-button:after {
	content: '\25BC';
	font-size: 12px;
}

.wc-dropdown-content {
	margin-left: 5%;
	display: none;
	position: absolute;
	background-color: #F5A623;
	min-width: 160px;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.wc-dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.wc-dropdown-content a:not(:last-child) {
	border-bottom: 1px solid black;
}

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

.wc-dropdown:hover .wc-dropdown-content {
	display: block;
}

.wc-dropdown:hover {
	transform: translateY(-5%);
}

.wc-header-logo-container {
	transform: translateY(50%);
}

@media screen and (max-width: 600px) {
	#tix-attendees .tix-columns-3 li {
		width: 100% !important;
	}
	
	.why-wordcamp-text {
		font-size: 24px;
	}
	
	.abcd {
		margin-left: 5% !important;
		margin-right: 5% !important;
	}
	
	.extrasp {
		display: none !important;
	}
	
	.wc-header-logo {
		width: 60px;
		height: auto;
		border-radius: 50%;
	}
	
	.ccolu {
		align-content: center;
		justify-content: center;
		display: flex;
		flex-flow: column;
		text-align: center;
		margin-top: 20% !important;
	}
	
	.fircol {
		margin-top: 0 !important;
	}
	
	.headorg {
		margin-bottom: -20% !important;
	}
	
	div.alignfull:nth-child(1) {
		margin-top: 0;
		margin-bottom: 0;
		padding-right: 5px;
		padding-left: 5px;
		background-position: 50% 100%;
		background-repeat: no-repeat !important;
		background-size: contain;
		padding-bottom: 80px;
		background-color: #ebf3f3;
	}
	
	#hero {
		background-size: contain !important;
		background-position: bottom !important;
		background-repeat: no-repeat !important;
		min-height: 450px !important;
	}
	
	.wc-header {
		height: 50px;
	}
	
	.why-number-text {
		font-size: 20px;
	}
	
	.why-info-text {
		font-size: 16px;
	}
	
	.footer-links-section > img:nth-child(2), .footer-links-section > img:nth-child(4) {
		display: none !important;
	}
	
	.footer-links-section {
		flex-direction: column !important;
	}
	
	.footer-subscribe {
		display: none !important;
	}
	
	.why-hero-text {
		width: 90%;
	}
	
	.what-when-why {
		width: 90%;
	}
	
	.lamp-image {
		width: 15%;
	}
	
	.why-section {
		padding-bottom: 40%;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: bottom;
		background-color: #ebf3f3;
		margin-top: 100px !important;
		min-height: 100px !important;
	}
	
	.hcol {
		margin-top: 0 !important;
	}
	
	.pillar-middle-section {
		text-align: center;
	}
	
	.sponsor-info-section {
		flex-wrap: wrap;
	}
	
	.hanuman-image {
		margin-left: -1%;
	}
	
	.sponsor-info-section {
		padding-left: 7%;
	}
	
	.gold-sponsors-row {
		display: none;
	}
	
	.gold-sponsors-row-mobile {
		display: flex;
	}
	
	.sponsor-info-card {
		margin: 5%;
		margin-top: -20%;
		height: 500px;
	}
	
	.sponsor-info-card::before {
		display: none;
	}
	
	.auto-progress {
		display: none;
	}
}

/* Pahwa tests*/
.footer-content {
	display: flex;
	justify-content: space-between;
	padding: 2rem;
	background-color: #f5f5f5;
}

.footer-info {
	display: flex;
	gap: 2rem;
}

.event-details {
	max-width: 300px;
}

.event-date {
	color: #FDA13A;
	font-weight: 500;
}

.event-tagline {
	color: #25648F;
}

.event-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: #25648F;
}

.event-location {
	font-weight: 500;
}

.meetup-image img {
	max-width: 200px;
	border-radius: 5px;
}

.footer-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.subscribe-form {
	display: flex;
	gap: .5rem;
}

.subscribe-form input {
	padding: .5rem;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.footer-links {
	display: flex;
	gap: .5rem;
}

.station-markers {
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: absolute;
	bottom: 10px;
}

.station-marker {
	background-color: #FDA13A;
	color: #1A1A1A;
	padding: .25rem .5rem;
	border-radius: 5px;
	font-weight: 700;
}

@media screen and (max-width: 768px) {
	.footer-content {
		flex-direction: column;
		gap: 2rem;
	}
	
	.footer-info {
		flex-direction: column;
	}
	
	.footer-links {
		flex-wrap: wrap;
	}
}

.jetpack-subscription-form {
	margin-bottom: 1rem;
}

.jetpack_subscription_widget {
	display: flex;
	gap: .5rem;
}

#subscribe-email input {
	padding: .5rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 100%;
}

#subscribe-submit button {
	font-family: "Rubik", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #3f4144;
	line-height: 1.2;
	padding: 10px 1rem;
	background: #fda13a;
	border: 1px solid #1a1a1a;
	border-radius: 5px;
	filter: drop-shadow(2px 2px 0 #fff);
	outline: none;
	transition: all .15s ease-in-out;
	cursor: pointer;
}

#subscribe-submit button:hover {
	filter: drop-shadow(4px 4px 0 #fff);
}

@media screen and (max-width: 768px) {
	.jetpack_subscription_widget {
		flex-direction: column;
	}
}

.footer-date {
	color: #A35725;
	font-size: 14px;
	font-weight: bold;
}

.no-bottom-margin {
	margin-bottom: 0;
}

.no-top-margin {
	margin-top: 0;
}

.pillar-middle-section {
	padding-left: 2%;
	margin-top: 50px;
}

.footer-place {
	color: #A35725;
	font-size: 14px;
}

/* Subscription Section */
.footer-subscribe {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 20px;
}

.footer-input {
	width: 300px;
	padding: 10px;
	border-radius: 25px 0 0 25px;
	border: 1px solid #000;
	outline: none;
	font-size: 16px;
}

.footer-button {
	padding: 10px 20px;
	background-color: #f4a261;
	color: #fff;
	border: 1px solid #000;
	border-radius: 0 25px 25px 0;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	outline: none;
	transition: background-color .3s;
}

.footer-button:hover {
	background-color: #e76f51;
}

/* Footer Links Section */
.footer-links {
	margin-top: 5%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-link {
	display: inline-block;
	padding: 10px 20px;
	border: 2px solid #bc6c25;
	border-radius: 25px;
	text-decoration: none;
	color: #C87641;
	font-size: 16px;
	width: 98px;
	z-index: 20;
	font-weight: bold;
	text-align: center;
	transition: background-color 0.3s, color .3s;
}

.footer-link:hover {
	background-color: #bc6c25;
	color: #fff;
}

.nav-links {
	margin-top: 1%;
}

.nav-links a {
	margin: 0 15px;
	color: white;
	font-size: 14px;
	padding-top: 2%;
	text-decoration: none;
	opacity: 100%;
}

.nav-links a:hover {
	opacity: 50%;
}

/* Misc - Pahwa */
#form-sticky {
	position: sticky;
	top: 120px;
/* Adjust the top offset as needed */
	z-index: 10;
/* Ensures it stays on top of other elements */
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

#speakhead {
	margin-right: 10px;
/* Adds some space between text and image */
	font-family: var(--wp--preset--font-family--system-sans-serif) !important;
	color: #25648f;
	font-weight: bold;
}

#speakimg {
	width: 70px;
/* Adjust as needed */
	height: auto;
}

#subli {
	margin-top: -20px;
	color: #25648f;
}

.header-containero {
	display: flex;
	align-items: center;
	background-color: ebf3f3;
	justify-content: center;
}

#speakheado {
	margin-right: 10px;
/* Adds some space between text and image */
	font-family: var(--wp--preset--font-family--system-sans-serif) !important;
	color: #25648f;
	font-weight: bold;
}

#speakimgo {
	width: 70px;
/* Adjust as needed */
	height: auto;
}

#sublio {
	margin-top: -20px;
	color: #25648f;
	text-align: center;
	background: #ebf3f3;
}

.left-aligned-separator {
	margin: 20px 0;
	margin-right: auto;
	margin-left: 0;
	border: none;
	border-top: 1px solid #000;
/* Adjust color and thickness as needed */
}

.plati {
	margin-left: 20% !important;
	margin-right: 20% !important;
}

@media screen and (max-width: 768px) {
	.plati {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}

.footer-links-section > div:nth-child(3) {
	margin-top: 100px;
}

/* tablets portrait */
/* Tablet Portrait */
@media only screen and (min-width: 600px) and (max-width: 900px) and (orientation: portrait) {
	/* Your styles for tablet portrait here */
	.sponsor-info-section {
		flex-direction: column;
	}
	
	.sponsor-info-card::before, wp-block-jetpack-subscriptions__form-elements {
		display: none;
	}
	
	.sponsor-info-details {
		width: 80%;
	}
	
	.footer-links-section > img:nth-child(2), .footer-links-section > img:nth-child(4) {
		display: none !important;
	}
	
	.footer-links-section {
		flex-direction: row;
	}
}

@media screen and (max-width: 768px) {
	.sponsor-info-section {
		padding: 0;
	}
	
	#hero {
		margin-bottom: -100px !important;
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.lamp-image, .why-wordcamp-text, .why-hero-text {
		z-index: 10;
	}
}

@media only screen and (max-width: 812px) and (orientation: landscape) {
	.sponsor-info-section {
		flex-direction: column !important;
	}
	
	.sponsor-info-card::before, wp-block-jetpack-subscriptions__form-elements {
		display: none !important;
	}
	
	.sponsor-info-details {
		width: 80% !important;
	}
	
	.footer-links-section > img:nth-child(2), .footer-links-section > img:nth-child(4) {
		display: none !important;
	}
	
	.footer-links-section {
		flex-direction: row !important;
	}
	
	.footer-subscribe {
		display: none !important;
	}
	
	.why-wordcamp-text {
		font-size: 1.8rem !important;
	}
	
	#hero {
		background-size: contain !important;
		background-position: bottom !important;
		background-repeat: no-repeat !important;
		min-height: 450px !important;
	}
	
	.why-section {
		margin-top: 100px !important;
		background-repeat: no-repeat !important;
		background-position: bottom !important;
		background-color: #ebf3f3 !important;
		background-size: contain !important;
	}
	
	.wcd__join {
		padding-left: 20% !important;
		padding-right: 20% !important;
	}
}

.ccolu {
	align-content: center;
	display: flex;
	flex-flow: column;
	text-align: center;
}

#hero {
	margin-top: -10px !important;
}

.sidecol {
	justify-content: flex-start !important;
}

.wc-header-logo-container > a:nth-child(1) {
	outline: none;
}

.ham-menu-icon {
	display: block;
	cursor: pointer;
	width: 30px;
	height: 30px;
	position: relative;
}

.ham-menu-icon span {
	display: block;
	width: 100%;
	height: 4px;
	background-color: white;
	margin: 5px 0;
	transition: .3s ease;
}

#ham-menu-toggle {
	display: none;
}

.ham-menu {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: none;
	background-color: #444;
}

.ham-menu li {
	padding: 10px;
	background-color: #444;
	margin: 5px 0;
}

.ham-menu li a {
	color: white;
	text-decoration: none;
	display: block;
}

.ham-menu li:hover {
	background-color: #555;
}

#ham-menu-toggle:checked+.menu-icon span:nth-child(1) {
	transform: rotate(45deg);
	top: 10px;
}

#ham-menu-toggle:checked+.menu-icon span:nth-child(2) {
	opacity: 0;
}

#ham-menu-toggle:checked+.menu-icon span:nth-child(3) {
	transform: rotate(-45deg);
	top: -10px;
}

#ham-menu-toggle:checked~.menu {
	display: block;
}

/* Responsive behavior */
@media(min-width: 600px) {
	.ham-menu {
		display: flex;
	}
	
	.ham-menu li {
		margin: 0 10px;
	}
	
	.ham-menu-icon {
		display: none;
	}
}

.wp-block-jetpack-subscriptions__supports-newline {
	z-index: 20;
}

.entry-content {
	margin-top: -10px !important;
}

.footer-button-links-section {
	justify-content: center;
	display: flex;
	flex-direction: column;
	margin-top: 0 !important;
}

.wp-block-navigation__responsive-container-open {
	margin-right: 100% !important;
	border: 1px solid;
	border-radius: 5px;
}

.wp-block-navigation__responsive-container-close {
	color: white;
}

.sponsorship-table tr {
	background: white;
}

/* Desktop styles */
.sponsorship-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1em;
	color: #25648f;
}

.sponsorship-table th,
.sponsorship-table td {
	border: 1px solid #ddd;
	padding: 12px;
	text-align: left;
	vertical-align: top;
}

.sponsorship-table th {
	font-weight: bold;
}

/* Mobile styles */
@media screen and (max-width: 767px) {
	.sponsorship-table thead {
		display: none;
	}
	
	.sponsorship-table, 
	  .sponsorship-table tbody, 
	  .sponsorship-table tr, 
	  .sponsorship-table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
	
	.sponsorship-table tr {
		margin-bottom: 20px;
		border: 1px solid #ddd;
		border-radius: 8px;
		overflow: hidden;
	}
	
	.sponsorship-table td {
		position: relative;
		padding: 10px;
		text-align: left;
		border-bottom: 1px solid #ddd;
		min-height: 30px;
		word-wrap: break-word;
		overflow-wrap: break-word;
		hyphens: auto;
	}
	
	.sponsorship-table td:before {
		content: attr(data-label);
		display: block;
		font-weight: bold;
		margin-bottom: 5px;
		font-size: 1.1em;
	}
	
	/* Best For row styling */
	.sponsorship-table tr:first-child td {
		padding: 10px;
		text-align: left;
	}
	
	.sponsorship-table tr:first-child td:first-child {
		font-weight: bold;
		text-align: center;
	}
	
	/* Add some spacing between sections */
	.sponsorship-table tr:not(:first-child) {
		margin-top: 30px;
	}
	
	/* Make the feature name stand out */
	.sponsorship-table tr:not(:first-child) td:first-child {
		font-weight: bold;
		text-align: center;
		padding: 10px;
	}
	
	.sponsorship-table tr:not(:first-child) td:first-child:before {
		content: none;
	}
	
	/* Adjust spacing for better readability */
	.sponsorship-table td:not(:first-child) {
		padding-left: 10px;
		padding-top: 5px;
	}
}

/* CampTix table container */
.tix_tickets_table_wrap {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

/* form afer */
.tix-ticket-form {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
}

.tix-ticket-form th,
.tix-ticket-form td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #ddd;
	background-color: white !important;
}

.tix-ticket-form th {
	background-color: white;
	font-weight: normal !important;
	color: #25648F !important;
}

.tix-ticket-form tr:last-child td {
	border-bottom: none;
}

/* CampTix table styles */
.tix_tickets_table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
}

.tix_tickets_table th,
.tix_tickets_table td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #ddd;
	background-color: white !important;
}

.tix_tickets_table th {
	background-color: white;
	font-weight: normal !important;
	color: #25648F !important;
}

.tix_tickets_table tr:last-child td {
	border-bottom: none;
}

.tix-ticket-title {
	font-weight: bold;
	margin-bottom: 5px;
}

.tix-ticket-excerpt {
	font-size: .9em;
	color: #666;
	margin-top: 5px;
}

.tix-column-quantity select {
	width: 35%;
	max-width: 100px;
	padding: 5px;
	background-color: #E8E8E8;
	border-color: #E8E8E8;
	border-radius: 10px;
}

/* Submit button styling */
.tix_tickets_table + p {
	text-align: right;
	margin-top: 20px;
}

.tix_tickets_table + p input[type="submit"] {
	cursor: pointer;
	padding: 10px 20px;
	background-color: #0073aa;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 16px;
}

.tix-js {
	max-width: none !important;
}

.tix-js input[type="submit"] {
	background-color: #FDA13A !important;
	box-shadow: 2px 2px 0 0 #25648F !important;
	border: 1px solid #000000 !important;
	color: black !important;
}

/* Mobile styles */
@media screen and (max-width: 767px) {
	.tix_tickets_table_wrap {
		padding: 10px;
	}
	
	.tix_tickets_table,
	  .tix_tickets_table tbody,
	  .tix_tickets_table tr,
	  .tix_tickets_table td,
	  .tix_tickets_table th {
		display: block;
		width: 100% !important;
		box-sizing: border-box;
	}
	
	.tix_tickets_table thead {
		display: none;
	}
	
	.tix_tickets_table tr {
		margin-bottom: 15px;
		border: 1px solid #ddd;
		border-radius: 8px;
		overflow: hidden;
	}
	
	tix_tickets_table 
	
	  .tix_tickets_table td,
	  .tix_tickets_table th {
		position: relative;
		padding: 10px 10px 10px 50%;
		text-align: right;
		border: none;
		border-bottom: 1px solid #ddd;
		background-color: white !important;
	}
	
	.tix_tickets_table td {
		display: flex !important;
		flex-direction: row;
		justify-content: space-between;
	}
	
	.tix_tickets_table td:before,
	  .tix_tickets_table th:before {
		content: attr(class);
		position: absolute;
		left: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
		text-align: left;
		font-weight: bold;
		text-transform: capitalize;
	}
	
	.tix-attendee-form td:before {
		display: none;
	}
	
	.tix_tickets_table td:before {
		position: relative !important;
	}
	
	.tix_tickets_table td:before {
		content: attr(class);
		content: attr(class) ": ";
	}
	
	.tix-column-description:before {
		content: "Description: " !important;
	}
	
	.tix-column-price:before {
		content: "Price: " !important;
	}
	
	.tix-column-remaining:before {
		content: "Remaining: " !important;
	}
	
	.tix-column-quantity:before {
		content: "Quantity: " !important;
	}
	
	.tix-column-per-ticket:before {
		content: "Price Per Ticket: " !important;
	}
	
	.tix-row-total td:before {
		content: "Total: " !important;
	}
	
	.tix-row-total td:first-child {
		display: none !important;
	}
	
	.tix-column-description {
		text-align: left;
		padding: 10px;
	}
	
	.tix-column-quantity select {
		max-width: none;
		width: auto;
	}
	
	/* Adjust submit button for mobile */
	.tix_tickets_table + p {
		text-align: center;
		margin-top: 15px;
	}
	
	.tix_tickets_table + p input[type="submit"] {
		width: 100%;
	}
	
	/* Mobile css for the tix column order summary stuff */
	.tix-column-description {
		width: 100%;
	}
}

.tix-has-dynamic-receipts {
	padding-left: 5%;
	padding-right: 5%;
	background-color: #ebf3f3 !important;
}

#tix {
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 8% !important;
	padding-bottom: 6% !important;
	background-color: #ebf3f3 !important;
}

.tix-right input {
	padding: 2%;
}

.tix-right select {
	width: 35%;
	max-width: 100px;
	padding: 5px;
	background-color: #E8E8E8;
	border-color: #E8E8E8;
	border-radius: 10px;
}

@media screen and (max-width: 767px) {
	.micro-sponsor-para {
		padding-top: 20%;
	}
}

/* attendees page */
#tix-attendees .tix-columns-4 li {
	height: 350px;
	width: 20%;
	margin-left: 2%;
	padding: 1%;
	background-color: white;
	border-radius: 10px;
	border-style: solid;
	border-color: black;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

#tix-attendees .tix-columns-3 li {
	height: 320px;
	width: 30%;
	margin-left: 2%;
	background-color: white;
	border-radius: 10px;
	border-style: solid;
	border-color: black;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding-top: 20px;
}

#tix-attendees .tix-columns-5 li {
	height: 320px;
	width: 20%;
	margin-left: 2%;
	background-color: white;
	border-radius: 10px;
	border-style: solid;
	border-color: black;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding-top: 20px;
}

@media screen and (max-width: 768px) {
	#tix-attendees .tix-columns-4 li {
		width: 100% !important;
	}
	
	#tix-attendees .tix-columns-5 li {
		width: 100% !important;
	}
}

#tix-attendees .avatar {
	width: 50% !important;
	height: auto !important;
	margin-bottom: 4%;
	border-radius: 50% !important;
}

#tix-attendees ul {
	padding-left: 0;
}

#tix-attendees .tix-field {
	margin-left: unset !important;
	text-align: center;
}

.tix-attendee-name {
	font-weight: 600 !important;
	font-size: 20px !important;
}

/* General Styles */
.anup-header-style-1 {
	background: #D3E7E9;
	padding: 40px 80px 80px;
	text-align: center;
}

.anup-header-style-1 h1, .anup-header-style-1 h2 {
	margin-right: 10px;
	font-family: var(--wp--preset--font-family--rubik);
	color: #25648f;
	font-weight: 800;
	width: 100%;
	margin-top: 40px;
}

.anup-header-style-1 p {
	margin-right: 10px;
	font-family: var(--wp--preset--font-family--rubik);
	color: #25648f;
	font-weight: 400;
	width: 100%;
	font-size: 18px;
	line-height: 1.3;
}

/* Sponsor Blocks */
.anup-block-platinum-sponsors,
.anup-block-gold-sponsors,
.anup-block-silver-sponsors,
.anup-block-bronze-sponsors,
.anup-block-micro-sponsors {
	padding: 40px;
	margin: 0;
}

.anup-block-platinum-sponsors h2,
.anup-block-gold-sponsors h2,
.anup-block-silver-sponsors h2,
.anup-block-bronze-sponsors h2,
.anup-block-micro-sponsors h2 {
	width: 100%;
	text-align: center;
	margin-bottom: 40px;
	color: #25648F;
	margin-top: 40px;
}

.anup-bg-light {
	background: #EBF3F3;
	width: 80%;
	margin: 0 auto;
}

/* Logo Row Styles */
.anup-logo-row-style-1 {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

/* Grid layouts for different sponsor levels */
.anup-logo-row-style-1--grid-2 {
	flex: 0 1 48%;
}

/* Platinum sponsors */
.anup-logo-row-style-1--grid-3 {
	flex: 0 1 31%;
}

/* Gold sponsors */
.anup-logo-row-style-1--grid-4 {
	flex: 0 1 23%;
}

/* Silver sponsors */
.anup-logo-row-style-1--grid-5 {
	flex: 0 1 18%;
}

/* Bronze sponsors */
/* Individual Logo Styles */
.anup-eachLogo-style-1 {
	box-sizing: border-box;
	text-align: center;
	background-color: white;
	border: 1px solid #ddd;
	margin: .5%;
	padding: 15px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
	transition: transform .3s ease, box-shadow .3s ease;
}

/* Hover effect for sponsor boxes */
.anup-eachLogo-style-1:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.anup-eachLogo-style-1__wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

/* Logo styles */
.anup-eachLogo-style-1 .anup-logo-style-1__left {
	flex: 0 1 33%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.anup-eachLogo-style-1 .anup-logo-style-1__left img {
	max-width: 100%;
	object-fit: contain;
	border-radius: 10px;
}

/* Text content styles (for Gold sponsors) */
.anup-eachLogo-style-1 .anup-logo-style-1__right {
	flex: 0 1 66%;
	text-align: left;
	padding-left: 25px;
}

.anup-eachLogo-style-1 .anup-logo-style-1__right h3 {
	font-weight: 600;
	margin-top: 0;
}

/* Silver and Bronze specific styles */
.anup-logo-row-style-1--grid-3 .anup-logo-style-1__left,
.anup-logo-row-style-1--grid-4 .anup-logo-style-1__left,
.anup-logo-row-style-1--grid-5 .anup-logo-style-1__left {
	flex: 1;
}

.anup-logo-row-style-1--grid-4 .anup-logo-style-1__right,
.anup-logo-row-style-1--grid-5 .anup-logo-style-1__right {
	display: none;
/* Hide description for Silver and Bronze sponsors */
}

/* Platinum Sponsor Styles */
.anup-platinum-sponsor {
	flex-basis: calc(50% - 20px) !important;
/* Two sponsors per row with some gap */
	max-width: 600px;
/* Maximum width to prevent stretching on large screens */
	margin: 10px !important;
/* Space between sponsors */
	padding: 30px !important;
/* Increase padding for a more spacious look */
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
/* Add a subtle shadow for emphasis */
}

.anup-platinum-sponsor .anup-eachLogo-style-1__wrapper {
	flex-direction: column;
/* Stack logo and text vertically */
	align-items: center;
/* Center align content */
	text-align: center;
/* Center align text */
}

.anup-platinum-sponsor .anup-logo-style-1__left {
	flex: 0 1 auto;
/* Allow the logo to size naturally */
	margin-bottom: 20px;
/* Space between logo and text */
}

.anup-platinum-sponsor .anup-logo-style-1__left img {
	max-width: 250px;
/* Larger logo size */
	width: 100%;
/* Full width up to max-width */
	height: auto;
/* Maintain aspect ratio */
}

.anup-platinum-sponsor .anup-logo-style-1__right {
	flex: 0 1 auto;
/* Allow content to size naturally */
	padding-left: 0;
/* Remove left padding as it's now centered */
	text-align: center;
/* Ensure all text, including the name, is center-aligned */
}

.anup-platinum-sponsor .anup-logo-style-1__right h3 {
	font-size: 22px;
/* Larger font size for sponsor name */
	margin-bottom: 10px;
/* Space between name and description */
	text-align: center;
/* Explicitly center-align the sponsor name */
}

.anup-platinum-sponsor .anup-logo-style-1__right p {
	font-size: 16px;
/* Slightly larger font size for description */
	max-width: 500px;
/* Limit width for better readability */
	margin: 0 auto;
/* Center the paragraph text */
	text-align: center;
/* Ensure description is also center-aligned */
}

/* Micro Sponsors Styles */
.anup-micro-sponsors-list {
	list-style-type: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.anup-micro-sponsors-list li {
	margin: 10px;
}

.anup-micro-sponsor-link {
	display: inline-block;
	padding: 10px 20px;
	background-color: #f0f0f0;
	border-radius: 5px;
	text-decoration: none;
	color: #333;
	font-weight: bold;
	transition: background-color .3s ease, transform .3s ease;
}

.anup-micro-sponsor-link:hover {
	background-color: #e0e0e0;
	transform: translateY(-3px);
}

.anup-micro-sponsor-x {
	display: block;
	font-size: .8em;
	color: #666;
	margin-top: 5px;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
	.anup-platinum-sponsor {
		flex-basis: calc(100% - 20px) !important;
	/* Full width on smaller screens */
	}
}

@media screen and (max-width: 768px) {
	.anup-logo-row-style-1--grid-2,
	    .anup-logo-row-style-1--grid-3,
	    .anup-logo-row-style-1--grid-4,
	    .anup-logo-row-style-1--grid-5 {
		flex: 0 1 100%;
		margin-bottom: 15px;
	}
	
	.anup-eachLogo-style-1 .anup-logo-style-1__left img {
		padding-left: 0;
	}
	
	.anup-eachLogo-style-1 .anup-logo-style-1__right h3 {
		margin: 10px 0;
	}
	
	.anup-eachLogo-style-1__wrapper {
		flex-direction: column;
	}
	
	.anup-bg-light {
		width: 100%;
	}
	
	.anup-header-style-1 {
		padding: 20px 40px 40px;
	}
	
	.anup-platinum-sponsor .anup-logo-style-1__left img {
		max-width: 200px;
	/* Slightly smaller on mobile */
	}
	
	.anup-micro-sponsors-list {
		flex-direction: column;
		align-items: center;
	}
	
	.anup-micro-sponsor-link {
		width: 100%;
		max-width: 300px;
	}
}

.anup-commitment-sponser {
	background: white;
	padding: 30px;
	border-radius: 10px;
	width: 60%;
	margin: 0 auto !important;
}

.anup-commitment-sponser h2 {
	margin: 0;
	text-align: left;
	font-weight: 600;
}

.anup-commitment-sponser ul {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
}

.anup-commitment-sponser ul li {
	flex: 0 1 33%;
	list-style: none;
}

.anup-commitment-sponser ul li::before {
	content: "✅ ";
}

@media screen and (max-width: 768px) {
	.anup-commitment-sponser {
		width: 100%;
	}
	
	.anup-bg-light {
		width: 100%;
	}
	
	.anup-eachLogo-style-1__wrapper {
		display: block;
	}
	
	.anup-commitment-sponser ul li {
		flex: 0 1 49%;
	}
}

@media screen and (max-width: 768px) {
	#tix-attendees .tix-columns-4 {
		padding: 0 !important;
	}
	
	.wp-block-navigation__submenu-container > li:nth-child(1) > a:nth-child(1), li.wp-block-navigation-link:nth-child(2) > a:nth-child(1), .wp-block-navigation__submenu-container > li:nth-child(3) > a:nth-child(1) {
		background: #1a1a1a !important;
	}
}

.wp-block-navigation__submenu-container > li:nth-child(1) > a:nth-child(1), li.wp-block-navigation-link:nth-child(2) > a:nth-child(1), .wp-block-navigation__submenu-container > li:nth-child(3) > a:nth-child(1) {
	background: black !important;
}

.page-slug-2085 {
	background: #eaf3f3;
}

.tix-row-coupon {
	display: none !important;
}

.attachment-post-thumbnail {
	border: 1px solid;
}

@media screen and (max-width: 768px) {
	.mainer {
		padding-left: 15% !important;
		padding-right: 15% !important;
	}
	
	.wp-block-navigation__submenu-container > li:nth-child(1) > a:nth-child(1), li.wp-block-navigation-link:nth-child(2) > a:nth-child(1), .wp-block-navigation__submenu-container > li:nth-child(3) > a:nth-child(1) {
		background: #1a1a1a !important;
		padding-bottom: 10px !important;
	}
	
	.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
		background: #1a1a1a !important;
	}
	
	.gold-sponsor-tile {
		width: 150px;
		height: 150px;
	}
}

/** Styles for schedule page */
/
section#wordcamp-schedule__day-2024-12-01-tracks-all {
	padding: 3% !important;
}

.wordcamp-schedule__column-header {
	background-color: #fff !important;
	border: 1px solid #ddd;
}

.wordcamp-schedule__time-slot-header {
	color: #25648f;
}

.wordcamp-schedule__session-title {
	color: #25648f;
}

.wordcamp-schedule__session-4119 {
	color: #25648f;
}