main {
	overflow: hidden;
}

#hero .container {
	padding-bottom: 91px;
	gap: 30px;
}

#hero .left {
	width: 50%;
	max-width: 656px;
	margin-left: 46px;
}

#hero .right {
	width: 50%;
	max-width: 731px;
	padding-top: 132px;
	margin-right: -14px;
}

#hero .right .inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

#hero .button {
	margin-top: 23px;
	margin-left: 11px;
	padding: 0 42px;
}

#hero .image {
	margin-top: 83px;
}

#hero .image.mobile {
  display: none;
}

#hero .text h1,
#hero .text h2,
#hero .text h3,
#hero .text p:first-child strong {
	font-size: 49px;
	line-height: 69px;
	display: block;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--red);
	font-family: "PODIUM Soft";
	margin: 63px 0 6px 0;
	letter-spacing: 0.08em;
}

#hero .text {
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
	margin-left: 11px;
}

#hero .text p {
	margin-bottom: 9px;
}

#hero .text p strong {
	font-weight: 800;
	font-size: 32px;
	line-height: 41px;
}

#hero .box {
	border: 1px solid #d9d9d9;
	border-radius: 20px;
	padding: 27px 32px 22px 41px;
	position: relative;
}

#hero .box p {
	margin-bottom: 29px;
}

#hero .box::after {
	content: "";
	position: absolute;
	top: -23px;
	right: 8px;
	width: 72px;
	height: 75px;
	background-image: url("../../images/star-icon.png");
	background-image: image-set(
		url("../../images/star-icon.png") 1x,
		url("../../images/star-icon@2x.png") 2x
	);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

#hero .box:last-child::after {
	content: "";
	position: absolute;
	top: unset;
	bottom: -48px;
	right: -28px;
	width: 103px;
	height: 103px;
	transform: none;
	background-image: url("../../images/red-marks.png");
	background-image: image-set(
		url("../../images/red-marks.png") 1x,
		url("../../images/red-marks@2x.png") 2x
	);
}

#hero .box-text {
	display: block;
	margin-top: 21px;
	font-size: 20px;
	line-height: 28px;
}

#hero .box h1,
#hero .box h2,
#hero .box h3,
#hero .box p:first-child strong {
	margin: 0;
	font-size: 36px;
	line-height: 1.1em;
	font-weight: 800;
}

@media screen and (max-width: 1500px) {
	#hero .left {
		margin-left: 0;
	}

	#hero .right {
		margin-right: 0;
	}
}

@media screen and (max-width: 992px) {
	#hero .container {
		flex-direction: column;
    padding-bottom: 105px;
	}

  #hero .text h1,
  #hero .text h2,
  #hero .text h3,
  #hero .text p:first-child strong {
    margin-top: 10px;
  }

  #hero .text p {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

	#hero .left {
		width: 100%;
		max-width: 100%;
		text-align: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	#hero .right {
		width: 100%;
		max-width: 100%;
    padding-top: 10px;
	}

  #hero .image.mobile {
    display: block;
  }

  #hero .image.mobile + .image {
    display: none;
  }

	#hero .image {
		order: 1;
    margin-top: 50px;
	}

	#hero .image img {
		max-width: 430px;
		width: 100%;
    margin-right: -8px;
	}

	#hero .text {
		order: 2;
    margin: 0;
	}

	#hero .button {
		order: 3;
		display: block;
		margin: 0 auto;
		width: fit-content;
	}
}

@media screen and (max-width: 567px) {
  #hero .text {
    font-weight: 400;
  }

	#hero .text h1,
	#hero .text h2,
	#hero .text h3,
	#hero .text p:first-child strong {
		font-size: 38px;
		line-height: 49px;
    margin-top: -11px;
    margin-bottom: 0;
	}

	#hero .text p {
    margin-bottom: 13px;
  }

	#hero .text p strong {
		font-size: 28px;
		line-height: 41px;
	}

  #hero .right .inner {
    gap: 23px;
    margin-bottom: 30px;
  }

  #hero .box {
    padding: 24px 15px 17px 23px;
  }

  #hero .box p {
    margin-bottom: 20px;
  }

	#hero .box-text {
		font-size: 18px;
		line-height: 30px;
	}

	#hero .box h1,
	#hero .box h2,
	#hero .box h3,
	#hero .box p:first-child strong {
		font-size: 28px;
	}

  #hero .image {
    margin-top: 40px;
  }

  #hero .button {
    margin-top: 11px;
    padding: 0 20px;
  }

  #hero .box::after {
    top: -23px;
    right: -11px;
    width: 58px;
  }

  #hero .box:last-child::after {
    bottom: -34px;
    right: -7px;
    width: 63px;
  }
}