.outer-ct {
	background: rgb(0, 0, 0);
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 1) 20%,
		rgba(16, 27, 57, 1) 100%
	);
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
	font-family: "montserrat";
	overflow: hidden;
	position: relative;
	margin-top: -25px;
}

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

html {
	scroll-behavior: smooth;
}

.main-nav {
	display: none !important;
}

.top {
	border-bottom: 22px solid #f60353;
	width: 100%;
	position: relative;
	z-index: 2;
	background-image: url("https://readocracy-img.s3.us-east-1.amazonaws.com/thinkingthrough/landing/ttai-top-bg.png");
	background-position: center;
	background-size: cover;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.top-pink-gradient {
	background: linear-gradient(to right, #f60353 0%, transparent 25%),
		/* Right-side magenta gradient */
			linear-gradient(to top, black 0%, transparent 23%); /* Bottom black gradient */
	height: 100%;
	width: 100%;
	padding-top: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}

.menu-ct {
	position: fixed;
	top: 30px;
	width: 939px;
	height: 74px;
	background-color: #050505;
	z-index: 4;
	border-radius: 8px;
}

.menu-links {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-content: space-evenly;
	height: 100%;
}

.menu-ct a {
	font-size: 16px;
	cursor: pointer;
	display: block;
	color: #c6ccff;
	font-weight: 600;
}

.menu-ct a.active {
	color: #f70253;
}
a {
	text-decoration: none;
	color: #fff;
}

.menu-ct .line {
	width: 1px;
	height: 38px;
	background: #979797;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 15px;
}

.hamburger span:not(.material-icons-round) {
	width: 25px;
	height: 3px;
	background-color: #fff;
	margin: 2px 0;
	transition: 0.4s;
}

@media screen and (max-width: 960px) {
	.menu-ct {
		width: 90%;
		padding: 0 20px;
		display: flex;
		align-items: center;
		width: 74px;
		align-items: center;
		justify-content: center;
		right: 20px;
		top: 20px;
	}

	.hamburger {
		display: flex;
		z-index: 5;
	}

	.menu-links {
		display: none;

		position: fixed;
		top: 124px;
		left: 20px;
		right: 20px;
		flex-direction: column;
		background-color: #050505;
		padding: 20px;
		border-radius: 8px;
		height: 300px;
	}

	.menu-links.active {
		display: flex;
	}

	.menu-ct .line {
		height: 4px;
		width: 100%;
		background: #1e202b;
	}

	.menu-ct a {
		margin: 10px 0;
	}

	.menu-ct .hamburger.active span.material-icons-round {
		display: inline-block;
		font-size: 40px;
	}

	.menu-ct .hamburger.active span {
		display: none;
	}

	.menu-ct .material-icons-round {
		display: none;
	}
}

.logos-row {
	display: flex;
	gap: 30px;
}

.logos-row .linkedin-small-logo {
	width: 33px;
	height: 33px;
}

.logo-slider-height-ct {
	min-height: 80px;
	max-height: 80px;
	margin-bottom: 50px;
	/* margin-top: auto; */
}

.logo-slider-ct {
	--logoCt-width: 150px;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	overflow: hidden;
	width: auto;
}

.logo-slider {
	display: flex;
	width: calc(var(--logoCt-width) * 10);
	animation: scroll 40s linear infinite;
}

.bottom-slider .logo-slider {
	width: calc(450px * 15);
}

.logo-slider .logo-item-ct {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 48px;
}

.logo-slider .logo-item-ct img {
	filter: grayscale();
	height: 50px;
}

.top-logo {
	position: absolute;
	top: 30px;
	left: 30px;
	width: 107px;
	z-index: 3;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(var(--logoCt-width) * -1 * 5));
	}
}

.pricing-section {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	color: #000;
	margin-bottom: 58px;
}

.pricing-section .pricing-container {
	display: flex;
	gap: 20px;
}

.pricing-section .pricing-card {
	background: white;
	padding: 20px 30px;
	border-radius: 15px;
	box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
	width: 300px;
	height: 532px;
	min-height: 450px;
	max-height: 532px;
	display: flex;
	flex-direction: column;
}

.pricing-section .pricing-card h2 {
	color: #f70253;
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 600;
}

.pricing-section .pricing-card h1 {
	font-size: 48px;
	font-weight: 700;
	margin: 0;
	margin-bottom: 22px;
}

.pricing-section .pricing-card p {
	font-size: 16px;
	line-height: 1;
	margin-bottom: 16px;
	font-weight: 400;
}

.pricing-section .pricing-card .last {
	margin-top: auto;
}

.pricing-section .pricing-card .highlight {
	color: #f70253;
}

.pricing-section .pricing-card .note {
	font-size: 12px;
	color: #666;
}

.pricing-section .pricing-card .icons {
	display: flex;
	gap: 10px;
}

.pricing-section .pricing-card .icon {
	height: 78px;
	width: 94px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #292929;
	border-radius: 8px;
	cursor: pointer;
}

.bottom-logo {
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 107px;
	z-index: 3;
}

.shaped {
	font-size: 16px;
	font-weight: 600;
	color: #a6a6a6;
	margin-top: auto;
	text-align: left;
	margin-bottom: 30px;
	margin-left: -512px;
	margin-top: auto;
}

@media (max-width: 600px) {
	.top-logo {
		top: 20px;
		left: 20px;
		width: 72px;
	}

	.top-pink-gradient {
		background: none;
	}

	.shaped {
		margin-left: 0;
	}

	.logo-slider .logo-item-ct img {
		height: 30px;
	}

	.bottom-logo {
		width: 60px;
	}

	.logo-slider .logo-item-ct {
		margin-right: 30px;
	}

	.logo-slider-height-ct {
		margin-bottom: 0px;
	}

	.pricing-section .pricing-container {
		flex-direction: column;
	}
}
