* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: 100ms;
}
a {
	text-decoration: none;
	color: unset;
}
button {
	outline: none;
	border: none;
	background-color: transparent;
}

.home_container {
	width: 100%;
	height: auto;
}
.home_container_one,
.home_container_two {
	width: 100%;
	height: auto;
	padding: 40px 20px;
	display: flex;
	justify-content: center;
}
.home_container_one {
	background-color: #ebebeb;
}
.home_content_one,
.home_content_two {
	width: 1280px;
}

.home_content_one {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}

/* Status slider (replaces important info + latest updates tiles) */
.home_content_one .status_slider {
	width: 100%;
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.status_slider_viewport {
	width: 100%;
	overflow: hidden;
	min-height: 420px;
}

.status_slider_track {
	display: flex;
	width: 100%;
	transition: transform 0.6s ease-in-out;
}

.status_slide {
	flex: 0 0 100%;
	width: 100%;
	min-height: 420px;
	position: relative;
}

.status_slide_bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.status_slide_bg_ecommerce {
	background:
		radial-gradient(circle at 88% 18%, rgba(255, 152, 0, 0.22) 0%, transparent 42%),
		radial-gradient(circle at 8% 82%, rgba(66, 7, 158, 0.3) 0%, transparent 44%),
		repeating-linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.025) 0px,
			rgba(255, 255, 255, 0.025) 1px,
			transparent 1px,
			transparent 16px
		),
		linear-gradient(125deg, #1f1245 0%, #42079e 38%, #5c2d91 68%, #2a1a52 100%);
}

.status_slide_bg_msme {
	background:
		radial-gradient(circle at 85% 20%, rgba(255, 193, 7, 0.18) 0%, transparent 45%),
		radial-gradient(circle at 10% 80%, rgba(76, 175, 80, 0.2) 0%, transparent 40%),
		linear-gradient(135deg, #1b3a2f 0%, #2d5a47 35%, #1a4d3e 70%, #0f2e24 100%);
}

.status_slide_bg_cims {
	background:
		radial-gradient(circle at 90% 15%, rgba(152, 157, 255, 0.25) 0%, transparent 42%),
		radial-gradient(circle at 5% 75%, rgba(66, 7, 158, 0.35) 0%, transparent 45%),
		repeating-linear-gradient(
			-45deg,
			rgba(255, 255, 255, 0.03) 0px,
			rgba(255, 255, 255, 0.03) 1px,
			transparent 1px,
			transparent 12px
		),
		linear-gradient(120deg, #2b1055 0%, #42079e 40%, #2b2d6b 75%, #1a1240 100%);
}

.status_slide_overlay_ecommerce {
	background: linear-gradient(
		105deg,
		rgba(22, 12, 48, 0.9) 0%,
		rgba(66, 7, 158, 0.66) 45%,
		rgba(66, 7, 158, 0.36) 100%
	);
}

.status_slide_overlay_msme {
	background: linear-gradient(
		105deg,
		rgba(12, 32, 24, 0.9) 0%,
		rgba(20, 50, 38, 0.65) 45%,
		rgba(20, 50, 38, 0.35) 100%
	);
}

.status_slide_overlay_cims {
	background: linear-gradient(
		105deg,
		rgba(26, 12, 50, 0.9) 0%,
		rgba(43, 45, 107, 0.68) 45%,
		rgba(43, 45, 107, 0.38) 100%
	);
}

.status_slide_overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		rgba(18, 28, 42, 0.88) 0%,
		rgba(26, 38, 56, 0.62) 45%,
		rgba(26, 38, 56, 0.35) 100%
	);
}

.status_slide_content {
	position: relative;
	z-index: 1;
	padding: 36px 48px 56px;
	color: #ffffff;
	max-width: 760px;
}

.gem_brand_label {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8ec5ff;
	margin-bottom: 10px;
	font-family: Poppins, sans-serif;
}

.status_slide_ecommerce .gem_brand_label {
	color: #ffd699;
}

.status_slide_msme .gem_brand_label {
	color: #b8f0c8;
}

.status_slide_cims .gem_brand_label {
	color: #c4b5ff;
}

.gem_title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 10px;
	font-family: Poppins, sans-serif;
}

.gem_subtitle {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.92);
	font-family: Poppins, sans-serif;
}

