@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --font-family: 'Montserrat', sans-serif;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: #f2f2f2;
}

a {
  text-decoration: none;
}

ul{
  list-style: none;
}

h2 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 38px;
  color: #000096;
}


.max-1280 {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;

}

.text-xl {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 30px;
  line-height: 113%;
  color: #000096;
}

.text-lg {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: #000096;
}

