.about-company {
  margin-top: 128px;
}
.about-company .container {
	padding: 0 48px;
	position: relative;
}
.about-company__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
	margin-bottom:41px;
}
.about-company__header h2 {
	font-weight: 600;
	font-size: 48px;
	color: #111;
}
.about-company__text {
  font-weight: 400;
	font-size: 18px;
	line-height: 140%;
	color: #252525;
	max-width: 660px;
}

.about-company__video {
  position: relative;
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
}
.about-company__video img {
  width: 100%;
  height: auto;
  display: block;
}
.about-company__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffc700;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon {
  width: 0; height: 0;
  border-left: 14px solid #000;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.about-company__video-title {
	position: absolute;
	top: 24px;
	left: 24px;
	font-weight: 600;
	font-size: 18px;
	line-height: 120%;
	text-transform: uppercase;
	color: #fff;
}

.about-company__advantages {
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
    gap: 16px;
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 0 48px;
}
.advantage-card {
  flex: 1 1 calc(25% - 16px);
  background: #fff;
  max-width:306px;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.advantage-card img {
  width: 40px;
  height: 40px;
}
.advantage-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #252525;
}


@media (max-width: 768px) {
	.about-company .container {
		padding: 0 24px;
	}
	.about-company__header {
		align-items: flex-start;
		justify-content: space-between;
		margin-bottom: 0px;
		flex-direction: column;
		gap: 24px;
	}
	.about-company__advantages {
		gap: 12px;
		position: unset;
		padding: 0 0px;
	}
	.advantage-card {
		flex: 1 1 calc(100% - 16px);
		max-width: 100%;
		gap: 24px;
	}
	.about-company__video-title {
		max-width: 165px;
	}
}