.gem_highlights {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.gem_highlights li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
	font-family: "Times New Roman", Times, serif;
}

.gem_highlights li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #6eb6ff;
}

.status_slide_ecommerce .gem_highlights li::before {
	color: #ffb74d;
}

.status_slide_msme .gem_highlights li::before {
	color: #7ddea0;
}

.status_slide_cims .gem_highlights li::before {
	color: #989dff;
}

.gem_register_link {
	display: inline-block;
	padding: 10px 22px;
	border: 2px solid #ffffff;
	border-radius: 4px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	font-family: Poppins, sans-serif;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.gem_register_link:hover {
	background-color: #ffffff;
	color: #1a2332;
}

.status_slide_msme .gem_register_link:hover {
	color: #0f2e24;
}

.status_slide_cims .gem_register_link:hover {
	color: #2b1055;
}

.status_slider_dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 14px 0 18px;
	background-color: white;
}

.status_slider_dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 2px solid #42079e;
	background-color: transparent;
	cursor: pointer;
	padding: 0;
}

.status_slider_dot.active {
	background-color: #42079e;
}

.home_content_one .home_container_one_left,
.home_content_one .home_container_one_right {
	background-color: white;
	padding: 15px 50px;
	border-radius: 8px;
}
.home_content_one .home_container_one_left {
	width: 40%;
	margin-right: 30px;
}
.home_content_one .home_container_one_right {
	width: 60%;
}
.home_content_one .home_container_one_left .header,
.home_content_one .home_container_one_right .header {
	border-bottom: 1px solid black;
	padding-bottom: 10px;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
}
.home_content_one .home_container_one_left .header .left_header,
.home_content_one .home_container_one_right .header .left_header,
.home_content_one .home_container_one_right .header .right_header p {
	font-size: 24px;
	color: #42079e;
	font-family: "Times New Roman", Times, serif;
	font-weight: 400;
	font-style: normal;
}
.home_content_one .home_container_one_right .header .right_header {
	display: flex;
	align-items: center;
}
.home_content_one .home_container_one_right .header .right_header p {
	color: black;
}

.home_content_one .home_container_one_right .header .right_header .year_drop_down {
	margin-left: 20px;
	position: relative;
}
.home_content_one .home_container_one_right .header .right_header .year_drop_down p {
	background-color: #42079e;
	padding: 5px 10px;
	display: flex;
	align-items: center;
	border-radius: 4px;
}
.home_content_one .home_container_one_right .header .right_header .year_drop_down p span {
	margin-right: 5px;
	font-size: 14px;
	font-family: "Times New Roman", Times, serif;
	font-weight: 300;
	font-style: normal;
	color: white;
}
.home_content_one .home_container_one_right .header .right_header .year_drop_down .years_list {
	width: 100%;
	position: absolute;
	top: 110%;
	list-style-type: none;
	background-color: #42079e;
	padding: 10px;
	border-radius: 4px;
	display: none;
}

.home_content_one .home_container_one_right .header .right_header .year_drop_down .years_list li {
	color: white;
	font-size: 13px;
	padding: 1px 3px;
	font-family: "Times New Roman", Times, serif;
	font-weight: 300;
	font-style: normal;
	cursor: pointer;
	text-align: center;
}
.home_content_one
	.home_container_one_right
	.header
	.right_header
	.year_drop_down
	.years_list
	li:hover {
	background-color: white;
	color: #42079e;
	border-radius: 4px;
}

