/*typography*/
/*color*/
html {
  height: auto;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-size: 16px;
  color: #333333;
  min-height: 100vh;
  height: auto;
  position: relative;
  padding-bottom: 3rem;
}
body a {
  text-decoration: none;
  color: #333333;
}
body a:hover {
  text-decoration: none;
}
body button:focus {
  outline: none;
  box-shadow: none;
}
body button:disabled {
  opacity: .7;
}
.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-top-40 {
  margin-top: 40px;
}
.margin-right-10 {
  margin-right: 10px;
}
.margin-left-10 {
  margin-left: 10px;
}
.margin-left-20 {
  margin-left: 20px;
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
.padding-10 {
  padding: 10px;
}
.padding-rl-5 {
  padding-right: 5px;
  padding-left: 5px;
}
.padding-rl-20 {
  padding-right: 20px;
  padding-left: 20px;
}
.padding-top-20 {
  padding-top: 20px;
}
.padding-right-10 {
  padding-right: 10px;
}
.border-right {
  border-right: 1px solid rgba(0, 0, 0, 0.125);
}
.bgc-first-color {
  background-color: #363237;
  border-color: #363237;
  color: #fff;
}
.bgc-second-color {
  background-color: #2d4262;
  border-color: #2d4262;
  color: #fff;
}
.bgc-third-color {
  background-color: #73605b;
  border-color: #73605b;
  color: #fff;
}
.bgc-fourth-color {
  background-color: #d09683;
  border-color: #d09683;
  color: #fff;
}
.bgc-fourth-color-transparent {
  background-color: rgba(188, 165, 152, 0.3);
}
.font-red {
  color: red;
}
.underline {
  text-decoration: underline;
}
.page-wrap-100 h3 {
  margin-bottom: 20px;
}
.page-wrap-90 {
  width: 90%;
  margin: auto;
}
.page-wrap-90 h3 {
  margin-bottom: 20px;
}
.page-wrap-80 {
  width: 80%;
  margin: auto;
}
.page-wrap-80 h3 {
  margin-bottom: 20px;
}
.page-wrap {
  max-width: 600px;
  width: 60%;
  margin: auto;
}
.max-450-wrap {
  max-width: 450px;
  margin: 0 auto;
}
i {
  margin-right: 7px;
}
.fa-trash {
  font-size: 1.3rem;
  color: red;
}
.fa-caret-down {
  font-size: 2rem;
}
.agenda-billed {
  margin-right: 3px;
}
#contactForm .help-block {
  color: red;
  margin-bottom: 0;
}
.input-alignment-parent {
  position: relative;
}
.input-alignment-parent .input-alignment-child {
  position: absolute;
  bottom: 0;
}
.th-group-1 {
  background: #728caf;
  color: #fff;
}
.th-group-1-child {
  background: rgba(114, 140, 175, 0.2);
}
.th-group-2 {
  background: #dfcfc6;
  color: #fff;
}
.th-group-2-child {
  background: rgba(223, 207, 198, 0.3);
}
.icon-menu {
  text-align: center;
}
.icon-menu a:hover i {
  color: #0056b3;
}
.icon-menu a i {
  font-size: 1.2rem;
  margin: 0;
}
.icon-menu a .fa-edit {
  color: #363237;
}
.icon-menu a .fa-lock {
  color: #2d4262;
}
.icon-menu a .fa-trash {
  font-size: 20px;
  color: red;
}
.icon-menu a .fa-list-alt {
  color: #2d4262;
}
.icon-menu a .fa-file-pdf {
  color: #DC3C29;
}
.show-hide-message {
  margin: 20px 0;
}
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox-container input:checked ~ .checkmark {
  background-color: #2d4262;
  border: none;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 2px solid #eee;
  background-color: #fff;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox-container .checkmark-in-table {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .checkbox-container .checkmark {
    top: 3px;
  }
}
.switch {
  position: relative;
  display: inline-block;
  width: 51px;
  height: 24px;
  top: 15px;
  margin-right: 5px;
  margin-left: 5px;
}
.switch input {
  display: none;
}
.switch input:checked + .slider {
  background-color: #73605b;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d09683;
  -webkit-transition: .4s;
  transition: .4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
/* The container */
.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 45px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 45px;
  width: 100%;
  background-color: #eee;
  padding-top: 7px;
  padding-left: 12px;
  /* border-radius: 50%; */
}
/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
  background-color: #3f51b5;
  color: #fff;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the indicator (dot/circle) */
