.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;
}

.hero {
  overflow: hidden;
  position: relative;
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }
}
.hero .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: hsla(0, 0%, 12%, 0.55);
  z-index: -1;
}
.hero .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-attachment: fixed;
  z-index: -2;
  background-position: center center;
  background-repeat: no-repeat;
}
.content {
  padding: 4rem 0;
  background-color: #093A4F;
}