*,
:after,
:before {
    box-sizing: border-box
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff
}

.body-bg {
    background-color: #f4f6fa;
}

h3 {
    font-size: 1.4375rem;
}

h3, h4 {
    font-family: "Roboto", "Helvetica Neue", sans-serif;
    margin-bottom: 0;
}

h3, .h3 {
    font-size: 1.75rem;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
nav {
    position: relative;
    z-index: 200;
    display: flex;
    min-height: 50px;
    height: 65px;
    background: #ffffff;
    box-shadow: 0 2px 4px #2124291c;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 2rem;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

nav>.left-side>:not(:last-child) {
    margin-right: 2rem
}

nav>.right-side>* {
    margin-left: 2rem
}
 nav .left-side, nav .right-side {
    display: flex;
 }
.navbar>.navbar-brand,
.navbar>.navbar-brand:hover {
    color: #212429
}
.navbar-brand img.small {
    display: none;
}

@media only screen and (max-width: 840px) {
    .navbar-brand img.normal {
        display: none;
    }
    .navbar-brand img.small {
        display: block;
    }
}

.small,
small {
    font-size: 80%;
    font-weight: 400
}
.navbar {
    position: relative;
    padding: .5rem 1rem
}

.navbar,
.navbar .container,
.navbar .container-fluid,
.navbar .container-lg,
.navbar .container-md,
.navbar .container-sm,
.navbar .container-xl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between
}

.navbar-brand {
    display: inline-block;
    align-self: center;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}



.step-content {
    text-align: center;
}
.step-content img {
    width: 100%;
    max-width: 41rem;
    margin: 6rem 0 2rem;
}


.loaderContainer {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
  }
  
  .loader {
    width: 250px;
    height: 250px;
    border-top: 7px solid #525364;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    margin: 4rem;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }