* {
	font-family: proxima-nova;
	box-sizing: border-box;
	margin: 0px;
	color: #fff;
}

.another-world-ct {
	padding-top: 100px;
	background-color: #121418;
	--leftWidth: 492px;
	--rightWidth: 485px;
	--gap: 44px;
	height: 100vh;
	overflow: auto;
	width: 100%;
}

/* Navbar  */

.another-world-ct nav {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 16px 30px;
	align-items: center;
	font-family: "proxima-nova";
	position: fixed;
	top: 0;
	z-index: 99;
	background: rgba(20, 23, 28, 0.71);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.another-world-ct .logo-txt-ct {
	display: flex;
	gap: 4px;
	margin-top: -4px;
}

.another-world-ct .logo-txt-ct p {
	font-size: 8px;
	color: #CBCBCB;
	text-transform: uppercase;
}

.another-world-ct nav .nav-right {
	display: flex;
	align-items: center;
}

.another-world-ct nav .static-links {
	display: flex;
	align-items: center;
	gap: 24px;
}

.another-world-ct nav .static-links a,
.another-world-ct nav .desktop-login {
	text-decoration: none;
	transition: all 100ms ease-in-out;
	color: #B7B7B7;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
}

.another-world-ct nav .static-links a:hover,
.another-world-ct nav .desktop-login:hover {
	color: #fff;
}

.another-world-ct nav .static-links a {
	cursor: pointer;
}

.another-world-ct nav .static-links a.block-tag {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.another-world-ct nav .static-links a.block-tag span {
	font-size: 16px;
	font-size: 36px;
	margin-right: -13px;
}

.another-world-ct nav .menu-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding-top: 16px;
	background: #202434;
	width: 38px;
	height: 60px;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	position: relative;
	z-index: 98;
	margin-top: -24px;
	margin-left: 32px;
	cursor: pointer;
}

.another-world-ct nav .menu-btn div {
	border-top: 2px solid #9498A6;
	border-radius: 1.5px;
	width: 14px;
}

.another-world-ct nav .desktop-login {
	border-color: #202434;
	border-width: 3px;
	border-style: solid;
	border-top: hidden;
	padding-top: 33px;
	padding-bottom: 8px;
	padding-right: 12px;
	padding-left: 12px;
	margin-top: -24px;
	height: 60px;
	margin-left: 10px;
}

.another-world-ct nav .fixed-links {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 68px;
	align-items: flex-end;
	right: 98px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	z-index: 99;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0ms, opacity 100ms;
	transition-delay: 100ms;
	background: rgba(0,0,0,0.4);
	padding: 10px;
}

.another-world-ct nav .menu-btn:hover~.fixed-links {
	visibility: visible;
	opacity: 1;
}

.another-world-ct nav .fixed-links:hover {
	visibility: visible;
	opacity: 1;
}

.another-world-ct nav .fixed-links a {
	color: #B7B7B7;
	text-decoration: none;
	font-size: 15px;
	margin-bottom: 4px;
	transition: all 100ms ease-in-out;
	cursor: pointer;
}

.another-world-ct nav .fixed-links.show {
	display: flex !important;
}

.another-world-ct nav .fixed-links a:hover {
	color: #fff;
}

.another-world-ct nav .fixed-links a.active {
	color: #fff;
}

.another-world-ct nav .mobile-link {
	display: none;
}

.another-world-ct nav .fixed-links .close-menu {
	display: none;
}

@media (max-width: 500px) {
	.another-world-ct nav {
		padding: 5px 10px 0 10px;
		justify-content: space-between;
	}

	.another-world-ct nav .static-links {
		margin: 0px;
	}

	.another-world-ct nav .static-links a,
	.another-world-ct nav .static-links a.block-tag {
		display: none;
	}

	.another-world-ct nav .fixed-links {
		background: #090914;
		padding: 20px;
		padding-top: 12px;
		padding-left: 30px;
		bottom: 0;
		right: 0;
		top: 0;
		width: 60vw;
		z-index: 10000;
		transition: none;
		transition-delay: none;
		min-height: 100vh;
	}

	.another-world-ct nav .fixed-links a {
		margin-bottom: 20px;
	}

	.another-world-ct nav .mobile-link {
		display: block;
	}

	.another-world-ct nav .mobile-link span {
		font-size: 32px;
    position: relative;
    top: 11px;
	}

	.another-world-ct nav .fixed-links .close-menu {
		display: block;
		border: none;
		background: none;
		width: 25px;
		height: 25px;
		margin-bottom: 40px;
		position: relative;
		align-self: flex-end;
	}

	.another-world-ct nav .fixed-links .close-menu:before,
	.another-world-ct nav .fixed-links .close-menu:after {
		background-color: #9498A6;
		position: absolute;
		content: ' ';
		left: 15px;
		height: 26px;
		width: 2px;
	}

	.another-world-ct nav .fixed-links .close-menu:before {
		transform: rotate(45deg);
	}

	.another-world-ct nav .fixed-links .close-menu:after {
		transform: rotate(-45deg);
	}

	.another-world-ct nav .fixed-links .m-btm-lg {
		margin-bottom: 50px;
	}

	.another-world-ct nav .desktop-login {
		display: none;
	}
}

.another-world-ct header {
	padding: 0px 80px 80px 80px;
	/* display: flex;
	flex-direction: column;
	align-items: center; */
	display: flex;
	justify-content: center;
}

.another-world-ct header .section-content {
	display: block;
}


.another-world-ct .definition {
	font-size: 18px;
	margin-bottom: 52px;
	color: #C4C4C4;
}

.another-world-ct .definition p:first-of-type {
	font-family: "ltc-caslon-pro";
	font-weight: 700;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
}

.another-world-ct .definition p:nth-of-type(2) {
	margin-bottom: 10px;
	font-family: "ltc-caslon-pro";
	font-style: italic;
	line-height: 16px;
}

.another-world-ct .definition p:first-of-type span {
	width: 3px;
	height: 3px;
	background: #9E9E9E;
	border-radius: 50%;
	margin: 7px 1px 0 1px;
}

.another-world-ct header h1 {
	font-size: 58px;
	line-height: 52px;
	margin-bottom: 100px;
	font-weight: 900;
	position: relative;
	z-index: 9;
}

.another-world-ct header h1 span {
	text-decoration: underline;
}

/* .another-world-ct header .mozilla {
	background: #111;
	padding: 5px;
	z-index: 9;
	position: absolute;
	top: 220px;
	right: 0px;
} */

/* Mozilla award  */

.another-world-ct .mozilla-award {
	width: 230px;
	height: 99px;
	position: fixed;
	right: 0px;
	top: 211px;
	z-index: 9999;
	transition: all 1s;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(20, 23, 28, 0.71);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.another-world-ct .mozilla-award.small {
	transform: scale(0.7, 0.7);
	right: -33px;
}

.another-world-ct .einstein {
	width: 457px;
	position: absolute;
	top: -110px;
	left: -220px;
}

.another-world-ct header .images-ct {
	position: relative;
}

.another-world-ct header iframe {
	position: absolute;
	left: 30px;
}

.another-world-ct header h4 {
	font-size: 28px;
	line-height: 28px;
	margin-bottom: 30px;
}

.another-world-ct header .subjects {
	display: flex;
	gap: 25px;
}

.another-world-ct header .subjects a {
	font-size: 20px;
	text-decoration: underline;
}

.another-world-ct .row {
	display: flex;
}

.another-world-ct .section.light-blue-bg {
	background: #6E31FF;
}

.another-world-ct .section.dark-blue-bg {
	background: #3D0FAC;
}

.another-world-ct .section.purple-bg {
	background: #392469;
}

.another-world-ct .section.dark-purple-bg {
	background: #382F4D;
}

.another-world-ct .section {
	background-color: #121418;
	padding: 126px 80px 70px 80px;
	font-family: 'proxima-nova';
	display: flex;
	justify-content: center;
	scroll-margin-top: 68px;
}

.another-world-ct .section-content {
	width: calc(var(--leftWidth) + var(--rightWidth) + var(--gap));
	display: flex;
	gap: var(--gap);
}

.another-world-ct .montserrat {
	font-family: 'montserrat';
}

.another-world-ct .bold {
	font-weight: 600;
}

.another-world-ct .section-title {
	font-size: 58px;
	font-family: 'montserrat';
	font-weight: 900;
	line-height: 52px;
}

.another-world-ct .font-size-24 {
	font-size: 24px;
	line-height: 32px;
}

.another-world-ct .font-size-18 {
	font-size: 18px;
	line-height: 28px;
}

.another-world-ct .font-size-32 {
	font-size: 32px;
	line-height: 52px;
}

.another-world-ct .underline {
	text-decoration: underline;
}

.another-world-ct .section .left {
	width: 492px;
	min-width: 492px;
	padding-bottom: 56px;
}

.another-world-ct .section .right {
	max-width: 485px;
	width: 485px;
	display: flex;
	flex-direction: column;
}

.another-world-ct .section .right .scroll-ct {
	margin-top: auto;
	background: #3D3D3D;
	/* min-width: 100%; */
	display: flex;
	padding: 24px 27px;
	display: none;
}

.link-label {
	background: #3D3D3D;
	padding: 24px 27px;
	position: fixed;
	bottom: 50px;
	right: 0px;
	display: none;
}

.another-world-ct .section .background-ct {
	margin-top: 100px;
	margin-bottom: 30px;
}

.another-world-ct .social-prob-section .img-ct {
	margin-top: 32px;
	margin-bottom: 38px;
}

.another-world-ct .social-prob-section .img-ct img {
	width: 404px;
}

.another-world-ct .social-prob-section .video-ct {
	margin-bottom: 36px;
}

.another-world-ct .section .link {
	display: block;
	white-space: nowrap;
	font-weight: 600;
}

.another-world-ct .section .right p {
	margin-bottom: 30px;
}

@media(max-width: 600px) {
	.another-world-ct {
		padding-top: 50px;
		--leftWidth: 100%;
		--rightWidth: 100%;
		--gap: 44px;
	}

	.another-world-ct .section {
		flex-direction: column;
		padding: 30px 20px;
		padding-bottom: 0px;
	}

	.another-world-ct .row {
		flex-direction: column;
	}

	.another-world-ct .section-content {
		flex-direction: column;
		width: 100%;
	}
	
	.another-world-ct .section:last-child .section-content {
		padding-bottom: 100px;
	}

	.another-world-ct header {
		padding: 30px 20px;
	}

	.another-world-ct header .subjects {
		gap: 19px;
	}

	.another-world-ct header .subjects a {
		font-size: 14px;
	}

	.another-world-ct header h1 {
		font-size: 30px;
		line-height: 30px;
		margin-bottom: 30px;
	}

	.another-world-ct .section-title {
		font-size: 30px;
		line-height: 32px;
	}

	.another-world-ct .font-size-24 {
		font-size: 18px;
		line-height: 22px;
	}

	.another-world-ct .font-size-18 {
		font-size: 16px;
		line-height: 20px;
	}

	.another-world-ct header .subjects {
		flex-wrap: wrap;
	}

	.another-world-ct .section .left {
		width: 100%;
		min-width: 100%;
		padding-bottom: 0px;
	}

	.another-world-ct .section .right {
		width: 100%;
		min-width: 100%;
	}

	.another-world-ct .section .link {
		white-space: initial;
	}

	.another-world-ct header .mozilla {
		position: static;
		width: 260px;
		margin-bottom: 30px;
		margin-top: 20px;
	}

	.another-world-ct .einstein {
		position: static;
		width: 100%;
		margin-bottom: 30px;
	}

	.another-world-ct .social-prob-section .img-ct img {
		width: 100%;
	}

	.another-world-ct .section .background-ct {
		margin-top: 30px;
		margin-bottom: 0px;
	}

	.another-world-ct .section {
		scroll-margin-top: 41px;
	}

}

@media (max-width: 500px) {
	.another-world-ct .mozilla-award {
		bottom: 0px;
		top: unset;
		width: 100vw;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 0px;
		height: 85px;
	}

	.another-world-ct .mozilla-award.small {
		display: none
	}
}