@font-face {
	font-family: 'HELVETI1';
	src: url('./fonts/HELVETI1-1.ttf') format('truetype');
}

:root {
	--body-width: calc(100vw - 200px);
	--custom-height: calc(var(--body-width) * 0.035);
	--banner-padding: calc(var(--custom-height) * 2.5);
	--brand-color: #1d4347;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.justify-start {
	display: flex;
	justify-content: flex-start;
}

.justify-center {
	display: flex;
	justify-content: center;
}

.justify-end {
	display: flex;
	justify-content: flex-end;
}

.justify-evenly {
	display: flex;
	justify-content: space-evenly;
}

.justify-around {
	display: flex;
	justify-content: space-around;
}

.justify-between {
	display: flex;
	justify-content: space-between;
}

.align-start {
	display: flex;
	align-items: flex-start;
}

.align-center {
	display: flex;
	align-items: center;
}

.align-end {
	display: flex;
	align-items: flex-end;
}

img {
	vertical-align: middle;
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Arial', sans-serif;
}

.tab {
	display: none;
}

.active {
	display: block;
}

#content {
	min-height: 100vh;
}

.banner {
	min-height: 100vh;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.main {
	display: none;
}

#video {
	width: 100%;
	height: 100vh;
	display: none;
	object-fit: contain;
}

.topAnchor {
	position: fixed;
	right: 20px;
	bottom: 100px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #e3e3e3;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
}

.topAnchor:hover {
	background-color: #b5b5b5;
}


/* navbar */
.navbar {
	color: #fff;
	padding: 10px 0px;
	bottom: 0;
	transition: all 0.2s;
	z-index: 1031;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--brand-color);
	height: 100px;
	width: 100vw;
}

.navbar-igem-logo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
}

.navbar-igem-logo .img1 {
	width: 17rem;
	object-fit: contain;
	cursor: pointer;
}

.navbar-igem-logo .img2 {
	width: 5rem;
	object-fit: contain;
	cursor: pointer;
}

.sticky {
	/* position: fixed !important;
	top: 0;
	width: 100%;
	left: 0;
	z-index: 1030; */
}

/* sidebar */
#sidebar {
	z-index: 100;
	background-color: #fff;
	border: 1px solid var(--brand-color);
	border-radius: 10px;
	color: #fff;
	width: 170px;
	height: auto;
	font-size: 20px;
	position: fixed;
	top: 100px;
	right: 18px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	visibility: hidden;
}

#sidebar .avatar {
	width: 80px;
	border-radius: 50%;
	margin-bottom: 20px;
}

#sidebar ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

#sidebar ul .menu-item {
	margin-bottom: 10px;
	padding: 5px;
}

#sidebar ul li a {
	color: var(--brand-color);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#sidebar .sub-menu {
	padding: 10px 0;
	display: none;
	background-color: #fff;
	margin-top: 10px;
	/* max-height: 0; */
	overflow: hidden;
	transition: max-height 0.3s ease;
}

#sidebar ul ul li {
	padding: 10px;
	margin-bottom: 0;
}

#sidebar ul .menu-item.active .sub-menu {
	display: block;
	max-height: 1000px;
}

#sidebar ul li.active ul li:hover {
	cursor: pointer;
}


#sidebar ul li ul a {
	color: #111111;
	justify-content: flex-start;
	font-size: 14px;
	/* color: #333; */
}

#sidebar .arrow {
	transition: transform 0.3s ease;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 15px solid var(--brand-color);
}

/* home */
.home-banner .home-banner-img {
	width: 100%;
	min-height: auto;
	vertical-align: middle;
}

.home-banner {
	position: relative;
}

.home-banner-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* home banner1 */
.home-banner1 {
	margin-top: 120px;
}

.home-banner1-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 90%;
	height: 100%;
	margin: 0 auto;
	box-sizing: border-box;

}

.home-banner1-wrapper .text_1 {
	overflow-wrap: break-word;
	color: rgba(250, 251, 252, 1);
	font-size: 10rem;
	font-family: Impact;
	font-weight: normal;
	text-align: center;
	white-space: nowrap;
}

.home-banner1-wrapper .home-banner1-title {
	color: #9796a6;
	font-weight: bold;
	font-style: italic;
	position: relative;
	font-size: 4rem;
	text-align: center;
	display: block;
}

.home-banner1-wrapper .home-banner1-title::after {
	content: attr(data-text);
	position: absolute;
	top: -5px;
	right: 5px;
	color: #e69e37;
	-webkit-text-stroke: 1px #e69e37;
	text-stroke: 1px #e69e37;
}

