:root {
  --font-family: "Instrument Sans", sans-serif;
  --second-family: "Cadillac Sans", sans-serif;
  --third-family: "SF Pro Text", sans-serif;
  --font3: "SF Pro Display", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  margin: 0 auto;
  background: #fff;
  color: #000;
}

html {
  scroll-behavior: smooth;
}

.section {
  padding: 27px 0;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 32px;
  line-height: 113%;
  text-align: center;
  color: #000;
  margin-bottom: 20px;
}

.sub-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  color: #1c73ff;
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (min-width: 375px) {
  .container {
    width: 375px;
  }
}

@media screen and (min-width: 768px) {
  .section {
    padding: 32px 0;
  }

  .container {
    width: 768px;
    padding: 0 32px;
  }
}

@media screen and (min-width: 1436px) {
  .section {
    padding: 40px;
  }

  .container {
    width: 1436px;
    padding: 0 65px;
  }

  .section-title {
    text-align: start;
    margin-bottom: 32px;
  }

  .sub-title {
    text-align: start;
  }
}
