.page-hero {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  height: 850px;
  align-items: flex-end;
  background-color: transparent !important;
  overflow-x: clip;
}

.page-hero::before {
  position: absolute;
  z-index: 0;
  content: "";
  inset: 0;
  background-color: transparent !important;
  background-image: var(--page-hero-image, none);
  background-position: var(--page-hero-position, center center);
  background-size: cover;
  background-blend-mode: multiply;
}

.page-hero::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  height: 229px;
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.page-hero__photo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--page-hero-photo-position, center center);
  pointer-events: none;
}

.page-hero__blur {
  position: absolute;
  top: 0;
  left: 2px;
  z-index: 2;
  width: var(--page-hero-blur-width, 453px);
  height: 100%;
  object-fit: cover;
  filter: blur(var(--page-hero-blur-strength, 17px));
  pointer-events: none;
}

.page-hero__container {
  position: relative;
  z-index: 4;
  display: flex;
  width: 100%;
  max-width: var(--container-max);
  box-sizing: border-box;
  margin-inline: auto;
  padding: 0 var(--page-hero-gutter, 64px) 80px;
}

.page-hero__content {
  display: flex;
  max-width: 850px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.page-hero__title {
  max-width: var(--page-hero-title-width, 620px);
  margin: 0;
  color: var(--color-white);
  font-weight: 500;
  font-size: 64px;
  line-height: 68px;
}

.page-hero__text {
  max-width: var(--page-hero-text-width, 550px);
  margin: -24px 0 0;
  color: var(--color-white);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

.page-hero__btn {
  display: inline-flex;
  width: var(--page-hero-btn-width, 416px);
  height: 52px;
  box-sizing: border-box;
  padding: 12px 40px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  font-family: inherit;
  line-height: 20px;
  text-decoration: none;
  background: var(--color-red);
  border: none;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  transition: background-color var(--transition-base);
}
.page-hero__btn:hover {
  background: var(--color-red-darken);
}

@media (max-width: 1439px) {
  .page-hero {
    height: 720px;
  }
  .page-hero__title {
    font-size: 52px;
    line-height: 58px;
  }
}
@media (max-width: 1023px) {
  .page-hero {
    height: 500px;
  }
  .page-hero__blur {
    display: none;
  }
  .page-hero__container {
    padding: 0 32px 48px;
  }
  .page-hero__content {
    gap: 32px;
  }
  .page-hero__title {
    font-size: 40px;
    line-height: 46px;
  }
  .page-hero__text {
    margin-top: -16px;
    font-size: 18px;
    line-height: 26px;
  }
  .page-hero__btn {
    width: var(--page-hero-btn-width, 333px);
  }
}
@media (max-width: 767px) {
  .page-hero__container {
    padding: 0 var(--gutter-mobile) 15px;
  }
  .page-hero__content {
    gap: 24px;
  }
  .page-hero__title {
    font-size: 32px;
    line-height: 38px;
  }
  .page-hero__text {
    margin-top: -12px;
    font-size: 16px;
    line-height: 24px;
  }
  .page-hero__btn {
    width: 100%;
  }
}
.rental-hero {
  --page-hero-image: url("../images/ppe-rental/rental-hero-img.webp");
  --page-hero-gutter: 64px;
  --page-hero-blur-width: 559px;
  --page-hero-blur-strength: 5.5px;
  --page-hero-title-width: 850px;
  --page-hero-btn-width: 417px;
}

.rental-hero__outline {
  position: absolute;
  top: 102px;
  right: calc(306px + max(0px, (100% - var(--container-max)) / 2));
  z-index: 2;
  width: 643.474px;
  height: 644.565px;
  transform: rotate(120deg);
  pointer-events: none;
}

@media (max-width: 1439px) {
  .rental-hero__outline {
    top: 60px;
    right: 300px;
    left: auto;
    width: 520px;
    height: 521px;
  }
}
@media (max-width: 1023px) {
  .rental-hero__outline {
    display: none;
  }
}
.rental-readiness {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 80px 64px 120px;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-100);
}

.rental-readiness__inner {
  display: grid;
  grid-template-columns: minmax(0, 771px) 684px;
  justify-content: space-between;
  align-items: start;
}

.rental-readiness__title {
  max-width: 530px;
  margin: 0 0 32px;
  color: var(--color-bw-100);
  font-family: var(--font-family-wide);
  font-weight: 500;
  font-size: 42px;
  line-height: 1.2;
}

.rental-readiness__text {
  margin: 0 0 16px;
  color: var(--color-bw-100);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
.rental-readiness__text:last-child {
  margin-bottom: 0;
}

.rental-readiness__cards {
  display: flex;
  box-sizing: border-box;
  height: 255px;
  flex-direction: column;
  justify-content: space-between;
}

.readiness-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.readiness-card + .readiness-card {
  margin-top: auto;
  padding-top: 30px;
  border-top: 2px solid #dae0df;
}

.readiness-card__icon-wrap {
  flex: 0 0 auto;
}

.readiness-card__icon {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.readiness-card__desc {
  margin: 0;
  color: #444444;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}

@media (max-width: 1439px) {
  .rental-readiness {
    padding: 72px 64px;
  }
  .rental-readiness__inner {
    gap: 61px 0;
    grid-template-columns: minmax(0, 297px) minmax(0, 450px);
  }
  .rental-readiness__content {
    display: contents;
  }
  .rental-readiness__title {
    margin: 0;
    grid-row: 1;
    grid-column: 1;
    font-size: 32px;
  }
  .rental-readiness__body {
    grid-column: 2;
    grid-row: 1;
  }
  .rental-readiness__text {
    margin-bottom: 8px;
  }
  .rental-readiness__cards {
    height: auto;
    flex-direction: row;
    grid-row: 2;
    grid-column: 1/-1;
    gap: 55px;
  }
  .readiness-card {
    flex: 1 1 0;
    min-width: 0;
  }
  .readiness-card + .readiness-card {
    margin-top: 0;
    padding-top: 0;
    padding-left: 55px;
    border-top: none;
    border-left: 1px solid #dae0df;
  }
  .readiness-card__desc {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1023px) {
  .rental-readiness {
    padding: 72px 32px;
  }
  .rental-readiness__inner {
    gap: 61px;
    grid-template-columns: minmax(0, 1fr);
  }
  .rental-readiness__content {
    display: block;
  }
  .rental-readiness__title {
    max-width: 451px;
    margin-bottom: 28px;
  }
  .rental-readiness__cards {
    flex-direction: column;
    gap: 0;
  }
  .readiness-card + .readiness-card {
    margin-top: 20px;
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid #dae0df;
    border-left: none;
  }
}
@media (max-width: 767px) {
  .rental-readiness {
    padding: 42px var(--gutter-mobile);
  }
  .rental-readiness__title {
    max-width: none;
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 32px;
  }
  .rental-readiness__text {
    font-size: 16px;
    line-height: 24px;
  }
  .readiness-card__desc {
    font-size: 16px;
    line-height: 24px;
  }
}
.rental-system {
  box-sizing: border-box;
  width: 100%;
  padding: 0 32px;
  border-bottom: 1px solid var(--color-gray-100);
}

.rental-system__container {
  display: flex;
  box-sizing: border-box;
  padding: 64px 60px;
  flex-direction: column;
  gap: 48px;
  background-color: var(--color-gray-1);
}

.rental-system__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.rental-system__title {
  max-width: 1030px;
  margin: 0;
  flex: 1 1 auto;
  color: var(--color-black);
  font-weight: 500;
  font-size: 42px;
  line-height: 52px;
}
.rental-system__title .text-danger {
  color: var(--color-red);
}

.rental-system__text {
  width: 682px;
  margin: 0;
  flex: 0 0 auto;
  color: var(--color-bw-100);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.rental-system__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.system-card {
  position: relative;
  display: flex;
  box-sizing: border-box;
  height: 500px;
  padding: 20px 24px;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--color-bw-100);
  overflow: hidden;
}
.system-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 160px;
  content: "";
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0) 92.4%);
  pointer-events: none;
}

.system-card__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.system-card__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.system-card__title {
  display: flex;
  margin: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-white);
  font-family: var(--font-family-wide);
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
}

.system-card__dot {
  display: block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: url("../images/ppe-rental/set-dot.svg") center/contain no-repeat;
  transform: rotate(120deg);
}

.system-card__desc {
  margin: 0;
  color: var(--color-gray-100);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 1919px) {
  .rental-system__top {
    flex-direction: column;
  }
  .rental-system__title {
    max-width: none;
  }
  .rental-system__text {
    width: auto;
    max-width: 682px;
  }
}
@media (max-width: 1439px) {
  .rental-system {
    padding: 0 24px;
  }
  .rental-system__container {
    padding: 64px 42px;
  }
  .rental-system__title {
    font-size: 34px;
    line-height: 44px;
  }
  .rental-system__text {
    width: auto;
    max-width: 467px;
  }
  .system-card {
    height: 300px;
  }
}
@media (max-width: 1023px) {
  .rental-system {
    padding: 0 16px;
  }
  .rental-system__container {
    padding: 64px 32px;
    gap: 40px;
  }
  .rental-system__top {
    gap: 16px;
  }
  .rental-system__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.28px;
  }
  .rental-system__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .system-card {
    height: 259px;
  }
}
@media (max-width: 767px) {
  .rental-system {
    padding: 0;
  }
  .rental-system__container {
    padding: 64px var(--gutter-mobile);
  }
  .rental-system__title {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.24px;
  }
  .rental-system__text {
    max-width: none;
    font-size: 16px;
    line-height: 24px;
  }
  .system-card {
    padding: 16px 20px;
  }
  .system-card__title {
    row-gap: 2px;
  }
}
.rental-control {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  padding: 120px 0 0;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.rental-control__header {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  max-width: 1106px;
  padding: 0 24px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.rental-control__title {
  max-width: 952px;
  margin: 0;
  color: var(--color-black);
  font-weight: 500;
  font-size: 42px;
  line-height: 52px;
}
.rental-control__title .text-danger {
  color: var(--color-red);
}

.rental-control__text {
  max-width: 796px;
  margin: 0;
  color: var(--color-black);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
.rental-control__text .text-danger {
  color: var(--color-red);
}

.lifecycle__svg-container {
  width: 100%;
  max-width: 1337px;
  height: 849px;
}
.lifecycle__svg-container svg {
  display: block;
  width: 100%;
  height: 100%;
}
.lifecycle__svg-container svg .lifecycle__card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.4s;
  will-change: opacity, transform;
}
.lifecycle__svg-container.is-visible svg .lifecycle__card {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1439px) {
  .rental-control {
    min-height: 986px;
    padding: 92px 0 17px;
  }
  .rental-control__header {
    max-width: 784px;
    padding: 0;
  }
  .lifecycle__svg-container {
    max-width: 952px;
    height: 605px;
  }
}
@media (max-width: 1023px) {
  .rental-control {
    padding-bottom: 78px;
  }
  .rental-control__header {
    max-width: 528px;
  }
  .rental-control__title {
    font-size: 34px;
    line-height: 44px;
  }
  .lifecycle__svg-container {
    max-width: none;
    height: 488px;
  }
}
@media (max-width: 767px) {
  .rental-control {
    min-height: 668px;
    padding: 42px 0 40px;
  }
  .rental-control__header {
    max-width: none;
    padding: 0 var(--gutter-mobile);
  }
  .rental-control__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.28px;
  }
  .rental-control__text {
    font-size: 16px;
    line-height: 24px;
  }
  .lifecycle__svg-container {
    height: 238px;
  }
}
.rental-industries {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 80px 64px;
  flex-direction: column;
  gap: 40px;
}

.rental-industries__title {
  margin: 0;
  color: var(--color-bw-100);
  font-family: var(--font-family-wide);
  font-weight: 500;
  font-size: 42px;
  line-height: 1.2;
}

.rental-industries__grid {
  display: grid;
  gap: 24px 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industry-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
}

.industry-item__img-wrap {
  height: 240px;
  overflow: hidden;
}

.industry-item__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.industry-item__name {
  color: var(--color-black);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

@media (max-width: 1439px) {
  .rental-industries__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1023px) {
  .rental-industries {
    padding: 72px 32px;
  }
  .rental-industries__title {
    font-family: inherit;
    font-size: 34px;
    line-height: 44px;
  }
  .industry-item__img-wrap {
    height: 200px;
  }
  .industry-item__name {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .rental-industries {
    padding: 48px var(--gutter-mobile) 72px;
  }
  .rental-industries__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.28px;
  }
  .rental-industries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industry-item__img-wrap {
    height: 160px;
  }
}
.service-form-request {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 80px 64px 101px;
  background: #ffffff;
  border-top: 1px solid #f0edec;
}

.service-form-request__container {
  display: grid;
  gap: 0 104px;
  grid-template-columns: minmax(0, 636px) minmax(0, 636px);
  align-items: stretch;
}

.service-form-request__content {
  display: flex;
  height: 438px;
  flex-direction: column;
}

.service-form-request__text-group {
  display: flex;
  margin-top: auto;
  flex-direction: column;
  gap: 32px;
}

.service-form-request__title {
  max-width: 615px;
  margin: 0;
  color: #111010;
  font-weight: 500;
  font-size: 36px;
  line-height: 44px;
}

.service-form-request__subtitle {
  max-width: 521px;
  margin: 0;
  color: #444444;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

.service-form-request__btn {
  display: inline-flex;
  width: 300px;
  height: 52px;
  box-sizing: border-box;
  padding: 10px 48px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  font-family: inherit;
  line-height: 20px;
  text-decoration: none;
  background: var(--color-red);
  border: none;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  transition: background-color var(--transition-base);
}
.service-form-request__btn:hover {
  background: var(--color-red-darken);
}

.service-form-request__image-wrap {
  position: relative;
  width: 100%;
  height: 438px;
  overflow: hidden;
}

.service-form-request__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-form-request__logo {
  position: absolute;
  bottom: 22px;
  left: 32px;
  display: block;
  width: 200px;
  height: 30px;
}

.service-form-request--wide {
  border-top: 0;
}

.service-form-request--wide .service-form-request__text-group,
.service-form-request--rental .service-form-request__text-group {
  margin-top: 0;
  flex: 1 1 auto;
  gap: 0;
}

.service-form-request--wide .service-form-request__title,
.service-form-request--rental .service-form-request__title {
  margin-bottom: auto;
}

.service-form-request--wide .service-form-request__subtitle,
.service-form-request--rental .service-form-request__subtitle {
  margin-bottom: 20px;
  color: var(--color-bw-80);
  font-weight: 400;
}

.service-form-request__accent {
  color: #9db2af;
}

@media (min-width: 1440px) {
  .service-form-request--wide .service-form-request__container {
    gap: 0 40px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .service-form-request--wide .service-form-request__title {
    font-size: 34px;
    line-height: 44px;
  }
  .service-form-request--wide .service-form-request__subtitle {
    max-width: 521px;
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 1439px) {
  .service-form-request {
    padding: 80px 64px;
  }
  .service-form-request__container {
    gap: 0 16px;
    grid-template-columns: minmax(0, 521px) minmax(0, 423px);
  }
  .service-form-request__content,
  .service-form-request__image-wrap {
    height: 329px;
  }
  .service-form-request__title {
    max-width: 411px;
    font-size: 28px;
    line-height: 36px;
  }
  .service-form-request__text-group {
    gap: 20px;
  }
  .service-form-request__subtitle {
    max-width: 333px;
    font-size: 16px;
    line-height: 24px;
  }
  .service-form-request__btn {
    width: 380px;
  }
  .service-form-request__logo {
    bottom: 18px;
    left: 18px;
  }
}
@media (max-width: 1439px) and (min-width: 1024px) {
  .service-form-request--wide .service-form-request__container {
    gap: 0 77px;
    grid-template-columns: minmax(0, 396px) minmax(0, 423px);
  }
  .service-form-request--wide .service-form-request__title {
    letter-spacing: 0.28px;
  }
  .service-form-request--wide .service-form-request__subtitle {
    max-width: 333px;
    font-size: 18px;
    line-height: 28px;
  }
  .service-form-request--wide .service-form-request__btn {
    width: 396px;
  }
}
@media (min-width: 1440px) {
  .service-form-request--rental {
    padding: 80px 64px;
  }
  .service-form-request--rental .service-form-request__container {
    gap: 0 40px;
    grid-template-columns: minmax(0, 1fr) 820px;
  }
  .service-form-request--rental .service-form-request__content,
  .service-form-request--rental .service-form-request__image-wrap {
    height: 500px;
  }
  .service-form-request--rental .service-form-request__title {
    font-size: 34px;
    line-height: 44px;
  }
  .service-form-request--rental .service-form-request__subtitle {
    max-width: 521px;
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 32px;
  }
  .service-form-request--rental .service-form-request__btn {
    width: 296px;
    padding: 12px 40px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .service-form-request--rental .service-form-request__container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 1439px) and (min-width: 1024px) {
  .service-form-request--rental .service-form-request__container {
    gap: 0 62px;
    grid-template-columns: minmax(0, 411px) minmax(0, 423px);
  }
  .service-form-request--rental .service-form-request__content,
  .service-form-request--rental .service-form-request__image-wrap {
    height: 319px;
  }
  .service-form-request--rental .service-form-request__title {
    letter-spacing: 0.28px;
  }
  .service-form-request--rental .service-form-request__subtitle {
    max-width: 333px;
    font-size: 18px;
    line-height: 28px;
  }
  .service-form-request--rental .service-form-request__btn {
    width: 333px;
  }
}
@media (max-width: 1023px) {
  .service-form-request {
    padding: 48px 32px;
  }
  .service-form-request__container {
    gap: 0 55px;
    grid-template-columns: minmax(0, 333px) minmax(0, 316px);
  }
  .service-form-request__content,
  .service-form-request__image-wrap {
    height: 311px;
  }
  .service-form-request__title {
    max-width: 312px;
    font-size: 24px;
    line-height: 36px;
  }
  .service-form-request__subtitle {
    max-width: none;
    font-size: 14px;
    line-height: 24px;
  }
  .service-form-request__btn {
    width: 333px;
  }
  .service-form-request__logo {
    width: 165px;
    height: 25px;
  }
  .service-form-request--wide .service-form-request__title,
  .service-form-request--rental .service-form-request__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.28px;
  }
  .service-form-request--wide .service-form-request__subtitle,
  .service-form-request--rental .service-form-request__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .service-form-request--rental .service-form-request__title {
    max-width: 312px;
  }
  .service-form-request--rental .service-form-request__subtitle {
    max-width: 333px;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .service-form-request--wide .service-form-request__container {
    gap: 0 41px;
    grid-template-columns: minmax(0, 347px) minmax(0, 316px);
  }
  .service-form-request--wide .service-form-request__title {
    max-width: 312px;
  }
  .service-form-request--wide .service-form-request__subtitle {
    max-width: 344px;
  }
  .service-form-request--wide .service-form-request__btn {
    width: 344px;
  }
}
@media (max-width: 767px) {
  .service-form-request {
    padding: 40px var(--gutter-mobile);
  }
  .service-form-request__container {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr);
  }
  .service-form-request__image-wrap {
    order: -1;
    height: 176px;
  }
  .service-form-request__content {
    height: 300px;
  }
  .service-form-request__title {
    max-width: none;
  }
  .service-form-request__text-group {
    gap: 20px;
  }
  .service-form-request__btn {
    width: 100%;
  }
  .service-form-request__logo {
    bottom: 11px;
    left: 12px;
    width: 145px;
    height: 21px;
  }
  .service-form-request--wide .service-form-request__content {
    height: 336px;
  }
  .service-form-request--wide .service-form-request__subtitle {
    max-width: 333px;
  }
}
.rental-page {
  box-sizing: border-box;
  width: 100%;
  font-family: Rooftop, var(--font-family);
  overflow: hidden;
}

/*# sourceMappingURL=ppe-rental.css.map */