.home-banner1-wrapper .home-banner1-sub-title {
	color: #000;
	font-size: 1.5rem;
	font-weight: bold;
}

/* home banner2 */
.home-banner2 {
	background-color: rgb(29, 67, 71);
}

.home-banner2-wrapper {
	width: 70%;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
}

.home-banner2-content {
	width: 45%;
	padding: var(--banner-padding) 0;
	box-sizing: border-box;
}

.block_3 {
	align-items: center;
	width: 100%;
}

.block_3 .home-group {
	margin-top: 200px;
	position: relative;
	width: 100%;
}

.block_3 .home-group2 {
	margin-top: 350px;
}

.block_3 .home-group4 {
	margin-top: 400px;
}

.paragraph_1 {
	overflow-wrap: break-word;
	color: rgba(250, 251, 252, 1);
	font-size: 2rem;
	/* font-weight: 00; */
	text-align: left;
	/* line-height: 55px; */
	position: absolute;
	top: 111px;
	left: 55px;
	width: 91%;
	display: inline-block;
}

.image_5 {
	width: 300px;
	/* height: 300px; */
	position: absolute;
	bottom: -150px;
	right: 205px;
}

.image-wrapper_3 {
	height: 1069px;
	width: 100%;
	position: relative;
}

.home-group2-border {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	width: 100%;
	height: 440px;
	position: absolute;
	right: 0;
	top: 156px;
}

.image_6 {
	width: 8rem;
	/* height: 7rem; */
	position: absolute;
	right: 43px;
	top: 221px
}

.image_7 {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 474px;
	right: 50px;
}

.image_8 {
	width: 50px;
	height: 50px;
	position: absolute;
	right: 12px;
	bottom: -20px;
}

.group_2 {
	position: relative;
	width: 1001px;
	height: 468px;
	background: url(https://static.igem.wiki/teams/5093/home/pink.png) 100% no-repeat;
	background-size: 100% 100%;
	/* margin: 288px 0 698px 456px; */
}

.group_2_text {
	align-items: flex-end;
	position: absolute;
	top: 66px;
	right: 182px;
	width: 80%;
}

.text_9 {
	overflow-wrap: break-word;
	color: rgba(252, 252, 252, 1);
	font-size: 48px;
	font-weight: 900;
	white-space: nowrap;
	line-height: 53px;
	margin: 0 0 0 23px;
}

.paragraph_2 {
	overflow-wrap: break-word;
	color: rgba(252, 252, 252, 1);
	font-size: 1.8rem;
	text-align: right;
	margin-top: 53px;
}

.image_9 {
	position: absolute;
	left: 17px;
	top: 234px;
	width: 265px;
	/* height: 377px; */
}

.image-wrapper_4 {
	height: 571px;
	background: url(https://static.igem.wiki/teams/5093/home/border.jpg) 100% no-repeat;
	background-size: 100% 100%;
	width: 100%;
	position: relative;
}

.image_10 {
	width: 76px;
	position: absolute;
	right: 75px;
	bottom: 100px;
}

.text_10 {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -26px);
	width: 410px;
	text-align: center;
	height: 52px;
	overflow-wrap: break-word;
	color: rgba(199, 225, 175, 1);
	font-size: 3rem;
	font-weight: 900;
	text-align: left;
	white-space: nowrap;
	display: flex;
	justify-content: center;
	align-items: center;
}

.group_3 {
	background-color: rgba(130, 175, 224, 1);
	border-radius: 80px 80px 80px 0px;
	position: absolute;
	width: 80%;
	height: 1069px;
}

.text_11 {
	width: 80%;
	display: inline-block;
	overflow-wrap: break-word;
	color: rgba(9, 68, 72, 1);
	font-size: 3rem;
	font-weight: 900;
	text-align: left;
	margin: 67px 0 0 37px;
}

.paragraph_3 {
	overflow-wrap: break-word;
	color: rgba(250, 251, 252, 1);
	font-size: 1.5rem;
	text-align: left;
	line-height: 55px;
	margin: 49px 52px 365px 52px;
}

.image_11 {
	position: absolute;
	right: 0;
	top: 730px;
	width: 570px;
	height: 300px;
}

.block_4 {
	position: relative;
	width: 100%;
	height: 677px;
	background: url(https://static.igem.wiki/teams/5093/home/purple.jpg) 100% no-repeat;
	background-size: 100% 100%;
}

.block_4_text {
	position: absolute;
	right: 71px;
	top: 71px;
	display: flex;
	flex-direction: column;
	overflow-wrap: break-word;
	width: 50%;
}

.text_12 {
	overflow-wrap: break-word;
	color: rgba(250, 251, 252, 1);
	font-size: 48px;
	font-weight: 900;
	text-align: left;
	white-space: nowrap;
}

.paragraph_4 {
	overflow-wrap: break-word;
	color: rgba(250, 251, 252, 1);
	font-size: 1.5rem;
	text-align: left;
	line-height: 55px;
	margin-top: 48px;
}

.image_12 {
	position: absolute;
	left: -120px;
	bottom: 0;
	width: 500px;
	height: 500px;
}

/* home banner5 */
.home-banner5, .home-banner6, .home-banner7 {
	background-color: #faf4ec;
	padding: 50px 0 100px 0;
}

.home-banner5-content {
	max-width: 800px;
	width: 800px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.home-banner5 .home-banner5-item img {
	width: 100px;
}

.home-banner5 .home-banner5-item {
	padding-bottom: 10px;
	border-bottom: 2px solid #ded9d2;
	margin-top: 50px;
	font-size: 24px;
	color: #83caee;
	-webkit-text-stroke: 1px #60a0d0;
	text-stroke: 1px #60a0d0;
	display: flex;
	align-items: center;
	width: 350px;
}

.home-banner5 .home-banner5-item:nth-child(2n+1) {
	margin-right: 50px;
}

/* home banner6 */
.home-banner6-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 70%;
	margin: 0 auto;
}

.home-banner6 .home-banner6-item {
	width: 260px;
	height: 350px;
	background-color: #494949;
	border-radius: 20px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	position: relative;
	margin-right: 20px;
}

.home-banner6 .home-banner6-item img {
	/* transform: scale(1.5); */
	position: absolute;
	bottom: 0;
}

.home-banner6 .home-banner6-item-text {
	position: absolute;
	top: 30px;
	z-index: 100;
	left: 50%;
	transform: translateX(-50%);
}

/* home banner7 */
.home-banner7-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 70%;
	margin: 0 auto;
	background-color: #e2eff7;
}

.home-banner7 .home-banner7-item {
	width: 260px;
	height: 350px;
	font-size: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0px 30px;
}

/* members */
.members-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--brand-color);
	background-size: 100% 100%;
	min-height: 100vh;
	/* padding-bottom: 200px; */
}

