* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.container {
  margin-inline: auto;
  width: 81.25rem;
  max-width: 100%;
  padding-inline: 2rem;
}

.btn {
  font-size: 0.8rem;
  color: white;
  background-color: #1C629E;
  padding-block: 0.406rem;
  padding-inline: 1rem;
  display: flex;
  align-items: center;
  margin-right: 0.75rem;
  border-radius: 2px;
  width: fit-content;
}

.flex {
  display: flex;
}

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

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

.justify-around {
  justify-content: space-around !important;
}

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

.justify-end {
  justify-content: flex-end;
}

.flex-col {
  flex-direction: column;
}

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

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

.fit-content {
  width: fit-content;
}

.cursor-pointer {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

b {
  font-family: Montserrat-Bold, sans-serif;
}

button:disabled {
  opacity: 0.5;
}

@media (max-width: 1280px) {
  .container {
    width: 76.25rem;
  }
}
@media (max-width: 1024px) {
  .container {
    width: 61.25rem;
  }
}
@media (max-width: 768px) {
  .container {
    width: 44.25rem;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .sm-hide {
    display: none;
  }
}

/*# sourceMappingURL=global.css.map */
