
.section.first_screen {
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: max(170px, 40vh) 0 80px;
	color: #fff;
}
.section.first_screen:before {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),linear-gradient(263.76deg, rgba(0, 0, 0, 0) -21.26%, #000000 118.83%);
}

.first_screen h1 {
	color: var(--gold);
	white-space: nowrap;
	font-size: 7.4vw;
	margin: 0;
}
.first_screen .min_height {
	grid-template-columns: auto 41.1%;
}
.first_screen .bullets {
	gap: 24px 40px;
	max-width: 550px;
	margin: 72px 0 40px;
}
.first_screen .bullets li {
	grid-template-columns: 32px auto;
	gap: 16px;
	align-items: center;
	position: relative;
	font-size: 22px;
}
.first_screen .bullets li:before {
	position: absolute;
	z-index: -1;
	content: '';
	display: block;
	background: url('home_bullit_bg.webp') no-repeat left top/cover;
	width: 181px;
	height: 47px;
}
.first_screen .bullets li .img {
	position: relative;
	z-index: 1;
}
.first_screen .bullets li .img img,
.first_screen .bullets li .img svg {
	display: block;
}
.first_screen .fs_right {
	font-size: 22px;
}
.first_screen .fs_right p {
	margin: 0;
}

@media (max-width: 1600px) {
	
	.first_screen .min_height {
		grid-template-columns: 1fr 1fr;
	}
	.first_screen .fs_right {
		font-size: 18px;
	}
}

@media (max-width: 1200px) {

	.section.first_screen {
		background-image: var(--first_screen_1200) !important;
	}
	
	.first_screen .bullets {
		gap: 16px;
	}
}

@media (max-width: 991px) {
	.section.first_screen {
		background-image: var(--first_screen_991) !important;
		padding: 138px 0 48px;
	}
	.first_screen .min_height {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.first_screen h1 {
		font-size: 14vw;
	}
	.first_screen .fs_right {
		font-size: 16px;
	}
	.first_screen .bullets li {
		font-size: 18px;
	}
	.first_screen .bullets {
		margin: 24px 0 72px;
	}
}

@media (max-width: 767px) {
	.section.first_screen {
		background-image: var(--first_screen_767) !important;
	}
}

@media (max-width: 575px) {
	.section.first_screen {
		background-image: var(--first_screen_450) !important;
		padding: 96px 0 24px;
	}
	.section.first_screen .buttons {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.first_screen .bullets {
		grid-template-columns: 1fr;
		gap: 8px;
		margin: 16px 0;
	}
}

@media (max-width: 450px) {
	.section.first_screen {
		background-image: var(--first_screen_450) !important;
	}
}



