* {
  box-sizing: border-box;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1230px;
  margin: 0 auto;
}

.subtitle {
  font-size: 16px;
  color: #000000;
  max-width: 444px;
  text-align: center;
  margin: 8px auto 40px;
}

.c-white {
  color: #fff;
}

.c-black {
  color: #000;
}

.c-accent {
  color: #056fc5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

h4 {
  font-size: 28px;
  font-weight: 400;
}

h5 {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

h6 {
  font-size: 16px;
  font-weight: 400;
}

.button-main {
  font-size: 16px;
  color: #fff;
  background: #056fc5;
  padding: 16px 24px;
  transition: 0.3s ease;
  border: 1px solid #056fc5;
  border-radius: 50px;
}

.button-main:hover {
  background: none;
  color: #000;
}

.logo {
  font-size: 36px;
  font-weight: 500;
}

