@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900);
body {
  font-family: Inter;
  font-size: 1rem;
  color: black;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  padding: 0px 30px;
  max-width: 1140px;
  margin: 0 auto;
}

.header {
  height: 160px;
  width: 100%;
}
.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  width: 280px;
  height: 50px;
}

.title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 50px;
  line-height: 110.02%;
  /* or 77px */
  color: #101010;
}

.intro__title {
  max-width: 600px;
  margin: 0px 0px 18px 0px;
}

.intro__desc {
  max-width: 1100px;
  font-size: 16px;
}

.cards .container {
  padding: 0;
}

.cards {
  margin: 48px;
}
.cards__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}

a {
  text-decoration: none;
  color: black;
  display: block;
}

.card {
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 8px 24px rgba(0, 167, 157, 0.13);
          box-shadow: 0px 8px 24px rgba(0, 167, 157, 0.13);
  border-radius: 25px;
  padding: 24px 24px 24px 24px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.card__icon {
  width: 48px;
  height: 48px;
}
.card__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 110.02%;
  /* identical to box height, or 50px */
  margin: 16px 0px 16px 0px;
  color: #101010;
}
.card__desc {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 110.02%;
  /* or 31px */
  color: #888888;
  max-width: 390px;
}

a {
  color: black;
  text-decoration: none;
  /* no underline */
}

.card:hover {
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}

.mtitle {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 45px;
  line-height: 110.02%;
}

.desc {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 110.02%;
  /* or 35px */
  color: #101010;
}

@media screen and (max-width: 1020px) {
  .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media screen and (max-width: 425px) {
  .header__logo {
    width: 275px;
  }
}