.member-content, .description-content {
	margin: 110px auto;
	width: 90%;
	max-width: 1000px;
	display: flex;
	flex-direction: column;
	/* position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, 0); */
}

.member-title, .description-title {
	color: #e3a343;
	font-size: 10rem;
	font-weight: bold;
	text-align: center;
}

.member-group_4 {
	width: 336px;
	height: 95px;
	margin: 0 0 33px 0;
}

.image_13 {
	width: 14px;
	height: 95px;
	background-color: #8baedc;
}

.member-text-wrapper_2 {
	height: 95px;
	background: #8baedc;
	width: 316px;
	align-items: flex-start;
	justify-content: center;
	border-radius: 0 100px 0 0;
}

.member-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.member-group-name {
	margin-top: 100px;
}

.flip-card {
	perspective: 1000px;
	/* 添加3D效果 */
	width: 280px;
	height: 380px;
	/* padding: 20px; */
	border-radius: 20px;
	margin: 31px 25px;
	transition: box-shadow 0.3s ease;
	cursor: pointer;
	overflow: hidden;
}

.flip-card:last-child {
	margin-right: auto;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.6s;
	transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
	/* 鼠标悬停时翻转180度 */
}

.flip-card-front {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	/* background-color: #ffffff; */
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	/* 隐藏背面 */
	border: 1px solid #ccc;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flip-card-front img {
	width: 90%;
	height: 80%;
	margin-top: 20px;
	object-fit: contain;
}

.flip-card-front span {
	margin-bottom: 20px;
}

.flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	/* 隐藏背面 */
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #ccc;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	overflow: auto;
	background-color: #067A82;
	color: white;
	transform: rotateY(180deg);
	/* 背面内容倒置 */
	padding: 20px;
}

.flip-card-back p {
	padding: 20px 0;
	height: 100%;
}

.flip-card-front {
	background-color: #f0f0f0;
}


/* description */

.description-content-wrapper {
	position: relative;
	width: 100%;
	background: url(https://static.igem.wiki/teams/5093/home/bg.jpg) no-repeat;
}

.description-title {
	color: #fff;
	font-size: 120px;
	font-weight: 900;
	text-align: center;
}

.description-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--brand-color);
	/* padding-bottom: 10rem; */
	background-size: 100% 100%;
	min-height: 100vh;
}

.description-banner {
	width: 100%;
	height: 90%;
	background: url(https://static.igem.wiki/teams/5093/description.png) no-repeat;
	/* background-size: 100% 100%; */
	background-size: cover;
}

.description-banner img {
	position: absolute;
	right: 8%;
	width: 260px;
}

.description-name {
	width: auto;
	max-width: 200px;
	color: #ffffff;
	font-size: 22px;
	text-align: left;
	padding: 6px;
	display: flex;
	align-items: center;
	/* word-spacing: 10px; */
	border-radius: 0px 50px 0px 0px;
	background: #E49DA1;
	scroll-margin-top: 150px;
}

.description-content {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin-top: 100px;
	/* overflow: hidden; */
}

.description-wrapper .description {
	display: flex;
	flex-direction: column;
	margin-left: 69px;
	line-height: 2rem;
	text-align: justify;
	font-size: 1rem;
	/* max-width: 800px; */
	color: #000;
	background: #fff;
	padding: 33px;
	border-radius: 50px;
}

.description-wrapper .description div {
	margin: 10px 0;
}

.description-wrapper .left-menu {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: auto;
	position: absolute;
	top: 150px;
	left: -50px;
	border-bottom-left-radius: 10px;
	border-top-left-radius: 10px;
}

.description-wrapper .left-menu .left-menu-title {
	color: #fff;
	font-size: 22px;
	width: 200px;
	padding: 20px 0;
}

.menu-sticky {
	position: sticky !important;
}

.description-wrapper .dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #fff;
	border-radius: 50%;
	cursor: pointer;
	flex-shrink: 0;
}

.description-wrapper .left-menu a {
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 10px;
	width: 150px;
	font-size: 16px;
	color: #fff;
	margin-bottom: 20px;
	border-radius: 10px;
	background-color: #82AFE0;
}

.description-wrapper .left-menu a.active {
	border: 2px solid #fff;
	background-color: #3391BB;

}

.description-wrapper .left-menu a:hover {
	border: 2px solid #fff;
	background-color: #3391BB;

}

.description-wrapper .left-menu a .title {
	margin-left: 20px;
}

.description-wrapper ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: flex-start;
}

.description-wrapper ul li {
	position: relative;
	display: flex;
	align-items: center;
}

.footer {
	height: 200px;
	background-color: #023233;
	color: #fff;
	text-align: center;
	font-size: 12px;
	line-height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	right: 0;
}

.TableGrid {
	margin: 0 auto;
}

