@font-face {
	font-family: 'Poppins Regular';
	src: url(../assets/fonts/Poppins-Regular.ttf);
}
@font-face {
	font-family: 'Poppins Semi-Bold';
	src: url(../assets/fonts/Poppings/Poppins-SemiBold.ttf);
}
@font-face {
	font-family: 'Poppins Light';
	src: url(../assets/fonts/Poppins-Light.ttf);
}
@font-face {
	font-family: 'Poppins-Bold';
	src: url(../assets/fonts/Poppins-Bold.ttf);
}
/* global styles */
:root {
	--fontsize: 16px;
	--font-family: 'Poppins', sans-serif;
	/* primary color */
	--whitish_grey: #fbf9f9;
	--black: #000000;
	--grey: #808080;
	--white: #fffcfc;
	--dark_purple: #211445;
}
/* RESET */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 18px;
	font-family: var(--font-family);
	font-weight: 400;
	overflow-x: hidden;
	font-family: Poppins-Regular;
	scroll-behavior: smooth;
}
body {
	width: 100%;
	min-height: 100vh;
	background-color: var(--whitish_grey);
	font-family: var(--font-family);
}
img {
	width: 100%;
	max-width: 100%;
}
.wrapper {
	width: 90%;
	margin: auto;
}
button {
	cursor: pointer;
	padding: 15px 20px;
	background: #000000;
	border-radius: 40px;
	color: #fffafa;
	transition: all 1.5s ease;
	border: 1px solid black;
}
button:hover {
	background-color: var(--white);
	color: var(--black);
}
.button {
	padding: 15px 20px;
	border-radius: 40px;
	color: white;
	cursor: pointer;
}
a {
	text-decoration: none;
}
/* top navigation styling starts here */
.title--container {
	width: 100%;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	height: 80px;
	position: sticky;
	top: 0;
	padding: 7px 0;
	z-index: 2;
	background-color: var(--white);
}
.title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 5px auto;
	width: 90%;
}
.title .title__logo {
	display: flex;
	justify-content: center;
	align-items: center;
}
.title__logo a {
	text-decoration: none;
}
.title__logo a img {
	max-width: 40px;
	max-height: 40px;
	margin-right: 25px;
}
.title__logo h1 a {
	text-decoration: none;
	font-size: 20px;
	display: block;
	margin-top: -5px;
	font-weight: 700;
	color: var(--black);
}
.title__logo h1 a:hover {
	color: var(--dark_purple);
	font-weight: 900;
}
/* nav bar styling starts here */
nav {
	padding: 10px;
}
nav ul li {
	list-style-type: none;
	display: inline-flex;
	margin: 0px 15px;
}
nav ul li a {
	font-weight: 700;
	line-height: 19px;
	text-align: center;
	color: var(--grey);
	text-decoration: none;
	padding: 10px 15px;
}
nav ul li a:hover {
	background-color: var(--dark_purple);
	color: var(--white);
	border-radius: 10px 15px;
}
/* nav bar styling ends here */
.title__signup {
	display: flex;
	justify-content: center;
	align-items: center;
}
.title__signup a:first-child {
	font-weight: bold;
	line-height: 19px;
	margin-right: 20px;
	color: var(--grey);
	text-decoration: none;
	padding: 10px 15px;
}
.title__signup a:first-child:hover {
	border-radius: 10px 15px;
	background-color: var(--dark_purple);
	color: var(--white);
}
.title__signup a:nth-child(2) {
	padding: 5px 10px;
	background: #ffffff;
	border: 1px solid black;
	border-radius: 20px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: var(--grey);
}
.title__signup a:nth-child(2):hover {
	background-color: var(--dark_purple);
	color: var(--white);
}
/* top navigation styling ends here */

