@font-face {
  font-family: 'Manrope';
  src: url('./fonts/Manrope-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Manrope Medium';
  src: url('./fonts/Manrope-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Manrope Bold';
  src: url('./fonts/Manrope-Bold.ttf') format('truetype');
}

body,
html {
  padding: 0;
  margin: 0;
  font-family: 'Manrope';
  --black: #000;
  --white: #fff;
  --light-grey: #f3f3f3;
  --dark-grey: #9b9b9b;
  color: var(--black);
  background: var(--white);
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}

a {
  all: unset;
  cursor: pointer;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.top-bar-container {
  padding: 32px 0 0 60px;
}

.top-bar-title {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-right: 84px;
  font-family: 'Manrope Bold';
}

.top-bar-link {
  margin-right: 64px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.header-image {
  width: 950px;
  height: 995.179px;
  flex-shrink: 0;
}

.main-title {
  font-family: 'Manrope Medium';
  font-size: 90px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px;
  letter-spacing: -0.5px;
  margin: 279px 120px 41px 60px;
  max-width: 758px;
}

.main-subtitle {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 41px 60px;
}

.main-address {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0 60px;
}

/*  */

.info-section {
  gap: 64px;
  color: var(--white);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.5px;
  background: var(--black);
  padding: 45px 103px;
}

/*  */

.info-description {
  background: var(--light-grey);
  padding: 0 60px 125px 60px;
}

.info-description-title {
  padding-top: 125px;
  font-family: 'Manrope Medium';
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px;
  letter-spacing: -0.5px;
  max-width: 758px;
}

.info-description-text {
  padding-top: 125px;
  color: var(--dark-grey);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  max-width: 848px;
  letter-spacing: -0.5px;
  margin-left: 152px;
}

/*  */

.info-benefits {
  padding: 120px 60px 230px 60px;
  gap: 120px;
}

.benefits-title {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: -0.5px;
  font-family: 'Manrope Medium';
  margin-bottom: 24px;
}

.benefits-text {
  color: var(--dark-grey);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.5px;
  max-width: 500px;
}

.footer-image {
  max-width: 1920px;
  height: 610.629px;
  flex-shrink: 0;
}

footer {
  background: var(--black);
  padding: 60px 312px;
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.footer-separator {
  width: 100%;
  height: 0.5px;
  margin-top: 32px;
  margin-bottom: 20px;
  background: var(--white);
}

.footer-top {
  gap: 144px;
}

.footer-bottom {
  gap: 64px;
}

.copyright {
  margin-right: 4px;
}

.footer-line {
  width: 100%;
  margin: 32px 0 20px 0;
  height: 1px;
  background-color: var(--dark-grey);
}

@media screen and (max-width: 1024px) {
  .info-description {
    justify-content: center;
    text-align: center;
  }

  .info-description-text {
    margin-left: 0;
    margin-top: 20px;
  }

  footer {
    padding: 60px;
  }
}

@media screen and (max-width: 768px) {
  .header-image,
  .footer-image {
    display: none;
  }

  .main-title {
    margin-top: 60px;
    font-size: 60px;
  }

  .main-address {
    margin-bottom: 60px;
  }

  .info-section,
  .info-benefits {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 20px;
  }

  .info-description-title,
  .info-description-text {
    padding-top: 60px;
  }

  .info-benefits {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 500px) {
  .top-bar-container {
    padding: 20px;
  }

  .top-bar-title {
    margin-right: 20px;
  }
  .main-title,
  .main-subtitle,
  .main-address {
    margin: 20px;
  }

  .info-section,
  footer {
    padding: 20px;
  }
}
