* {
  padding: 0;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

*::before, *::after {
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  display: none;
}

body {
  background-color: #24262b;
  max-width: 2250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navbar {
  min-width: 100%;
}

.wl {
  max-width: 2250px;
}

.shadowbox {
  background: none;
  width: 700px;
  height: 600px;
  border-radius: 5px;
  opacity: 100%;
  margin: 30px auto auto 30px;
}

.tagline {
  text-align: left;
}

.indexButton {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 250px;
  background-color: #24262b;
  position: relative;
  border-radius: 7px;
  padding-top: 0px;
  transition: 0.5s;
}

.indexButton:hover {
  background-color: #e91e63;
}

.IB {
  position: relative;
  color: rgb(230, 230, 230);
  max-width: 100px;
  max-height: 50px;
  display: inline-block;
  margin-top: 0px;
  left: 0px;
  text-align: center;
  text-decoration: none;
}

.IB:hover {
  color: rgb(230, 230, 230)
}

.indexButtonG {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 325px;
  padding: 0px;
  background-color: None;
  border-color: #fff;
  border-style: solid;
  position: relative;
  border-radius: 7px;
  padding-top: 0px;
  transition: 0.5s;
  margin-top: 0px;
}

.IBG {
  position: relative;
  color: rgb(230, 230, 230);
  display: inline-block;
  margin-top: 10px;
  left: 0px;
  text-align: center;
  text-decoration: none;
}

.outsidelanding {
  font-family: Futura, "Trebuchet MS", Arial, sans-serif; font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; ;
  width: 100%;
  color: rgb(230, 230, 230);
}

.belowLanding {
  font-size: large;
}

h1 {
  font-size: 50px;
  line-height: 45px;
  text-align: center;
}

h2 {
  font-family: sans-serif;
  font-size: 15px;
  text-align: center;
}

.block-group-1 {
  height: 75vh;
  width: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header {
  height: 800px;
  width: 100%;
}

.image-block-1 {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-image: url(/static/images/bankVault1.jpeg);
  background-attachment: fixed;
}

.image-block-2 {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-image: url(/static/images/boat_standing.png);
  background-attachment: fixed;
}

.image-block-3 {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-image: url(/static/images/better_boat_wheel.png);
  background-attachment: fixed;
}

.image-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(4, 60, 0, 0.83);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.image-overlay-blur {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}


.horizontal-bar {
  height: 1px;
  width: 100%;
  color: white;
  background-color: white;
}

.vertical-bar {
  height: 350px;
  width: 1px;
  color: white;
  background-color: white;
  margin-bottom: 20px;
}

.opaque {
  background-color: #24262b;
  width: 100%;
  height: 500px;
  padding-top: 0.1px;
  padding-bottom: 10px;
}

.opaque-green {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 250px;
  margin-top: 30px;
}

.shorter {
  height: 100px;
}

.opaque-video {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #24262b;
  width: 100%;
  height: 550px;
}

.opaque-calculators {
  background-color: #24262b;
  width: 100%;
  height: 700px;
  padding-top: 0.1px;
  padding-bottom: 10px;
}

.carousel {
  width: 500px;
  height: 500px;
  position: relative;
  margin-bottom: 20px;
}

.carousel > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}


.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms ease-in-out;
  transition-delay: 200ms;
}

.slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide[data-active] {
  opacity: 1;
  transition-delay: 0ms;
  z-index: 1;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  background: none;
  border: none;
  font-size: 4rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border-radius: .25rem;
  padding: 0 0.5rem;
  background-color: rgba(0, 0, 0, .1);
}

.carousel-button:hover,
.carousel-button:focus {
  color: #fff;
  background-color: rgba(0, 0, 0, .2);
}

.carousel-button:focus {
  outline: 1px solid black;
}

.carousel-button.prev {
  left: -6rem;
}

.carousel-button.next {
  right: -6rem;
}

.offers {
  overflow: hidden;
}

.opaque-offers {
  background-color: #24262b;
  width: 100%;
  height: 1900px;
  padding-bottom: 10px;
  overflow: hidden;
}

.grid-container {
  height: 100%;
  width: 100%;
  margin: 20px;
  display: grid;
  column-gap: 10px;
  grid-template-columns: auto auto auto;
  grid-template-rows: 480px 480px 550px 400px;
  grid-row-gap: 1px;
}

.flowchart {
  grid-row-start: 1;
  grid-row-end: 4;
}

.flowchart-box {
  margin: 10px auto 5px 10px;
}

#fc .indexButton {
  font-family: Futura, "Trebuchet MS", Arial, sans-serif; font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; ;
  background-color: #043c00;
}

#fc .indexButton:hover {
  background-color: #e91e63;
}

.flowchart-title {
  color: #fff;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif; font-size: 50px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 51.4px; ;
}

.flowchart-mini-title {
  color: #fff;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif; font-size: 18px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; ;
}

.points {
  background-color: #fff;
  margin: 30px;
}

.point-title {
  margin-left: 0;
  font-size: 22px;
  color: #fff;
}

.point-description {
  font-size: 1.5vh;
  max-width: 75%;
  margin-left: 0;
  color: #fff;
}

.offer-href {
  font-size: xx-large;
  color: #fff;
  transition: 0.3s;
}

.offer-href:hover {
  color: #e91e63;
}

#promo .grid-container {
  grid-template-columns: auto auto;
  max-width: fit-content;
  justify-items: center;
  align-items: center;
}

.promo-image {
  grid-column-start: 2;
  grid-column-end: 4;
}

.final-title {
  font-family: Futura, "Trebuchet MS", Arial, sans-serif; font-size: 50px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; ;
  color: #fff;
  justify-content: center;
  width: 90%;
  margin: auto;
}

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

.column {
  flex-direction: column;
}

.guide-description {
  text-align: center;
  font-size: 16px;
}

.signup-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  align-items: center;
  grid-template-columns: auto auto;
  overflow: hidden;
  height: 50px;
}

.free-trial {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 175px;
  margin: auto;
  background-color: #24262b;
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
  transition: 0.5s;
}

.free-trial:hover {
  background-color: #e91e63;
}

.extra-option {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 175px;
  margin: auto;
  border-color: #fff;
  border-style: solid;
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
  transition: 0.5s;
}

.extra-option:hover {
  background-color: #e91e63;
}

#calculators .grid-container {
  display: flex;
  grid-template-columns: auto auto;
  justify-content: space-evenly;
  align-items: center;
}

.nav-option {
  color: #fff;
  font-size: 18px;
  transition: 0.4s;
}

.nav-option:hover {
  color: grey;
}
