.border-top {
  border-top: 1px solid hsl(0, 0%, 96%) !important;
}

.rounded {
  border-radius: 0.5rem !important;
  overflow: hidden;
}

.rounded-n {
  border-radius: 0.5rem !important;
  overflow: hidden;
}

.shadow {
  box-shadow: rgba(36, 36, 36, 0.75) 0px 10px 10px -10px !important;
}

html {
  height: 100% !important;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: normal;
  position: relative;
  background-color: #00283c;
  height: 100% !important;
}
body:not(.focus-visible) :focus:not(.focus-visible) {
  outline: 0 !important;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

hr {
  margin: 3rem 0 !important;
  border-top: 1px solid #d1d8dd !important;
}

@media (min-width: 1320px) {
  .container, .container-lg {
    max-width: 1400px;
  }
}

.container-fluid {
  max-width: 1800px;
}

.vs {
  display: flex;
  justify-content: space-between !important;
  flex-direction: column !important;
}

.grid-s {
  display: grid;
  gap: 1rem;
}

.grid-n {
  display: grid;
  gap: 1.25rem;
}

.grid-l {
  display: grid;
  gap: 2rem;
  height: 100%;
}
@media (max-width: 576px) {
  .grid-l {
    gap: 1.25rem;
  }
}

.sec_p_s {
  padding: 1rem 0;
}

.sec_p_n {
  padding: 1.25rem 0;
}

.sec_p_l {
  padding: 2rem 0;
}

.sec_p_xl {
  padding: 3rem 0;
}

.sec_m_s {
  margin: 1rem 0;
}

.sec_m_n {
  margin: 1.25rem 0;
}

.sec_m_l {
  margin: 2rem 0;
}

.sec_m_xl {
  margin: 3rem 0;
}