*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html,
body {
    font-family: "Open Sans", sans-serif;
    background-color: #f0f2f5;
}
.staticPages {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 24px;
    padding: 12px 0px;
    background-color: #fff;
}
.terms-body{
    padding-right: 1rem;
    padding-left: 1rem;
}
.main-page-header{
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 75px;
  padding: 12px 24px;
  background-color: #fff;
}
.main-page-header .big-title{
    display: flex;
    -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Rubik",sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  color: #FE6E5A;
}
.staticPages ol,
.staticPages li,
.staticPages ul{
    padding: revert;
}
.container-fluid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}
#navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    background-color: #fff;
    box-shadow: 0 0.0125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
 /* plans page  */
.title-page{
    display: inline-block;
    margin: 18px auto;
    font-size: 17px;
    font-weight: bold;
    color: #990000;
}
@media screen and (max-width: 768px) {
    #navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        z-index: 10;
    }
    #navbar p{
        display: none;
    }
    .staticPages {
        padding-top: 60px;
    }
}
