@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  /* Color and Font-Family */
  --inter: "Inter", sans-serif;
  --graspincontainer: 1720px;
  --black: #111111;
  --white: #ffffff;
  --blue: #183A73;
  --red: #ED3237;
  --grey: #666666;
  /* Font-Size */
  --fs-80: 80px;
  --fs-50: 50px;
  --fs-32: 32px;
  --fs-30: 30px;
  --fs-26: 26px;
  --fs-22: 22px;
  --fs-20: 20px;
  --fs-18: 18px;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a:focus-visible {
  outline: none !important;
}

.post,
.page {
  margin: 0;
}

.row {
  margin: 0;
}

p,
ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

.row>* {
  padding-left: 0;
  padding-right: 0;
}

body {
  width: 100%;
  font-family: var(--inter);
  overflow-x: hidden !important;
  color: var(--grey);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

.vision-container {
  width: 100%;
  max-width: var(--graspincontainer);
  margin: 0 auto;
}