.home_container_one .home_container_one_left table,
.home_container_one .home_container_one_right table {
	width: 100%;
	border-collapse: collapse;
}
.home_container_one .home_container_one_left table thead th,
.home_container_one .home_container_one_left table tbody tr td,
.home_container_one .home_container_one_right table thead th,
.home_container_one .home_container_one_right table tbody tr td {
	text-align: left;
	padding: 10px 0px;
	border-bottom: 2px solid #989dff;
}
.home_container_one .home_container_one_left table thead th,
.home_container_one .home_container_one_right table thead th {
	font-size: 20px;
	font-family: "Times New Roman", Times, serif;
	font-weight: 400;
	font-style: normal;
}
.home_container_one .home_container_one_left table tbody tr td,
.home_container_one .home_container_one_right table tbody tr td {
	font-size: 16px;
	font-family: "Times New Roman", Times, serif;
	font-weight: 300;
	font-style: normal;
}
.home_container_one .home_container_one_left table tbody tr td button {
	background-color: #989dff;
	color: black;
	border-radius: 4px;
	font-size: 14px;
	font-family: "Times New Roman", Times, serif;
	font-weight: 300;
	font-style: normal;
	padding: 6px 12px;
	cursor: pointer;
}
.home_container_one .home_container_one_right button {
	background-color: #989dff;
	color: black;
	border-radius: 4px;
	font-size: 14px;
	font-family: "Times New Roman", Times, serif;
	font-weight: 300;
	font-style: normal;
	padding: 6px 12px;
	cursor: pointer;
}
.home_content_two .home_content_two_header {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	background-color: #42079e;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 30px;
}
.home_content_two .home_content_two_header .left_image {
	width: 250px;
	height: 80px;
	object-fit: cover;
}
.home_content_two .home_content_two_header .right_description {
	padding: 0px 100px;
	color: white;
	font-size: 18px;
	font-family: "Times New Roman", Times, serif;
	font-weight: 400;
	font-style: normal;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}
.home_content_two .home_content_two_table {
	width: 100%;
	box-shadow: 0px 0px 5px grey;
	border-radius: 8px;
}
.home_content_two .home_content_two_table .table_header {
	color: #2b2d6b;
	font-size: 24px;
	font-family: "Times New Roman", Times, serif;
	font-weight: 400;
	font-style: normal;
	padding: 10px 20px;
	border-bottom: 2px solid black;
}
.home_content_two .home_content_two_table table {
	width: 100%;
	border-collapse: collapse;
}
.home_content_two .home_content_two_table table thead th {
	font-size: 20px;
	font-family: "Times New Roman", Times, serif;
	font-weight: 400;
	font-style: normal;
	text-align: left;
	padding: 10px;
	border-bottom: 1px solid #989dff;
}
.home_content_two .home_content_two_table table tbody tr td {
	font-size: 16px;
	font-family: "Times New Roman", Times, serif;
	font-weight: 300;
	font-style: normal;
	text-align: left;
	padding: 10px;
	border-bottom: 1px solid #989dff;
}

@media only screen and (max-width: 1536px) {
	.home_container_one,
	.home_container_two {
		padding: 35px 20px;
	}
	.home_content_one,
	.home_content_two {
		width: 1080px;
	}
	.home_content_one .home_container_one_left,
	.home_content_one .home_container_one_right {
		padding: 15px 40px;
		border-radius: 6px;
	}
	.home_content_one .home_container_one_left {
		margin-right: 25px;
	}
	.home_content_one .home_container_one_left .header,
	.home_content_one .home_container_one_right .header {
		padding-bottom: 8px;
		margin-bottom: 8px;
	}
	.home_content_one .home_container_one_left .header .left_header,
	.home_content_one .home_container_one_right .header .left_header,
	.home_content_one .home_container_one_right .header .right_header p {
		font-size: 20px;
	}

	.home_content_one
		.home_container_one_right
		.header
		.right_header
		.year_drop_down
		.years_list
		li {
		font-size: 14px;
	}

	.home_container_one .home_container_one_left table thead th,
	.home_container_one .home_container_one_right table thead th {
		font-size: 17px;
	}
	.home_container_one .home_container_one_left table tbody tr td,
	.home_container_one .home_container_one_right table tbody tr td {
		font-size: 14px;
	}
	.home_container_one .home_container_one_left table tbody tr td button {
		font-size: 13px;
		padding: 5px 10px;
	}
	.home_content_two .home_content_two_header {
		margin-bottom: 25px;
	}
	.home_content_two .home_content_two_header .right_description {
		font-size: 16px;
	}
	.home_content_two .home_content_two_table {
		border-radius: 6px;
	}
	.home_content_two .home_content_two_table .table_header {
		font-size: 22px;
		padding: 8px 16px;
	}
	.home_content_two .home_content_two_table table thead th {
		font-size: 18px;
		padding: 10px;
	}
	.home_content_two .home_content_two_table table tbody tr td {
		font-size: 14px;
		padding: 10px;
	}
	.home_content_two .home_content_two_table table tbody tr:last-child td {
		border-bottom: unset;
	}
}