/* introduction section starts here */
.intro {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px;
	margin: 100px 0 80px 0;
}
header {
	flex-basis: 50%;
}
.intro__title {
	animation: zoomIn 2s ease;
	animation-iteration-count: 5s;
}
@keyframes zoomIn {
	from {
		transform: scale(0.7);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}
.intro h1 {
	font-size: 48px;
	line-height: 1.2;
	color: #000000;
	margin: 2rem 0;
}
.intro p {
	line-height: 28px;
	margin: 2rem 0;
}
.intro img {
	flex-basis: 50%;
	max-width: 500px;
	max-height: 500px;
	border-radius: 15px;
	/* animation: animateFromLeft 2s ease ;
	animation-iteration-count: 5s; */
}
.intro--img {
	flex-basis: 50%;
	max-width: 550px;
	max-height: 550px;
	animation: moveInRight 2s ease;
	animation-iteration-count: 5s;
}
@keyframes moveInRight {
	0% {
		transform: translateX(200px);
		opacity: 0;
	}
	25% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.7;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

/* introduction section ends here */

/* about section styling starts here */
.about {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 80px;

	/* width: 500px; */
}

.about h1 {
	font-weight: bold;
	font-size: 32px;
	text-align: center;
	color: var(--black);
	display: flex;
}
.about p {
	position: relative;
	overflow: hidden;
	padding: 0 10px;
	margin: 0 10px;
}
.moneybox h1 span {
	position: absolute;
	background-color: var(--dark_purple);
}
.moneybox h1 span:nth-child(1) {
	width: 100%;
	height: 4px;
	top: 0;
	left: -100px;
	animation: animate1 3s linear infinite;
}
.moneybox h1 span:nth-child(3) {
	width: 100%;
	height: 4px;
	bottom: 0;
	right: -100px;
	animation: animate3 3s linear infinite;
}
.moneybox h1 span:nth-child(2) {
	width: 4px;
	height: 100%;
	right: 0;
	top: -100px;
	animation: animate2 3s linear infinite;
}
.moneybox h1 span:nth-child(4) {
	width: 4px;
	height: 100%;
	left: 0;
	bottom: -100px;
	animation: animate4 3s linear infinite;
}
@keyframes animate1 {
	0% {
		left: -100%;
	}
	20% {
		left: 0;
	}
	40% {
		left: 100%;
	}
	60% {
		left: 100%;
	}
	80% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}
@keyframes animate2 {
	0% {
		top: -100%;
	}
	20% {
		top: -100%;
	}
	40% {
		top: 0;
	}
	60% {
		top: 100%;
	}
	80% {
		top: 100%;
	}
	100% {
		top: 100%;
	}
}
@keyframes animate3 {
	0% {
		right: -100%;
	}
	20% {
		right: -100%;
	}
	40% {
		right: 0;
	}
	60% {
		right: 100%;
	}
	80% {
		right: 100%;
	}
	100% {
		right: 100%;
	}
}
@keyframes animate4 {
	0% {
		bottom: -100%;
	}
	20% {
		bottom: -100%;
	}
	40% {
		bottom: -100%;
	}
	60% {
		bottom: -100%;
	}
	80% {
		bottom: 0;
	}
	100% {
		bottom: 100%;
	}
}
.about__text {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
}

.about__text p {
	flex-basis: 50%;
	text-align: justify;
	color: var(--black);
	line-height: 1.5;
}
.about--text {
	animation: moveInLeft 2s ease;
	animation-iteration-count: 5s;
}
@keyframes moveInLeft {
	from {
		transform: translateX(-400px);
	}
	to {
		transform: translateX(0);
	}
}
.about__text img {
	flex-basis: 50%;
	max-width: 500px;
	max-height: 500px;
	border-radius: 15px;
}
.about--img {
	animation: moveInRightTwo 1s ease;
	animation-iteration-count: 5s;
}
@keyframes moveInRightTwo {
	0% {
		transform: translateX(200px);
		opacity: 0;
	}
	25% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.7;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}
/* about section styling ends here */

/* features section starts here */
.features {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 80px;
}
.features h1 {
	font-weight: bold;
	font-size: 32px;
	text-align: center;
	color: var(--black);
	display: flex;
}
.features p {
	position: relative;
	overflow: hidden;
	margin-left: 10px;
	padding: 0 5px;
}
.features .features__offer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
}
.features__offer .features__benefits {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: #d9e7f7;

	border-radius: 20px 0px;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
	transition: all 1s ease-in;
	position: relative;
	height: 250px;
}
.features__benefits:not(:last-child) {
	margin-right: 30px;
}

.features__benefits:hover {
	transform: scale(1.02);
}
.features__benefits span {
	position: absolute;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	width: 20px;
	height: 20px;
	background-color: red;
	margin-right: 10px;
	border-radius: 50%;
	animation: moveTop 5s ease infinite;
	opacity: 0;
}
@keyframes moveTop {
	from {
		transform: translateY(0);
		opacity: 0.1;
	}
	to {
		transform: translateY(-180px);
		opacity: 0.2;
	}
}
.features__benefits span:nth-child(1) {
	animation-delay: 1s;
	left: 10%;
	background-color: rgb(157, 157, 245);
}
.features__benefits span:nth-child(2) {
	animation-delay: 2s;
	left: 25%;
	background-color: #ccb1f7;
}
.features__benefits span:nth-child(3) {
	animation-delay: 3s;
	left: 45%;
	background-color: #74f3f3;
}
.features__benefits span:nth-child(4) {
	animation-delay: 4s;
	left: 60%;
}
.features__benefits span:nth-child(5) {
	left: 80%;
}
.features__offer .features__benefits:nth-child(2) {
	background-color: #cff5f5;
}
.features__offer .features__benefits:nth-child(3) {
	background-color: #e4d3ff;
}
.features__benefits h2 {
	font-weight: bold;
	font-size: 24px;
	line-height: 28px;
	display: flex;
	align-items: center;
	text-align: center;
	color: #800080;
	margin: 20px 0px;
}
.features__benefits p {
	line-height: 25px;
	display: flex;
	align-items: center;
	text-align: justify;
	color: #000000;
	margin: 30px 0px;
}
/* features section ends here */

/* security description styling starts here */

.moneybox__security {
	background: var(--dark_purple);
	margin-bottom: 80px;
	text-align: center;
	color: var(--white);
	padding: 15px 0;
	line-height: 2;
}
.moneybox__security h1 {
	font-size: 32px;
}
.moneybox__security p {
	font-size: 16px;
}
.security__container {
	display: flex;
	justify-content: space-between;
	padding: 20px;
	margin-top: 30px;
}
.security {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-basis: 30%;
	margin-right: 15px;
}
.security:nth-child(2) {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-basis: 30%;
	margin-top: -15px;
	margin-right: 15px;
	line-height: 3;
}
.security img {
	max-width: 50px;
	max-height: 50px;
}
.moneybox__security .security h2 {
	padding: 10px;
	font-size: 18px;
}
.moneybox__security .security p {
	line-height: 1.5;
	text-align: justify;
	font-size: 14px;
}
/* security description styling ends here */

/* cohorts section starts here */
.cohorts__container {
	text-align: center;
	color: var(--black);
	margin-bottom: 80px;
}
.cohorts__container h1 {
	font-size: 32px;
}
.cohorts {
	margin-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.cohort__desc {
	border-radius: 10px;
	/* padding: 10px; */
	font-size: 0.8rem;
	line-height: 3;
	margin-right: 5px;
	margin-bottom: 2rem;
	background-color: white;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.cohort__desc h3 {
	color: var(--dark_purple);
}
.cohort__desc p {
	color: var(--dark_purple);
	font-weight: bold;
}
.cohort__desc p span {
	color: var(--dark_purple);
	font-weight: normal;
}
.cohort__desc a {
	width: 100%;
	background-color: var(--dark_purple);
	color: white;
	display: block;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.986);
	text-align: center;
}
/* cohort section ends here */

/* testimonial section starts here */
.testimonials {
	margin-bottom: 80px;
	text-align: center;
	color: var(--black);
	background: linear-gradient(0.25turn, #ecebe9, #fff);
}
.testimonials h1 {
	font-size: 32px;
	margin-bottom: 2rem;
}
.slider {
	width: 1220px;
	height: 400px;
	overflow: hidden;
}
.slides {
	width: 500%;
	display: flex;
	position: relative;
}
.slides input {
	display: none;
}
.slide {
	display: flex;
	justify-content: space-evenly;
	/* align-items: center; */
	width: 20%;
	transition: 2s;
}
.slide img {
	max-width: 500px;
	max-height: 500px;
	object-fit: cover;
}
.slide p {
	width: 40%;
	font-size: 2rem;
	font-style: italic;
	text-align: center;
}
.navigation__manual {
	position: absolute;
	width: 1220px;
	margin-left: auto;
	margin-right: auto;
	margin-top: -120px;
	display: flex;
	justify-content: center;
}
.manual__btn {
	border: 2px solid rgb(2, 2, 53);
	padding: 5px;
	border-radius: 10px;
	cursor: pointer;
	transition: 1s;
}
.manual__btn:not(:last-child) {
	margin-right: 40px;
}
.manual__btn:hover {
	background: var(--dark_purple);
}
#radio1:checked ~ .first {
	margin-left: 0;
}
#radio2:checked ~ .first {
	margin-left: -1220px;
}
#radio3:checked ~ .first {
	margin-left: -2440px;
}
#radio4:checked ~ .first {
	margin-left: -3660px;
}

