@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');



html {
  scroll-padding-top: 5em;
  /* height of sticky header */
}

body {
  position: relative;
  /* font-family: 'Roboto', sans-serif; */
  /* color: rgba(24, 27, 39, 0.836) ! important; */
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #2c3e50;
  border-collapse: separate;
}

p {
  text-align: justify;
}

.figure {
  width: 40rem;
  max-width: 100%;
}

.nav-link {
  padding: 0 0 0 0;
  color: rgb(139, 139, 139);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: rgb(42, 45, 232);
  background-color: #ffffff;
}

.sidebar {
  top: 5em;
  z-index: 0;
  font-size: small;
  color: rgb(87, 87, 87);
}

#toc_header {
  color: rgb(59, 59, 59);
}


.container-centered {
  /* display: flex; */
  align-items: center;
  justify-content: center;
}


.container-tight {
  max-width: 960px;
  margin: 0 auto;

}



* {
  box-sizing: border-box;
  border-collapse: separate;
}

:root {
  --color-text: #616161;
  --color-text-btn: #ffffff;
  --card1-gradient-color1: #f12711;
  --card1-gradient-color2: #f5af19;
  --card2-gradient-color1: #7F00FF;
  --card2-gradient-color2: #E100FF;
  --card3-gradient-color1: #3f2b96;
  --card3-gradient-color2: #a8c0ff;
  --card4-gradient-color1: #11998e;
  --card4-gradient-color2: #38ef7d;
}



.card-wrap {
  width: 75%;
  background: #fff;
  border-radius: 5px;
  border: 1px solid rgb(207, 207, 207);
  overflow: hidden;
  /* color: var(--color-text); */
  /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
              rgba(0, 0, 0, 0.23) 0px 6px 6px; */
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}

.card-wrap:hover {
  transform: scale(1.1);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
    rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.services-header {
  padding: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 3rem;
  /* font-weight: 300; */
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #2d3748;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.services-header-left {
  /* padding: 1rem; */
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-align: left;
  font-size: 3rem;
  /* font-weight: 300; */
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #2d3748;
  letter-spacing: -0.02em;
  line-height: 1.2;
}


*/ .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  margin: 0 auto;
}

.card-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 20px;

}

.card-text {
  text-align: center;
  font-size: 12px;
  margin-bottom: 20px;
}

.card-btn {
  border: none;
  border-radius: 100px;
  padding: 5px 30px;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.services-header.one{
  background: linear-gradient(to bottom left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}
.services-header.two {
  background: linear-gradient(to bottom left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}

.services-header.three {
  background: linear-gradient(to bottom left, var(--card3-gradient-color1), var(--card3-gradient-color2));
}

.services-header.four {
  background: linear-gradient(to bottom left, var(--card4-gradient-color1), var(--card4-gradient-color2));
}

.card-btn.one {
  background: linear-gradient(to left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}

.card-btn.two {
  background: linear-gradient(to left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}

.card-btn.three {
  background: linear-gradient(to left, var(--card3-gradient-color1), var(--card3-gradient-color2));
}

.card-btn.four {
  background: linear-gradient(to left, var(--card4-gradient-color1), var(--card4-gradient-color2));
}

.faded {
  color: darkgray;
}

@keyframes cursor {
  0% {
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

#cursor {
  animation: cursor 1.5s infinite;
}





@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(1deg);
  }

  20% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  40% {
    transform: translate(1px, 1px) rotate(1deg);
  }

  60% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  80% {
    transform: translate(1px, 1px) rotate(1deg);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}


@keyframes flicker {
  0% {
    fill: rgba(24, 39, 26, 0.836);
  }

  19% {
    fill: rgba(24, 39, 26, 0.836);
  }

  20% {
    fill: red;
  }

  60% {
    fill: red;
  }

  71% {
    fill: red;
  }

  72% {
    fill: rgba(24, 39, 26, 0.836);
  }

  73% {
    fill: red;
  }

  100% {
    fill: red;
  }
}

.rocket {
  animation: shake 0.1s infinite;
}

.rocket #rocket-flame {
  animation: flicker 5s infinite;
  animation-timing-function: step-start;
}

/* .my-svg path:nth-child(1) {
  animation-timing-function: step-start;
} */


.featurette-divider {
  margin: 10rem 0;
  /* Space out the Bootstrap <hr> more */
}

.spacer {
  height: 5rem;
  /* set the height of the spacer element to 2 times the font size of the root element */
}


/* .row.d-flex {
  display: flex;
  align-items: center;
}
*/

.step {
  text-align: center;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.arrow-container i {
  color: #313435;
  /* font-size: 40px; */
}

.icon-container {
  border: #838383 1px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  margin: auto;
}

.icon-container i {
  color: #1455b8;
  font-size: 40px;
}

.error-message {
  color: red;
  font-size: 0.9em;
  margin-top: 5px;
  display: block;
}


/* * {
  outline: 1px solid red;
} */

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

.bi {
  vertical-align: -.125em;

}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.pricing-container {
  max-width: 960px;
}

.pricing-header {
  max-width: 700px;
}

#random-letters {
  position: relative;
  /* set to relative to contain the absolutely positioned background */
}

#random-letters .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: #9da3a7;
  opacity: 0.7;
  line-height: 1;
  overflow: hidden;
  font-size: 1rem;
}