@font-face {
  font-family: "Mont";
  src: url("/assets/fonts/mont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("/assets/fonts/mont-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("/assets/fonts/mont-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  height: 100%;
  background: #fff;
}
body {
  position: relative;
  margin: 0 auto;
  min-height: 100%;
  font-family: "Mont", Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
  color: #333;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p {
  line-height: 1.25;
}
li {
  line-height: 1.25;
}
a {
  color: #e70640;
  cursor: pointer;
  transition: all 0.2s linear;
}
a:hover {
  opacity: 0.75;
}
input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 17px;
  transition: all 0.2s linear;
  border-radius: 7px;
  border-style: solid;
  border-width: 1px;
}
textarea {
  resize: vertical;
}

.wr {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

#promo-screen {
  height: 100vh;
  background: linear-gradient(#ed2353, #c70f43);
  position: relative;
}
#promo-screen::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(/assets/images/peoples.png) bottom center no-repeat;
  background-size: contain;
}

#welcome-text {
  padding: 70px 0;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

#blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 50px;
  margin: 0 0 30px;
}

#blocks .item {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  text-align: center;
}
#blocks .item .image {
  padding: 20px;
}
#blocks .item .image img {
  position: relative;
  width: 100%;
  height: auto;
  cursor: pointer;
}

#blocks .item .title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
}

#blocks .item .desc {
  margin: 0 0 21px;
  flex-grow: 1;
}

#blocks .item .buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: #e70640;
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

footer {
  display: block;
  padding: 30px 0;
  text-align: center;
  opacity: 0.75;
}

@media screen and (max-width: 768px) {
  .wr {
    max-width: none;
    padding: 0 20px;
  }

  #promo-screen {
    width: 100%;
    background: url(/assets/images/peoples-mobile.png) center no-repeat #c70f43;
    background-size: contain;
    aspect-ratio: 500/700;
    height: auto;
  }
  #promo-screen::before {
    display: none;
  }

  #welcome-text {
    padding: 30px 0;
    font-size: 16px;
  }

  #blocks {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
}