@media only screen and (max-width: 1280px) {
	.home_container_one,
	.home_container_two {
		padding: 30px 20px;
	}
	.home_content_one,
	.home_content_two {
		width: 980px;
	}
	.home_content_one .home_container_one_left,
	.home_content_one .home_container_one_right {
		padding: 15px 35px;
	}
	.home_content_one .home_container_one_left {
		margin-right: 20px;
	}
	.home_content_one .home_container_one_left .header,
	.home_content_one .home_container_one_right .header {
		padding-bottom: 6px;
		margin-bottom: 6px;
	}
	.home_content_one .home_container_one_left .header .left_header,
	.home_content_one .home_container_one_right .header .left_header,
	.home_content_one .home_container_one_right .header .right_header p {
		font-size: 18px;
	}

	.home_content_one .home_container_one_right .header .right_header .year_drop_down {
		margin-left: 15px;
	}
	.home_content_one .home_container_one_right .header .right_header .year_drop_down p {
		padding: 3px 6px;
	}
	.home_content_one .home_container_one_right .header .right_header .year_drop_down p span {
		font-size: 13px;
	}
	.home_content_one .home_container_one_right .header .right_header .year_drop_down .years_list {
		padding: 6px;
	}
	.home_content_one
		.home_container_one_right
		.header
		.right_header
		.year_drop_down
		.years_list
		li {
		font-size: 12px;
	}

	.home_container_one .home_container_one_left table thead th,
	.home_container_one .home_container_one_left table tbody tr td,
	.home_container_one .home_container_one_right table thead th,
	.home_container_one .home_container_one_right table tbody tr td {
		padding: 7px 0px;
		border-bottom: 1px solid #989dff;
	}
	.home_container_one .home_container_one_left table thead th,
	.home_container_one .home_container_one_right table thead th {
		font-size: 15px;
	}
	.home_container_one .home_container_one_left table tbody tr td,
	.home_container_one .home_container_one_right table tbody tr td {
		font-size: 13px;
	}
	.home_container_one .home_container_one_left table tbody tr td button {
		font-size: 12px;
		padding: 3px 6px;
	}
	.home_content_two .home_content_two_header {
		margin-bottom: 20px;
	}
	.home_content_two .home_content_two_header .right_description {
		padding: 0px 50px;
		font-size: 15px;
	}
	.home_content_two .home_content_two_table {
		border-radius: 4px;
	}
	.home_content_two .home_content_two_table .table_header {
		font-size: 20px;
		padding: 6px 12px;
	}
	.home_content_two .home_content_two_table table thead th {
		font-size: 16px;
		padding: 8px;
	}
	.home_content_two .home_content_two_table table tbody tr td {
		font-size: 13px;
		padding: 8px;
	}
	.home_content_two .home_content_two_table table tbody tr:last-child td {
		border-bottom: unset;
	}
}

@media only screen and (max-width: 1080px) {
	.home_container_one,
	.home_container_two {
		padding: 10px 25px;
	}
	.home_content_one,
	.home_content_two {
		width: 780px;
	}
	.home_content_one .home_container_one_left,
	.home_content_one .home_container_one_right {
		padding: 15px 30px;
		border-radius: 4px;
	}
	.home_content_one .home_container_one_left .header,
	.home_content_one .home_container_one_right .header {
		padding-bottom: 5px;
		margin-bottom: 5px;
	}
	.home_content_one .home_container_one_left .header .left_header,
	.home_content_one .home_container_one_right .header .left_header,
	.home_content_one .home_container_one_right .header .right_header p {
		font-size: 16px;
	}

	.home_content_one .home_container_one_right .header .right_header .year_drop_down {
		margin-left: 10px;
	}
	.home_content_one .home_container_one_right .header .right_header .year_drop_down p span {
		font-size: 12px;
	}
	.home_content_one .home_container_one_right .header .right_header .year_drop_down .years_list {
		padding: 4px;
	}
	.home_content_one
		.home_container_one_right
		.header
		.right_header
		.year_drop_down
		.years_list
		li {
		font-size: 11px;
	}

	.home_container_one .home_container_one_left table thead th,
	.home_container_one .home_container_one_left table tbody tr td,
	.home_container_one .home_container_one_right table thead th,
	.home_container_one .home_container_one_right table tbody tr td {
		padding: 5px 0px;
	}
	.home_container_one .home_container_one_left table thead th,
	.home_container_one .home_container_one_right table thead th {
		font-size: 14px;
	}
	.home_container_one .home_container_one_left table tbody tr td,
	.home_container_one .home_container_one_right table tbody tr td {
		font-size: 12px;
	}
	.home_container_one .home_container_one_left table tbody tr td button {
		font-size: 12px;
	}
	.home_content_two .home_content_two_header .left_image {
		height: 70px;
	}
	.home_content_two .home_content_two_header .right_description {
		padding: 0px 30px;
		font-size: 14px;
	}
	.home_content_two .home_content_two_table .table_header {
		font-size: 18px;
		padding: 5px 10px;
	}
	.home_content_two .home_content_two_table table thead th {
		font-size: 15px;
		padding: 6px;
	}
	.home_content_two .home_content_two_table table tbody tr td {
		font-size: 12px;
		padding: 6px;
	}
	.home_content_two .home_content_two_table table tbody tr:last-child td {
		border-bottom: unset;
	}
}