@media (max-width: 1024px) {
	.member-content, .description-content {
		width: 95%;
		margin: 110px auto;
	}

	.description-wrapper .left-menu {
		min-width: 70px;
	}

	.description-wrapper .left-menu a {
		width: 100%;
	}

	.description-wrapper .dot {
		width: 5px;
		height: 5px;
	}

	.description-wrapper .left-menu a .title {
		margin-left: 5px;
		font-size: 0.5rem;
	}

	.description-wrapper .description {
		font-size: 0.5rem;
		margin-left: 5px;
		padding: 20px;
		border-radius: 20px;
		line-height: 1rem;
	}

	.description-name {
		width: 100px;
		font-size: 0.8rem;
	}

	/* 超小屏幕（最大宽度 480px） */
	@media (max-width: 480px) {
		/* video {
			object-fit: none;
		} */

		/* home */
		#home .home-content-bg {
			height: 1900px !important;
		}

		.home-group {
			margin-top: 150px !important;
		}

		.home-banner2-wrapper {
			width: 85%;
		}

		.home-banner1-wrapper .text_1,
		.description-title {
			font-size: 2.5rem;
		}

		.image-wrapper_4 {
			height: 235px;
		}

		.paragraph_1 {
			font-size: 0.8rem;
			top: 25px;
			left: 30px;
			width: 85%;
		}

		.paragraph_3 {
			font-size: 0.8rem;
			line-height: 20px;
			margin: 20px;
		}

		.image_5 {
			width: 100px;
			bottom: -50px;
			right: 50px;
		}


		.image_10 {
			width: 36px;
			position: absolute;
			right: 10px;
			bottom: 35px;
		}

		.image-wrapper_3 {
			height: 550px;
		}

		.group_3 {
			height: 550px;
			width: 75%;
			border-radius: 30px 30px 30px 0px;
		}

		.image_6 {
			width: 4rem;
			right: 0.5rem;
		}

		.image_8 {
			width: 25px;
			height: 25px;
			bottom: -5px;
		}

		.image_7 {
			width: 25px;
			height: 25px;
			top: 300px;
			right: 0.5rem;
		}

		.home-group2-border {
			height: 240px;
		}

		.text_9, .text_11, .text_12 {
			font-size: 1.5rem;
		}

		.paragraph_2 {
			font-size: 0.6rem;
			margin-top: 10px;
		}

		.image_9 {
			width: 100px;
			top: 90px;
		}

		.image_11 {
			top: 415px;
			width: 200px;
			height: 110px;
		}

		.group_2 {
			height: 180px;
		}

		.group_2_text {
			top: 10px;
			right: 65px;
		}

		.text_10 {
			font-size: clamp(1rem, 2vw, 3rem);
		}

		.block_4 {
			height: 225px;
		}

		.block_4_text {
			right: 60px;
			top: 20px;
			width: 48%;
		}

		.paragraph_4 {
			font-size: 0.8rem;
			line-height: 16px;
			margin-top: 20px;
			width: 200px
		}

		.navbar-igem-logo .img1 {
			width: 10rem;
		}

		.navbar-igem-logo .img2 {
			width: 3rem;
		}

		.image_12 {
			width: 115px;
			height: 115px;
			left: -20px;
		}

		/* member */
		#members .home-content-bg {
			height: 5600px !important;
		}

		.member-group_4 {
			width: 180px;
			height: 50px;
			gap: 10px;
		}

		.member-text-wrapper_2, .image_13 {
			height: 50px;
		}

		.text_9 {
			margin: 0;
		}

		.flip-card {
			width: 130px;
			height: 180px;
			margin: 20px 15px;
			font-size: 0.5rem;
		}
	}

	/* 小屏幕（481px 到 767px） */
	@media (min-width: 481px) and (max-width: 767px) {
		/* video {
			object-fit: none;
		} */

		.home-banner1-wrapper .text_1,
		.description-title {
			font-size: 1.5rem;
		}

		.paragraph_1 {
			font-size: 1rem;
		}

		.paragraph_3 {
			font-size: 1rem;
		}

		.text_9, .text_11, .text_12 {
			font-size: 1.5rem;
		}

		.paragraph_2 {
			font-size: 1rem;
			margin-top: 10px;
		}

		.text_10 {
			font-size: 1rem;
		}

		.paragraph_4 {
			font-size: 1.5rem;
		}

		.flip-card {
			width: 130px;
			height: 180px;
			margin: 20px 15px;
			font-size: 0.5rem;
		}
	}

	/* 中等屏幕（768px 到 1024px） */
	@media (min-width: 768px) and (max-width: 1024px) {
		#home .home-content-bg {
			height: 3100px !important;
		}

		#members .home-content-bg {
			height: 5600px !important;
		}

		.home-banner1-wrapper .text_1,
		.description-title {
			font-size: 7rem;
		}

		.paragraph_1 {
			font-size: 1.5rem;
			top: 90px;
			left: 40px;
		}

		.image_5 {
			width: 200px;
			bottom: -100px;
			right: 100px;
		}

		.image-wrapper_4 {
			height: 530px;
		}

		.image_10 {
			width: 60px;
			right: 50px;
		}

		.paragraph_3 {
			font-size: 1rem;
			line-height: 28px;
			margin: 20px;
		}

		.image-wrapper_3 {
			height: 550px;
		}

		.group_3 {
			height: 550px;
			width: 75%;
			border-radius: 30px 30px 30px 0px;
		}

		.image_6 {
			width: 4rem;
			right: 1rem;
		}

		.image_8 {
			width: 25px;
			height: 25px;
			bottom: -20px;
		}

		.image_7 {
			width: 25px;
			height: 25px;
			top: 315px;
			right: 1.5rem;
		}

		.image_11 {
			top: 415px;
			width: 300px;
			height: 115px;
		}

		.home-group2-border {
			height: 240px;
		}

		.group_2_text {
			top: 45px;
			right: 100px;
		}

		.image_9 {
			width: 100px;
			top: 200px;
		}

		.group_2 {
			height: 280px;
		}

		.block_4 {
			height: 440px;
		}

		.block_4_text {
			right: 60px;
			top: 20px;
			width: 50%;
		}

		.paragraph_4 {
			font-size: 1.5rem;
			line-height: 30px;
			margin-top: 20px;
		}

		.image_12 {
			width: 200px;
			height: 200px;
			left: -20px;
		}

		.text_9, .text_11, .text_12 {
			font-size: 2rem;
		}

		.paragraph_2 {
			font-size: 1rem;
		}

		.text_10 {
			font-size: 1.8rem;
		}
	}
}