.navigation__auto {
	position: absolute;
	width: 1220px;
	margin-top: 380px;
	display: flex;
	justify-content: center;
}
.navigation__auto div {
	border: 2px solid rgb(2, 2, 53);
	padding: 5px;
	border-radius: 10px;
	transition: 1s;
}
.navigation__auto div:not(:last-child) {
	margin-right: 40px;
}
#radio1:checked ~ .navigation__auto .auto__btn1 {
	background: rgb(2, 2, 53);
}
#radio2:checked ~ .navigation__auto .auto__btn2 {
	background: rgb(2, 2, 53);
}
#radio3:checked ~ .navigation__auto .auto__btn3 {
	background: rgb(2, 2, 53);
}
#radio4:checked ~ .navigation__auto .auto__btn4 {
	background: rgb(2, 2, 53);
}
/* testimonial styling ends here */
.advert {
	margin: 80px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.advert__desc {
	flex-basis: 50%;
}
.advert--animation {
	animation: zoomIn 2s ease;
}
.advert__desc h1 {
	font-size: 48px;
	line-height: 1.2;
	color: var(--black);
	margin-bottom: 2rem;
}
.advert__desc p {
	line-height: 1.5;
	align-items: center;
	margin-bottom: 2rem;
}
.advert__desc input {
	padding: 15px 20px;
	background: #000000;
	border-radius: 40px;
	color: white;
	transition: all 1.5s ease;
	cursor: pointer;
}
.advert__desc input:hover {
	background-color: var(--white);
	color: var(--black);
}
.advert__avatar img {
	flex-basis: 50%;
	max-width: 400px;
	max-height: 400px;
	border-radius: 10px;
}
.avatar--animation {
	animation: moveInRight 2s ease;
	animation-iteration-count: 5s;
}
/* footer styling starts here */
footer {
	background-color: var(--dark_purple);
}
.footer__container {
	width: 90%;
	margin: auto;
	color: var(--white);
	padding: 20px 0;
	font-size: 16px;
}
.footer__items {
	display: flex;
	justify-content: space-between;
}
.footer__title {
	line-height: 3;
	flex-basis: 30%;
}

.footer__title p {
	line-height: 1.5;
	font-size: 16px;
}
.footer__navigations {
	display: flex;
	justify-content: space-between;
	flex-basis: 60%;
}
.footer__navigation {
	line-height: 2;
}
.footer__navigation p a {
	text-decoration: none;
	color: white;
	font-size: 16px;
}
.footer__navigation h4 a {
	text-decoration: none;
	color: white;
}
.social__icons {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}
.social__icons img {
	max-width: 20px;
	max-height: 20px;
	margin: 10px;
}
.line {
	display: flex;
	width: 100%;
	margin-bottom: 10px;
	justify-content: center;
	height: 5px;
	background-color: var(--white);
}

/* footer styling ends here */
.title__header {
	margin-top: 5%;
}
.title__header:nth-child(1) {
	font-weight: 600;
}

#all__card {
	width: 35%;
	background-color: #211445;
	padding: 20px 30px;
	color: #fff;
	border-radius: 10px;
	margin-top: 2%;
}
