:root {
  --primary: rgb(5, 28, 44);
  --secondary: rgb(77, 77, 77);
  --tertiary: rgb(45, 75, 96);
  --accent-1: rgb(178, 178, 178);
  --accent-2: rgb(81, 81, 81);
}

@font-face {
  font-family: "LexendZetta";
  font-weight: 400;
  src: url("../assets/fonts/LexendZetta-Regular.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "LexendZetta";
  -webkit-appearance: none;
  appearance: none;
}

img {
  max-width: 100%;
  display: inline-block;
}

.background-image {
  --background-color: var(--tertiary);
  background-color: var(--background-color);
  background-image: var(--image-url);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-white {
  color: #FFF;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 17px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

p, span, i, a, b {
  font-size: 13px;
  display: inline-block;
  color: var(--secondary);
}

b {
  font-weight: 800;
}

.main-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.content-center {
  align-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

.padding-25, .p-25 {
  padding: 25px;
}

.text-md {
  font-size: 14.2px;
}

.text-sm {
  font-size: 12.3px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-7 {
  margin-top: 7px;
  margin-bottom: 7px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-7 {
  margin-bottom: 7px;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.display-block {
  display: block;
}

.h-25 {
  height: 25px;
}

.h-20 {
  height: 20px;
}

.h-15 {
  height: 15px;
}