.ajax-form {
  display: contents;
}

.about-info .about-name {
  font-size: 50px;
  line-height: 1;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.form-validation-error {
  width: 100%;
  margin-top: 5px;
  color: #ffb4b4;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.form-checkbox {
  grid-template-columns: 14px minmax(0, 1fr);
}

.form-checkbox .form-validation-error {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.form-checkbox-input.is-invalid ~ .form-checkbox-icon {
  border-color: #ffb4b4;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .about-info .about-name {
    font-size: 28px;
    line-height: 110%;
  }
}


.service-img {
	position: relative;
	display: block;
}

.service-img__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	border: 2px solid #fff;
	color: #fff;
	pointer-events: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.service-img__play svg {
	width: 30px;
	height: 30px;
	display: block;
}

.service-img:hover .service-img__play {
	background: rgba(0, 0, 0, 0.65);
	transform: translate(-50%, -50%) scale(1.05);
}