* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background: #0c0c0c;
	color: white;
	font-family: 'Montserrat Alternates', serif;
}
a {
	text-decoration: none;
	color: white;
}
button {
	color: white;
	border: none;
	font-family: 'Montserrat Alternates', serif;
	transition: all linear 0.3s;
}
button:active {
	transform: scale(0.9);
}

/* header */
.header-main {
	max-width: 1340px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	padding: 25px;
}
.logo-main {
	display: flex;
	flex-direction: column;
	width: 204px;
	height: 61px;
	cursor: pointer;
}
.logo-text {
	position: absolute;
	font-family: 'Montserrat', serif;
	font-weight: 600;
	font-size: 50px;
}
.logo-text-sup {
	position: relative;
	top: 45px;
	left: 63px;
	font-size: 15px;
	transform: rotate(5deg);
	width: 82px;
	background: linear-gradient(#e60026, #ff0000);
	padding: 5px;
	border-radius: 16px;
}
.tech-main {
	display: flex;
	justify-content: center;
	align-items: center;
}
.tech-support,
.tech-panel,
.information {
	padding: 5px 10px;
	background-color: #e60026;
	font-size: 15px;
	font-weight: 500;
	border-radius: 5px;
	text-align: center;
	text-wrap: nowrap;
}
.tech-support {
	margin-right: 15px;
}
/* banner */
.main-banner {
	max-width: 1380px;
	padding: 10px 0px;
	margin: 0 auto;
	margin-top: 28px;
	background: #ffffff;
	border-radius: 100px;
	position: relative;
}
.banner-text {
	text-align: center;
	font-size: 100px;
	text-wrap: nowrap;
	font-weight: bold;
	color: #bfbfbf;
}
.banner-text-sup {
	position: absolute;
	font-weight: bold;
	font-size: 75px;
	background: linear-gradient(#ff5757, #ff0000);
	border-radius: 75px;
	padding: 13px 9px;
	width: 135px;
	height: 120px;
	transform: rotate(-10deg);
	left: 403px;
	top: 54px;
}
/* main-info */
main {
	margin: 20px;
}
.main-info {
	max-width: 1040px;
	padding: 30px;
	padding-bottom: 79px;

	margin: 0 auto;

	border-radius: 20px;
	background: #0e0e0e;
	margin-top: 58px;
}
.information {
	width: 128px;
}
.questions-container {
	margin-top: 20px;
}
.questions-container-2 {
	margin-top: 44px;
}
.main-question {
	font-weight: bold;
	position: relative;
}
.main-question-2 {
	font-weight: bold;
	position: relative;
}
.main-question h2 {
	font-size: 32px;
	margin-bottom: 30px;
}
.main-question-2 h2 {
	font-size: 32px;
	margin-bottom: 5px;
	text-wrap: nowrap;
}
.marks,
.marks-2 {
	font-size: 96px;
	position: absolute;
	bottom: -40px;
	left: 792px;
	transform: rotate(14deg);
}
.marks-2 {
	left: 390px;
	width: 55px;
}
.answer {
	color: #5c5c5c;
	font-size: 23px;
}
nav {
	display: flex;
	flex-direction: column;
	font-size: 15px;
}
.item {
	display: flex;
	align-items: center;
}
.item-content {
	display: flex;
	align-items: center;
	margin-top: 23px;
}

.item-mark {
	width: 15px;
	height: 15px;
	background: #45c339;
	border-radius: 50%;
	margin-right: 15px;
}

.item {
	display: flex;
	flex-direction: column;
	align-items: start;
}
.arrow {
	cursor: pointer;
	transition: transform 0.3s ease;
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}
.arrow-block{
	padding: 3px;
}
.dropdown-content {
	max-height: 0;
	margin-left: 50px;
	font-size: 15px;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.item.active .arrow {
	transform: rotate(180deg);
}
.item.active .dropdown-content {
	max-height: 1000px;
}
.text-drop {
	margin-top: 30px;
}
.text-drop-sup {
	color: #5c5c5c;
	margin-top: 23px;
}
footer {
	max-width: 270px;
	margin: 0 auto;
	padding: 20px;
	margin-top: 60px;
}
.main-footer {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	height: 12px;
	display: flex;
	font-weight: 100;
}
.footer-text-recovered {
	font-size: 7px;
}

@media (max-width: 1425px) {
	.main-banner {
		max-width: 1100px;
	}
	.banner-text {
		font-size: 80px;
	}
	.banner-text-sup {
		text-align: center;
		font-size: 70px;
		left: 309px;
		width: 125px;
		height: 110px;
		top: 54px;
	}
}
@media (max-width: 1130px) {
	.main-banner {
		max-width: 850px;
	}
	.banner-text {
		font-size: 60px;
	}
	.banner-text-sup {
		text-align: center;
		font-size: 50px;
		width: 100px;
		height: 90px;
		top: 44px;
		left: 245px;
	}
}
@media (max-width: 940px) {
	.main-banner {
		max-width: 738px;
	}
	.banner-text {
		font-size: 50px;
	}
	.banner-text-sup {
		text-align: center;
		font-size: 36px;
		width: 80px;
		height: 70px;
		top: 39px;
		left: 215px;
	}

	.main-question h2 {
		font-size: 26px;
		margin-bottom: 30px;
	}
	.main-question-2 h2 {
		font-size: 26px;
		margin-bottom: 5px;
	}
	.marks,
	.marks-2 {
		font-size: 96px;
		position: absolute;
		bottom: -40px;
		left: 642px;
		transform: rotate(14deg);
	}
	.marks-2 {
		left: 320px;
		width: 55px;
	}
	.answer {
		font-size: 18px;
	}
}
@media (max-width: 767px) {
	
	.main-banner {
		max-width: 385px;
	}
	.banner-text {
		font-size: 28px;
	}
	.banner-text-sup {
		text-align: center;
		font-size: 18px;
		padding: 7px;
		width: 40px;
		height: 36px;
		top: 25px;
		left: 110px;
	}
	.main-question h2 {
		font-size: 18px;
		margin-bottom: 30px;
	}
	.main-question-2 h2 {
		font-size: 18px;
		margin-bottom: 5px;
	}
	.marks,
	.marks-2 {
		font-size: 66px;
		position: absolute;
		bottom: -30px;
		left: 444px;
		transform: rotate(14deg);
	}
	.marks-2 {
		left: 222px;
		width: 55px;
	}
	.answer {
		font-size: 15px;
	}
}
@media (max-width: 605px) {
	.header-main{
		flex-direction: column;
		align-items: center;
	}
	.tech-main{
		margin-top: 30px;
	}
	.main-info{
		margin-top: 18px;
	}
	.main-question h2 {
		font-size: 18px;
		margin-bottom: 30px;
	}
	.main-question-2 h2 {
		font-size: 18px;
		margin-bottom: 5px;
	}
	.marks,
	.marks-2 {
		font-size: 44px;
		position: absolute;
		bottom: -15px;
		left: 454px;
		transform: rotate(14deg);
	}
	.marks-2 {
		left: 228px;
		width: 55px;
		bottom: -20px;

	}

}
@media (max-width: 555px) {
	.information{
		font-size: 13px;
		padding: 3px 8px;
		width: 110px;
	}
	.main-info{
		margin-top: 18px;
	}
	.main-question h2 {
		font-size: 16px;
		margin-bottom: 30px;
	}
	.main-question-2 h2 {
		font-size: 16px;
		margin-bottom: 5px;
	}
	.marks,
	.marks-2 {
		font-size: 44px;
		position: absolute;
		bottom: -15px;
		left: 404px;
		transform: rotate(14deg);
	}
	.marks-2 {
		left: 200px;
		width: 55px;
		bottom: -20px;

	}
}
@media (max-width: 505px) {
	.main-banner {
		max-width: 335px;
	}
	.banner-text {
		font-size: 22px;
	}
	.banner-text-sup {
		text-align: center;
		font-size: 16px;
		padding: 6px;
		width: 40px;
		height: 36px;
		top: 23px;
		left: 100px;
	}
	.main-question h2 {
		font-size: 18px;
		margin-bottom: 30px;
	}
	.main-question-2 h2 {
		font-size: 18px;
		margin-bottom: 5px;
	}
	.item-text,.text-drop{
		font-size: 12px;
	}
	.marks,
	.marks-2 {
		font-size: 56px;
		position: absolute;
		bottom: -16px;
		left: 385px;
		transform: rotate(14deg);
	}
	.marks-2 {
		left: 225px;
		bottom: -25px;
		width: 55px;
	}
}
@media (max-width: 485px) {
	.main-banner {
		max-width: 335px;
	}
	.banner-text {
		font-size: 22px;
	}
	.banner-text-sup {
		text-align: center;
		font-size: 16px;
		padding: 6px;
		width: 40px;
		height: 36px;
		top: 23px;
		left: 100px;
	}
	.main-question h2 {
		font-size: 18px;
		margin-bottom: 30px;
	}
	.main-question-2 h2 {
		font-size: 18px;
		margin-bottom: 5px;
	}
	.item-text,.text-drop{
		font-size: 12px;
	}
	.marks,
	.marks-2 {
		font-size: 66px;
		position: absolute;
		bottom: -24px;
		left: 235px;
		transform: rotate(14deg);
	}
	.marks-2 {
		left: 225px;
		bottom: -35px;
		width: 55px;
	}
}
@media (max-width: 374px) {
	.tech-main{
		flex-direction: column;
	}
	.tech-support{
		margin-right: 0;
		margin-bottom: 10px;
	}
	.main-banner {
		max-width: 290px;
		margin-top: 0px;
	}
	.banner-text {
		font-size: 20px;
	}
	.banner-text-sup {
		text-align: center;
		font-size: 14px;
		padding: 5px;
		width: 35px;
		height: 30px;
		top: 21px;
		left: 80px;
	}
	.main-question h2 {
		font-size: 16px;
		margin-bottom: 30px;
	}
	.main-question-2 h2 {
		font-size: 16px;
		margin-bottom: 5px;
	}
	.marks,
	.marks-2 {
		font-size: 46px;
		position: absolute;
		bottom: -11px;
		left: 209px;
		transform: rotate(14deg);
	}
	.marks-2 {
		left: 200px;
		bottom: -21px;
		width: 55px;
	}
	.item-text{
		font-size: 12px;
	}
	.answer {
		font-size: 12px;
	}
}
