/* Header: start */
.navbar {
	display: flex;
	align-items: center;
	background-color: #ffffff;
	height: 70px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	border-bottom: 1px solid #dfdfdf;
}

.navbar_wrap {
	width: 1120px;
	height: 51px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}

.logo {
	width: 153px;
	height: 51px;
}

.m_logo {
	display: none;
}

.login {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 128px;
	height: 48px;
	padding: 12px 23px;
	background-color: var(--blue);
	color: var(--gray100);
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	transition: all 300ms ease;
}

.login:hover {
	background-color: #1967d6;
}
/* Header: end */

main {
	margin-top: 70px;
}
/* Main Heading: start */
.heading {
	background-color: #cfe5ff;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 540px;
}

.text_box {
	position: relative;
	bottom: 100px;
}

.heading_title {
	margin-top: 0;
	margin-bottom: 32px;
	font-size: 40px;
	font-weight: 700;
}

.heading_title span {
	display: block;
	line-height: 140%;
}

.view_button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: var(--blue);
	color: var(--gray50);
	font-size: 20px;
	font-weight: 600;
	width: 357px;
	height: 56px;
	border-radius: 40px;
	transition: all 300ms ease;
}

.view_button:hover {
	background-color: #1967d6;
}

/* Main Heading: end */

/* Main Content: start */
.content_wrap {
	height: 720px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.category_box {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fcfcfc;
	width: 988px;
	height: 444px;
	gap: 64px;
}
.content_wrap:nth-child(odd) .category_box {
	flex-direction: row-reverse;
}

.category_box img {
	width: 579px;
	height: 100%;
}

.category_description {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.content_wrap:nth-child(odd) .category_description {
	align-items: flex-end;
	text-align: right;
}

.category_title {
	color: var(--blue);
	font-size: 18px;
	font-weight: 700;
}

.title {
	font-size: 40px;
	font-weight: 700;
	color: var(--gray700);
	line-height: 140%;
	margin-bottom: 24px;
}

.title span {
	display: block;
}

.description {
	font-size: 24px;
	font-weight: 500;
	color: var(--gray700);
	line-height: 32px;
}

.register {
	margin-bottom: 138px;
}

/* Main Content: end */

/* Main ad: start */
.ad {
	background-color: #cfe5ff;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 540px;
}

.ad > .title {
	margin-right: 69px;
	position: relative;
	bottom: 113px;
}
/* Main ad: end */

/* Footer: start */
.footer_wrap {
	background-color: var(--gray900);
	color: var(--gray400);
	height: 160px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	bottom: 0;
}

.ft_content_wrap {
	margin: 32px auto 0;
	width: 1120px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	font-weight: 400;
	color: var(--gray400);
}

.ft_content_wrap a {
	color: var(--gray400);
}

.privacy_faq {
	display: flex;
	align-items: center;
}
.policy {
	margin-right: 30px;
}

.icons {
	display: flex;
	gap: 12px;
	cursor: pointer;
	list-style: none;
}
/* Footer: end */

/* Media Query-start */

@media (min-width: 1200px) {
	.header_wrap {
		width: 100%;
		margin: 0 200px;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	/* header: start */
	.navbar_wrap {
		width: 100%;
		margin: 0 24px;
	}
	/* header: end */

	/* main heading: start */
	.heading {
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		height: 771px;
		margin-bottom: 24px;
	}

	.text_box {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 20.699vw;
	}

	.heading_title span {
		display: inline-block;
	}
	/* main heading: end */
	/* main content: start */
	.content_wrap {
		height: 100%;
		margin-bottom: 52px;
		padding: 0 24px;
	}

	.content_wrap .category_box {
		flex-direction: column;
		align-items: flex-start;
		gap: unset;
		width: 100%;
		height: 100%;
	}

	.content_wrap:nth-child(odd) .category_box {
		flex-direction: column;
		align-items: flex-end;
	}

	.content_wrap .category_box img {
		width: 100%;
		border-radius: 14px;
	}

	.content_wrap:nth-child(even) .category_description {
		margin-left: 0;
	}

	.content_wrap:nth-child(odd) .category_description {
		margin-right: 0;
		align-items: flex-end;
		text-align: right;
	}

	.category_title {
		margin-bottom: 0;
		margin-top: 24px;
	}

	.title {
		margin-top: 16px;
		margin-bottom: 24px;
		font-size: 32px;
	}

	.title span {
		display: inline;
	}

	.description {
		margin-top: 0;
		font-size: 18px;
	}

	.register {
		margin-bottom: 56px;
	}
	/* main content: end */
	/* main ad: start */
	.ad {
		height: 927px;
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
	}

	.ad > .title {
		text-align: center;
		margin-right: 0;
		margin-bottom: 140px;
	}
	/* main ad: end */
	/* footer: start */
	.ft_content_wrap {
		width: 100%;
		margin-left: 104px;
		margin-right: 104px;
	}

	/* footer: end */
}

@media (max-width: 767px) {
	/* header: start */
	.navbar_wrap {
		width: 100%;
		margin: 0 16px;
	}

	.logo {
		width: 103px;
	}

	.header_wrap {
		margin-left: 30px;
		margin-right: 30px;
	}

	.login {
		width: 100px;
	}
	/* header: end */
	/* main heading: start */
	.heading {
		height: 103.629vw;
		min-height: 540px;
		overflow: hidden;
		margin-bottom: 52px;
		flex-direction: column;
		align-items: center;
		justify-content: flex-end;
	}

	.text_box {
		text-align: center;
	}

	.heading_title {
		font-size: 32px;
	}

	.view_button {
		width: 240px;
		height: 48px;
		font-size: 18px;
	}

	.heading img {
		width: 100%;
		height: 45.699vw;
	}
	/* main heading: end */
	/* main content: start */
	.content_wrap {
		height: 100%;
		padding: 0 16px;
		margin-bottom: 40px;
	}

	.content_wrap:nth-child(odd) .category_box {
		flex-direction: column;
		align-items: flex-end;
	}

	.content_wrap .category_box {
		flex-direction: column;
		align-items: flex-start;
		gap: unset;
		width: 100%;
		height: 100%;
	}

	.category_box img {
		width: 100%;
		border-radius: 7px;
		margin-bottom: 24px;
	}

	.category_title {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.title {
		font-size: 24px;
		margin-bottom: 16px;
	}

	.title span {
		display: inline;
	}

	.description {
		font-size: 16px;
	}

	.register {
		margin-bottom: 83px;
	}
	/* main content: end */
	/* main ad: start */
	.ad {
		height: 124.597vw;
		min-height: 540px;
		overflow: hidden;
		flex-direction: column;
		align-items: center;
		justify-content: flex-end;
	}

	.ad > .title {
		bottom: 29.167vw;
		margin-right: 0;
		text-align: center;
		font-size: 32px;
	}

	.ad img {
		min-width: 375px;
		width: 100%;
		min-height: 198px;
	}
	/* main content: end */
	/* footer: start */
	.ft_content_wrap {
		font-size: 16px;
		margin-left: 32px;
		margin-right: 32px;
	}

	.codeit {
		position: absolute;
		bottom: 32px;
	}
	/* footer: end */
}

/* Media Query-end */
