.gos-inner {
	position: relative;
	height: 469px;
	border-radius: 10px;
	overflow: hidden;
	padding: 53px 30px 30px;
	color: var(--color-white);
}

.gos-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
}

.gos__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.gos-text {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.gos-title {
	font-weight: 400;
	font-size: 48px;
	line-height: 1.2;
	text-transform: uppercase;
	margin-bottom: 22px;
}
.gos-subtitle {
	font-weight: 400;
	font-size: 32px;
	line-height: 1;
}

.gos-subtitle span {
	font-weight: 700;
}

.gos-subtitle sup {
	font-size: 16px;
}

.gos-form {
	margin-top: auto;
	max-width: 564px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 20px 10px;
	grid-auto-flow: row;
	grid-template-areas:
		'gos-form-input-phone gos-form-btn'
		'gos-form-checkbox gos-form-checkbox';
}

.gos-form-input-phone {
	grid-area: gos-form-input-phone;
}

.gos-form-btn {
	grid-area: gos-form-btn;
}

.gos-form-checkbox {
	grid-area: gos-form-checkbox;
}

.gos-form-input-phone {
	background-color: rgba(255, 255, 255, 0.44);
	padding: 0 18px;
	border-radius: 33px;
}
.gos-form-input-phone::placeholder {
	color: rgba(40, 40, 40, 0.52);
}

.gos-form-btn {
	max-width: 100%;
	height: 50px;
	border: 1px solid transparent;
	font-weight: 500;
}

.gos-form-checkbox .custom-checkbox-text {
	text-wrap: nowrap;
}

.gos-form .form-input__check[type='checkbox'] + .custom-checkbox {
	background-color: rgba(255, 255, 255, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.gos-form .form-input__check[type='checkbox']:checked + .custom-checkbox {
	background-color: rgba(255, 255, 255, 0.25);
	border: none;
}

@media screen and (max-width: 1540px) {
	.gos {
		background-image: url('../../img/gos-bg-laptop.webp');
		background-size: cover;
		background-repeat: no-repeat;
		background-position: right;
	}
	.gos-title {
		font-size: 36px;
	}
	.gos-inner {
		height: 414px;
	}
}

@media screen and (max-width: 768px) {
	.gos {
		background-image: none;
	}

	.gos .container {
		padding: 0;
	}

	.gos-inner {
		height: 100%;
		padding: 0;
		border-radius: 0;
	}
	.gos-bg {
		position: unset;
	}

	.gos-text {
		background: #535353;
		padding: 20px;
	}
	.gos-subtitle {
		margin-bottom: 32px;
	}
	.gos-form-checkbox .custom-checkbox-text {
		text-wrap: wrap;
	}
}

@media screen and (max-width: 540px) {
	.gos-title {
		font-size: 24px;
	}
	.gos-subtitle {
		font-size: 20px;
	}
	.gos-form {
		max-width: 100%;
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr auto;
		gap: 10px;
		grid-auto-flow: row;
		grid-template-areas:
			'gos-form-input-phone'
			'gos-form-btn'
			'gos-form-checkbox';
	}
}
