@font-face {
  font-family: 'Untitled Sans';
  src: url('assets/fonts/UntitledSans-Light.woff2') format('woff2'),
    url('assets/fonts/UntitledSans-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Untitled Sans';
  src: url('assets/fonts/UntitledSans-Regular.woff2') format('woff2'),
    url('assets/fonts/UntitledSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Untitled Sans';
  src: url('assets/fonts/UntitledSans-Bold.woff2') format('woff2'),
    url('assets/fonts/UntitledSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #fff;
  font-family: 'Untitled Sans';
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 75px; /* 93.75% */
  letter-spacing: -5.6px;
  background: #2d799b;
}

header {
}

img.logo {
  width: 180px;
  height: auto;
  padding-bottom: 20px;
}

h1 {
  color: #fff;

  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 75px; /* 93.75% */
  letter-spacing: -5.6px;
}

h2,
h3 {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 45px; /* 112.5% */
  letter-spacing: -0.8px;
}

h2 {
  font-weight: 700;
}
h3 {
  margin-bottom: 20px;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 80px;
}
.grid-top {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.grid-top .grid-item.item1 {
  grid-column: 6/13;
}

.grid-bottom {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: -60px;
}

.grid-bottom .grid-item.item2 {
  grid-column: 1/7;
}
img.ipad-img {
  width: 100%;
  height: auto;
  padding-right: 50px;
}

.grid-bottom .grid-item.item3 {
  grid-column: 8/13;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

p {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.28px;
}

button {
  background-color: #fff;
  color: #000;
  border: none;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50px;
  color: #21222b;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.4px;
  width: 258px;
  height: 75px;
  flex-shrink: 0;
}

button:hover {
  opacity: 0.8;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.footer-content p {
  grid-column: 8/13;
}

@media (max-width: 1300px) {
  h1 {
    color: #fff;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 65px; /* 93.75% */
    letter-spacing: -4.2px;
  }
  h2,
  h3 {
    font-size: 34px;
    line-height: 41px; /* 112.5% */
    letter-spacing: -0.8px;
  }
}

@media (max-width: 1160px) {
  .container {
    padding: 40px 30px;
  }
  .grid-bottom {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 46px;
  }
  .grid-top .grid-item.item1 {
    grid-column: 1/13;
  }
  .grid-bottom .grid-item.item3 {
    grid-column: 7/13;
    padding-right: 0px;
  }
  .footer-content p {
    grid-column: 7/13;
  }
}

@media (max-width: 620px) {
  .grid-bottom {
    display: flex;
    flex-direction: column;
  }
  h1 {
    color: #fff;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 55px;
    letter-spacing: -3.2px;
  }
  h2,
  h3 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.8px;
  }
  h3 {
    margin-bottom: 0px;
  }
  button {
    font-size: 16px;

    width: 200px;
    height: 55px;
    flex-shrink: 0;
  }
  .footer-content p {
    grid-column: 1/13;
  }
  img.ipad-img {
    padding-right: 0px;
  }
}