@media only screen and (max-width: 880px) {
	.home_container_one,
	.home_container_two {
		padding: 25px 20px;
	}
	.home_content_one,
	.home_content_two {
		width: 667px;
	}
	.home_content_one .home_container_one_left,
	.home_content_one .home_container_one_right {
		padding: 15px 30px;
		border-radius: 4px;
	}
	.home_content_one .home_container_one_left .header,
	.home_content_one .home_container_one_right .header {
		padding-bottom: 5px;
		margin-bottom: 5px;
	}
	.home_content_one .home_container_one_left .header .left_header,
	.home_content_one .home_container_one_right .header .left_header,
	.home_content_one .home_container_one_right .header .right_header p {
		font-size: 16px;
	}

	.home_content_one .home_container_one_right .header .right_header .year_drop_down {
		margin-left: 10px;
	}
	.home_content_one .home_container_one_right .header .right_header .year_drop_down p span {
		font-size: 12px;
	}
	.home_content_one .home_container_one_right .header .right_header .year_drop_down .years_list {
		padding: 4px;
	}
	.home_content_one
		.home_container_one_right
		.header
		.right_header
		.year_drop_down
		.years_list
		li {
		font-size: 11px;
	}

	.home_container_one .home_container_one_left table thead th,
	.home_container_one .home_container_one_left table tbody tr td,
	.home_container_one .home_container_one_right table thead th,
	.home_container_one .home_container_one_right table tbody tr td {
		padding: 5px 0px;
	}
	.home_container_one .home_container_one_left table thead th,
	.home_container_one .home_container_one_right table thead th {
		font-size: 14px;
	}
	.home_container_one .home_container_one_left table tbody tr td,
	.home_container_one .home_container_one_right table tbody tr td {
		font-size: 12px;
	}
	.home_container_one .home_container_one_left table tbody tr td button {
		font-size: 12px;
	}
	.home_content_two .home_content_two_header .left_image {
		height: 70px;
	}
	.home_content_two .home_content_two_header .right_description {
		padding: 0px 30px;
		font-size: 14px;
	}
	.home_content_two .home_content_two_table .table_header {
		font-size: 18px;
		padding: 5px 10px;
	}
	.home_content_two .home_content_two_table table thead th {
		font-size: 15px;
		padding: 6px;
	}
	.home_content_two .home_content_two_table table tbody tr td {
		font-size: 12px;
		padding: 6px;
	}
	.home_content_two .home_content_two_table table tbody tr:last-child td {
		border-bottom: unset;
	}
}

