html,
body {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: #555;
  background-color: #fff !important;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #456882;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #1b3c53;
}

#home {
  padding-bottom: 150px;
}

img {
  border-radius: 16px;
}

#inline-logo {
  display: inline-block;
  height: 40px;
  transform: translateY(-3px);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Source Sans 3", sans-serif;
  color: #1b3c53;
}

h4 {
  font-size: 28px;
}

*:focus {
  outline: none !important;
  box-shadow: none !important;
}

.color-brown {
  color: #d2c1b6;
}

h1 {
  font-size: 50px;
}

.ff-abril {
  font-family: "Abril Fatface", serif;
}

.ff-san-serif {
  font-family: "Source Sans 3", sans-serif;
}

.navbar .container-fluid {
  max-width: 1140px;
  margin: 0 auto;
}

.navbar-brand img {
  width: 60px !important;
  margin-left: 10px;
}

.navbar-toggler > span {
  margin: 0;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.nav-link {
  color: #456882;
  font-size: 18px;
}

#navbarToggleBtn {
  color: #456882;
}

#navbarToggleBtn span {
  font-size: 40px;
}

#smartNavbar {
  transition: all 0.3s ease-in-out;
  top: 0; /* Initial position */
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #f9f3ef;
}

#smartNavbar.bg-white {
  background-color: #fff;
}

@media (max-width: 992px) {
  .navbar-collapse .navbar-nav > .nav-item {
    padding-left: 10px;
  }

  h1 {
    font-size: 35px;
  }
}

.app-body > div {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}

img {
  max-width: 90% !important;
}

.flex {
  display: flex;
}
.flex-row {
  flex-flow: row;
}
.flex-col {
  flex-flow: column;
}
.flex-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}
.flex-0 {
  flex: 0;
}

.flex-center {
  align-items: center;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.fs-18 {
  font-size: 18px;
}

.fs-16 {
  font-size: 16px;
}

svg {
  margin: 60px 0;
}

.img-inline {
  height: 40px;
}

.footer {
  padding-top: 300px !important;
  padding-bottom: 30px !important;
  font-size: 16px;
  position: relative;
  color: #fff;
  max-width: 100% !important;
  text-align: center;
}

.footer svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 2;
}

.footer img {
  position: absolute;
  width: 300px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 75px;
  z-index: 1;
  opacity: 1;
}

.footer small {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 20px;
}

.footer a {
  text-decoration: none;
  color: #fff;
}
.footer a:hover {
  color: #ddd;
}

.app-body > div.features:nth-of-type(odd) > .row > div:first-child {
  order: 2;
}

.app-body > div.features:nth-of-type(odd) > .row > div:last-child {
  order: 1;
}

.app-body > div.features > .row > div:last-child {
  padding-top: 30px;
}

.app-body > div.features > .row > div:last-child > div {
  font-size: 17px;
}

.features {
  padding: 0 30px !important;
}

.features .material-symbols-outlined {
  font-size: 50px;
  margin-bottom: 20px;
  color: #456882;
}

#faqAccordion {
  font-family: "Source Sans 3", sans-serif;
}

.accordion-button {
  font-family: "Montserrat", sans-serif;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 400;
  color: #456882;
}

.accordion-button:not(.collapsed) {
  color: #1b3c53;
  background-color: #f9f3ef;
  font-weight: 500;
}

.accordion-body {
  text-align: left;
  color: #777;
  background-color: #fff;
  font-size: 19px;
}

#scrollup {
  position: fixed;
  z-index: 11;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 1px 4px 0 #bbb;
  cursor: pointer;
  transform: scale(0.7);
}

#scrollup span {
  margin: 0;
  transform: scale(0.8);
  transition: all ease 0.3s;
  margin-top: 5px;
  font-size: 45px;
  color: #1b3c53;
}

#scrollup:hover {
  background-color: #f9f3ef;
}

#scrollup:hover span {
  transform: scale(1);
}

.btn-submit {
  background-color: #456882;
  color: #fff;
  border-radius: 50px;
  padding: 8px 16px;
}

.btn-submit span.material-symbols-outlined {
  font-size: 30px;
}

.btn-submit:hover {
  background-color: #1b3c53;
  color: #fff;
}

textarea:disabled,
input:disabled {
  background-color: #fefefe !important;
}

hr {
  border-color: #d2c1b6 !important;
  background-color: #d2c1b6 !important;
  margin: 60px 30%;
}

form input,
form textarea {
  font-size: 16px !important;
}

.wave-separator {
  position: relative;
  height: 250px;
  margin: 50px 0;
}

.wave-separator svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.pricing-tables ul li button {
  font-family: "Source Sans 3", sans-serif;
  margin-right: 10px;
}

#myTabContent {
  border: 1px solid #dee2e6;
  border-top: none;
  padding: 20px 0;
  padding-bottom: 0;
}
.pricing-tables {
  max-width: 100%;
  overflow: auto;
}

.pricing-tables table {
  font-family: "Source Sans 3", sans-serif;
  width: 100%;
}

.pricing-tables table thead {
  color: #456882;
  border-bottom: solid 1px #456882;
}

.pricing-tables table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-tables table td,
.pricing-tables table th {
  padding: 10px 20px;
}

.pricing-tables table tbody tr:nth-child(even) td {
  background-color: #f9f3ef;
}

#contactus-form small {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  line-height: 15px;
  color: #456882;
}

#requestFailed,
#requestSuccess {
  display: none;
}

#requestFailed.show,
#requestSuccess.show {
  display: block;
}

.no-wrap {
  white-space: nowrap;
}

.pricing-desktop-view {
  display: table;
}
.pricing-mobile-view {
  display: none;
}

@media screen and (max-width: 767px) {
  .pricing-desktop-view {
    display: none;
  }
  .pricing-mobile-view {
    display: table;
  }
}