nav {
  color: #dfcfc6;
}
.navbar-landing {
  background-color: #f2b29d;
  padding: 0 5vw;
  font-family: 'Heebo', sans-serif;
  letter-spacing: 3px;
  font-weight: 300;
}
.navbar-brand-landing {
  color: #ffffff;
  font-size: 1.5rem;
  margin-left: 20px;
  padding: 1rem 0;
}
.navbar-brand-landing:hover {
  color: #ffffff;
}
.nav-link {
  color: #cccccc;
}
.navbar-nav .nav-link-landing {
  color: #ffffff;
  font-size: 1.2rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
.navbar-nav .nav-link-landing:hover {
  font-weight: 500;
  border-bottom: 1px white solid;
}
.navbar-light .navbar-brand {
  color: #dfcfc6;
}
.navbar-toggler {
  padding: 0.5rem 0.5rem;
}
.navbar-toggler:focus {
  outline: none;
}
.dropdown:hover > .dropdown-menu {
  display: block;
}
.animated-icon1 {
  width: 27px;
  height: 15px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.animated-icon1 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.animated-icon1 span {
  background: rgba(0, 0, 0, 0.1);
}
.animated-icon1 span:nth-child(1) {
  top: 0px;
}
.animated-icon1 span:nth-child(2) {
  top: 7px;
}
.animated-icon1 span:nth-child(3) {
  top: 14px;
}
.animated-icon1.open span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.animated-icon1.open span:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.landing-animated-icon1 span {
  background: white;
}
.username {
  text-transform: capitalize;
}
.table .padding-top-20 {
  padding-top: 20px;
}
.table td {
  vertical-align: middle;
}
.form-control {
  height: 2.5rem;
  border: 1px solid #ebebeb;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}
.form-control:focus {
  border: #3f51b5 2px solid;
  box-shadow: none;
}
.col-form-label {
  padding-top: -webkit-calc(0.375rem + 3px);
  padding-top: -moz-calc(0.375rem + 3px);
  padding-top: calc(0.375rem + 3px);
}
.input-group-text {
  border: 1px solid #ebebeb;
  border-radius: 0;
  background-color: #fff;
}
.btn,
.btn-lg {
  border-radius: .5px;
}
.btn:focus,
.btn-lg:focus,
.btn .focus,
.btn-lg .focus {
  box-shadow: none;
}
.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #3f51b5;
  border-color: #3f51b5;
}
.dropdown-menu {
  border: 1px solid #ebebeb;
  border-radius: 0;
}
.card-collpse-header {
  padding: 0;
}
.btn-collapse {
  padding: 0.75rem 1.25rem;
  font-size: 1.2rem;
}
.alert-info {
  background-color: #eaeeff;
  border: none;
}
@media (min-width: 1400px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.page-link {
  color: #2d4262;
}
.page-item.active .page-link {
  background-color: #2d4262;
  border-color: #2d4262;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 650px;
    margin: 1.75rem auto;
  }
}
.calender-btn i {
  margin: 0;
}
svg {
  width: 1rem;
  height: 1rem;
}
.fa-svg-icon {
  margin: 0;
}
.fc-time-grid .fc-slats td {
  height: 4.5em;
}
.fc-axis .fc-time {
  min-width: 2rem;
}
.fc button {
  height: 3em;
  padding: 0 1.5em;
}
.md-whiteframe-1dp,
.md-whiteframe-z1 {
  box-shadow: none;
}
.autocomplete-input {
  height: -webkit-calc(2.25rem + 4px);
  height: -moz-calc(2.25rem + 4px);
  height: calc(2.25rem + 4px);
  line-height: 1.5;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ebebeb;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.autocomplete-input:focus-within {
  border: #3f51b5 2px solid;
  box-shadow: none;
}
md-autocomplete input:not(.md-input) {
  font-size: 1rem;
  color: #495057;
  height: -webkit-calc(2.25rem + 4px);
  height: -moz-calc(2.25rem + 4px);
  height: calc(2.25rem + 4px);
}
md-autocomplete .md-show-clear-button button {
  height: -webkit-calc(2.25rem + 4px);
  height: -moz-calc(2.25rem + 4px);
  height: calc(2.25rem + 4px);
  margin: 0 5px 0 0;
}
md-autocomplete .md-show-clear-button button md-icon {
  height: unset;
  width: unset;
  min-height: unset;
  min-width: unset;
}
md-autocomplete.md-default-theme[disabled]:not([md-floating-label]),
md-autocomplete[disabled]:not([md-floating-label]) {
  background-color: #e9ecef;
  opacity: 1;
}
.md-autocomplete-suggestions-container {
  z-index: 100000 !important;
  /* any number of choice > 1050*/
  overflow: scroll;
}
.md-select-menu-container {
  z-index: 100000 !important;
  /* any number of choice > 1050*/
}
.md-select-value {
  border: 1px solid #ebebeb;
  padding: 0.375rem 0.75rem;
}
md-select {
  margin: 0;
}
md-select:not([disabled]):focus .md-select-value {
  border: #3f51b5 2px solid;
  padding-bottom: 0.375rem;
}
md-select[disabled] .md-select-value {
  background: none;
  background-color: #e9ecef;
  opacity: 1;
  color: #495057;
}
.select-practitioner {
  font-size: 1.8rem;
}
#home {
  font-family: 'Heebo', sans-serif;
}
@media (min-width: 1441px) {
  #home .landing-container {
    max-width: 1300px;
  }
}
.home-landing {
  background-color: #f2b29d;
  padding-top: 20vh;
  padding-bottom: 2rem;
  letter-spacing: 3px;
  font-weight: 200;
  color: #ffffff;
}
.home-landing .landing-header h1 {
  letter-spacing: 6px;
  font-weight: 200;
}
.home-landing .landing-header h3 {
  font-family: 'Source Code Pro', monospace;
  color: #160d42;
}
.home-landing .landing-header .landing-header-row {
  padding-top: 50px;
  padding-bottom: 25px;
}
.home-landing .landing-header .landing-header-row h3,
.home-landing .landing-header .landing-header-row h4 {
  color: #ffffff;
  letter-spacing: 6px;
  font-weight: 200;
  line-height: 1.7;
}
.home-landing .landing-header .landing-header-row h5,
.home-landing .landing-header .landing-header-row h6 {
  letter-spacing: 6px;
  font-weight: 300;
  line-height: 1.7;
}
.home-landing .landing-header .landing-header-row .img-2 {
  padding: 0 6vw;
}
.header-wave {
  margin-top: -10px;
  width: 100%;
  height: 8.25rem;
}
.header-angle {
  margin-top: -10px;
  width: 100%;
  height: 40vw;
}
.landing-wave-line img {
  height: 23px;
  width: 100%;
  margin: 6rem 0;
}
.landing-copy {
  margin: 2rem 0;
}
.landing-functions .function {
  margin-top: 5rem;
}
.landing-functions .function-discription {
  margin-top: 2.5rem;
}
.landing-functions .function-discription h2 {
  letter-spacing: 4px;
  color: #160d42;
  text-transform: uppercase;
  font-family: 'Source Code Pro', monospace;
}
.landing-functions .function-discription p {
  margin-top: 2.5rem;
  font-weight: 300;
}
.landing-pricing .header {
  color: #f2b29d;
  letter-spacing: 6px;
  font-weight: 200;
  margin-bottom: 40px;
}
.landing-pricing .card {
  height: 100%;
}
.landing-pricing .card h4 {
  margin-top: .8rem;
  margin-bottom: .8rem;
  font-family: 'Heebo', sans-serif;
  color: #160d42;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.landing-pricing .card .price {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
}
.landing-pricing .card .currency {
  padding-top: .8rem;
  padding-right: .2rem;
  font-size: 1.2rem;
}
.landing-pricing .card p {
  font-weight: 200;
}
.landing-pricing .card .divider {
  width: 90%;
  height: 1px;
  margin: 1.75rem auto;
  border: none;
  background-color: #c7dbe4;
}
.landing-pricing .card .condition {
  width: 90%;
  margin: auto;
}
.landing-pricing .card .condition p {
  font-weight: 300;
}
.singup-btn {
  border-radius: 2rem;
  background-color: #160d42;
  border-color: #160d42;
  color: #ffffff;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.singup-btn:hover {
  color: #ffffff;
}
.landing-footer {
  background-color: #c7dbe4;
  height: 15vh;
  width: 100%;
  margin-top: 6rem;
}
.landing-footer-copyright {
  background-color: #c7dbe4;
  color: #ffffff;
  font-family: 'Heebo', sans-serif;
  letter-spacing: 3px;
}
.landing-footer-copyright .media-attribute {
  line-height: 1;
}
.landing-footer-copyright .media-attribute a {
  color: #ffffff;
  font-size: .6rem;
  letter-spacing: 2px;
}
#services {
  padding-top: 70px;
}
.login,
.signup {
  margin-top: 4em;
}
.login h3,
.signup h3 {
  color: #160d42;
  margin-bottom: 20px;
}
.login button,
.signup button {
  background-color: #160d42;
  border-color: #160d42;
}
.signup {
  margin-bottom: 4rem;
}
.home-menu {
  font-size: 1.2rem;
  padding: 1rem;
}
.home-menu:hover {
  opacity: 0.7;
}
.menu {
  padding: 20px 0;
  margin: 10px 0;
  font-size: 1.4rem;
}
.menu:hover {
  opacity: 0.7;
}
.back {
  padding: 15px 0;
  color: #dfcfc6;
  border: 2px solid #dfcfc6;
}
.s-back {
  margin: 20px 0;
}
.s-back a {
  color: #dfcfc6;
  font-size: 1.2em;
}
.search_customer_container {
  background-color: #F5F5F5;
}
.ecl-homepage-left {
  font-size: 0.8rem;
}
#calendar-container {
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 991.98px) {
  #calendar-container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.financial-overview {
  border-color: #2d4262;
}
.financial-overview .financial-overview-header {
  background-color: #2d4262;
  border-bottom: #2d4262;
  color: #fff;
}
.financial-category-header {
  border-right: 1px solid rgba(0, 0, 0, 0.125);
}
.financial-category-header h3 {
  margin-bottom: 0;
}
.financial-indivisual-header {
  background-color: #fff;
}
.other-events {
  cursor: pointer;
}
.other-events:focus {
  outline: none;
}
.other-events-selected {
  background-color: #eae1da;
}
.pin {
  font-size: .9rem;
  color: #3f51b5;
}
.cash {
  font-size: .9rem;
  color: #d09683;
}
@media (min-width: 1441px) {
  .home-landing .landing-header .landing-header-row .img-2 {
    padding: 0 4vw;
  }
}
/*ipad*/
@media (max-width: 1024px) {
  .home-landing {
    padding-top: 15vw;
  }
  .landing-functions .function {
    margin-top: 4rem;
  }
  .landing-functions .function-discription {
    margin-top: 1.5rem;
  }
  .landing-wave-line img {
    margin: 3rem 0;
  }
}
/*mobile*/
@media (max-width: 767px) {
  body {
    font-size: 0.8rem;
  }
  body h1 {
    font-size: 2rem;
  }
  body h2 {
    font-size: 1.6rem;
  }
  body h3 {
    font-size: 1.4rem;
  }
  body h4 {
    font-size: 1.2rem;
  }
  body h5 {
    font-size: 1rem;
  }
  .navbar-landing .navbar-collapse {
    -webkit-box-shadow: 0px 1px 1px #ffffff;
    -moz-box-shadow: 0px 1px 1px #ffffff;
    box-shadow: 0px 1px 0px #ffffff;
  }
  .navbar-landing .navbar-brand-landing {
    margin-left: 0;
  }
  .home-landing {
    padding-top: 20vh;
  }
  .home-landing .landing-header .landing-header-row {
    padding-top: 25px;
  }
  .home-landing .landing-header .landing-header-row h3 {
    margin-bottom: .1rem;
  }
  .home-landing .landing-header .landing-header-row h5,
  .home-landing .landing-header .landing-header-row h6 {
    margin-bottom: .1rem;
  }
  .home-landing .landing-header .landing-header-row .img-2 {
    padding: 0 4vw;
    margin-top: 1rem;
  }
  .landing-copy {
    margin: 1rem 0;
  }
  .landing-functions .function {
    margin-top: 2.5rem;
  }
  .landing-functions .function-discription h2 {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
  .landing-functions .function-discription p {
    margin-top: 1.5rem;
  }
  .landing-wave-line img {
    margin: 2.5rem 0;
    height: 15px;
  }
  .landing-pricing .price-card {
    margin-top: 1rem;
  }
  .landing-pricing .card .currency {
    padding-top: .5rem;
  }
  .singup-btn {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .page-wrap,
  .page-wrap-80 {
    width: 90%;
  }
}