@media only screen and (max-width: 667px) {
	.home_container_one,
	.home_container_two {
		padding: 15px;
	}
	.home_content_one,
	.home_content_two {
		width: 100%;
	}
	.home_content_one {
		display: unset;
	}
	.status_slider_viewport,
	.status_slide {
		min-height: 360px;
	}
	.status_slide_content {
		padding: 24px 20px 48px;
	}
	.gem_title {
		font-size: 22px;
	}
	.gem_subtitle {
		font-size: 15px;
	}
	.gem_highlights li {
		font-size: 13px;
	}
	.home_content_one .home_container_one_left,
	.home_content_one .home_container_one_right {
		padding: 10px 15px;
		border-radius: 4px;
	}
	.home_content_one .home_container_one_left {
		width: 100%;
		margin-right: 0px;
		margin-bottom: 20px;
	}
	.home_content_one .home_container_one_right {
		width: 100%;
	}
	.home_content_one .home_container_one_left .header,
	.home_content_one .home_container_one_right .header {
		padding-bottom: 5px;
		margin-bottom: 5px;
	}
	.home_content_one .home_container_one_left .header .left_header,
	.home_content_one .home_container_one_right .header .left_header,
	.home_content_one .home_container_one_right .header .right_header p {
		font-size: 14px;
	}

	.home_content_one .home_container_one_right .header .right_header .year_drop_down {
		margin-left: 10px;
	}
	.home_content_one .home_container_one_right .header .right_header .year_drop_down p span {
		font-size: 11px;
	}
	.home_content_one .home_container_one_right .header .right_header .year_drop_down .years_list {
		padding: 4px;
	}
	.home_content_one
		.home_container_one_right
		.header
		.right_header
		.year_drop_down
		.years_list
		li {
		font-size: 10px;
	}

	.home_container_one .home_container_one_left table thead th,
	.home_container_one .home_container_one_left table tbody tr td,
	.home_container_one .home_container_one_right table thead th,
	.home_container_one .home_container_one_right table tbody tr td {
		padding: 5px 0px;
	}
	.home_container_one .home_container_one_left table thead th,
	.home_container_one .home_container_one_right table thead th {
		font-size: 13px;
	}
	.home_container_one .home_container_one_left table tbody tr td,
	.home_container_one .home_container_one_right table tbody tr td {
		font-size: 11px;
	}
	.home_container_one .home_container_one_left table tbody tr td button {
		font-size: 10px;
	}
	.home_content_two .home_content_two_header {
		display: block;
	}
	.home_content_two .home_content_two_header .left_image {
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
	.home_content_two .home_content_two_header .right_description {
		padding: 0px;
		font-size: 13px;
	}
	.home_content_two .home_content_two_table .table_header {
		font-size: 15px;
		padding: 3px 6px;
	}
	.home_content_two .home_content_two_table table thead th {
		font-size: 13px;
		padding: 6px;
	}
	.home_content_two .home_content_two_table table tbody tr td {
		font-size: 11px;
		padding: 6px;
	}
	.home_content_two .home_content_two_table table tbody tr:last-child td {
		border-bottom: unset;
	}
}

@media only screen and (max-width: 420px) {
	.home_content_one .home_container_one_left {
		margin-bottom: 15px;
	}
	.home_content_one .home_container_one_left .header .left_header,
	.home_content_one .home_container_one_right .header .left_header,
	.home_content_one .home_container_one_right .header .right_header p {
		font-size: 13px;
	}

	.home_content_one .home_container_one_right .header .right_header .year_drop_down {
		margin-left: 10px;
	}
	.home_content_one .home_container_one_right .header .right_header .year_drop_down p span {
		font-size: 10px;
	}
	.home_content_one .home_container_one_right .header .right_header .year_drop_down .years_list {
		padding: 4px;
	}
	.home_content_one
		.home_container_one_right
		.header
		.right_header
		.year_drop_down
		.years_list
		li {
		font-size: 9px;
	}
	.home_container_one .home_container_one_left table thead th,
	.home_container_one .home_container_one_right table thead th {
		font-size: 12px;
	}
	.home_container_one .home_container_one_left table tbody tr td,
	.home_container_one .home_container_one_right table tbody tr td {
		font-size: 10px;
	}
	.home_container_one .home_container_one_left table tbody tr td button {
		font-size: 9px;
	}
	.home_content_two .home_content_two_header {
		display: block;
	}
	.home_content_two .home_content_two_header .left_image {
		margin-bottom: 15px;
	}
	.home_content_two .home_content_two_header .right_description {
		padding: 0px;
		font-size: 12px;
	}
	.home_content_two .home_content_two_table .table_header {
		font-size: 14px;
	}
	.home_content_two .home_content_two_table table thead th {
		font-size: 12px;
		padding: 6px;
	}
	.home_content_two .home_content_two_table table tbody tr td {
		font-size: 10px;
		padding: 6px;
	}
	.home_content_two .home_content_two_table table tbody tr:last-child td {
		border-bottom: unset;
	}
}
