@charset "UTF-8";
body {
  font-family: Open Sans;
  color: #323d4f;
}

h1, h2, h3, h4, h5 {
  font-family: "Poppins", serif;
  font-weight: 600;
  color: #323d4f;
}

a {
  text-decoration: none;
  color: #f6682f;
}

.footer {
  margin-bottom: 8rem;
}
.footer p {
  font-size: 1.2rem;
  font-weight: 600;
}
.footer p a {
  color: #323d4f;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul li {
  padding: 0.2rem 0;
}
.footer ul li a {
  color: #323d4f;
}

img.logo-1 {
  height: 50px;
}
@media (max-width: 575px) {
  img.logo-1 {
    height: 40px;
    margin: 5px 0 0 10px;
  }
}

.quote {
  width: 50px;
}

.green-bg {
  background-color: #c4fed0;
  border-radius: 30px;
}

.blue-bg {
  background-color: #323d4f;
}

.light-blue-bg {
  background-color: #00adee;
  border-radius: 30px;
}

.yellow-bg {
  background-color: #feeec4;
  border-radius: 30px;
}

.purple-bg {
  background-color: #bcb7de;
  border-radius: 30px;
}

.no-border {
  border-radius: 0;
}

@media (max-width: 767px) {
  .desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .mobile {
    display: none;
  }
}

.message-bar {
  margin-top: 110px;
}
@media (max-width: 575px) {
  .message-bar {
    margin-top: 100px;
  }
}

.navbar {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.navbar-nav .nav-item {
  margin-right: 0.6rem;
}
.navbar-nav .nav-item .nav-link {
  color: #323d4f;
  font-size: 1.2rem;
}

.btn.btn-primary {
  background-color: #00adee;
  border-color: #00adee;
  border-radius: 15px;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
}
.btn.btn-primary.nav-action {
  background-color: #323d4f;
  border-color: #323d4f;
  padding: 0.6rem 2rem;
}
.btn.btn-primary.reverse {
  background-color: transparent;
  border-color: #fff;
  border-width: 2px;
  color: #fff;
}

.btn.btn-secondary {
  background-color: transparent;
  border-color: #00adee;
  color: #00adee;
  border-radius: 15px;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
}
.btn.btn-secondary.nav-action {
  color: #323d4f;
  border-color: #323d4f;
  padding: 0.6rem 2rem;
}

h1.headline {
  font-family: "Poppins", serif;
  font-size: 4.4rem;
  font-weight: 600;
  color: #323d4f;
}
@media (max-width: 575px) {
  h1.headline {
    font-size: 3rem;
  }
}

h2.sub-headline {
  font-family: "Poppins", serif;
  font-size: 3.4rem;
  font-weight: 600;
  color: #323d4f;
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  h2.sub-headline {
    font-size: 2.8rem;
  }
}

p.lead {
  font-weight: 400;
}
@media (max-width: 575px) {
  p.lead {
    font-size: 16px;
  }
}

a.persona {
  transition: transform 0.3s ease;
  display: block;
}
a.persona:hover {
  transform: translateY(-10px);
}
a.persona h4 {
  text-decoration: none;
}

.icon-font {
  font-size: 5rem;
  color: #00adee;
}

img.icon {
  width: 80px;
}

.rounded-border {
  border-radius: 30px;
}

.reviews-heading {
  background-color: #323d4f;
  position: relative;
  z-index: 9;
}
.reviews-heading::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  background-color: #323d4f;
  z-index: -1;
}

.all-reviews {
  overflow: visible;
  width: 100%;
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper p {
  font-size: 1.2rem;
}

.swiper-slide {
  padding: 2rem;
  min-height: 440px;
}
@media (max-width: 575px) {
  .swiper-slide {
    min-height: 500px;
  }
}
.swiper-slide img.avatar {
  width: 80px;
  border-radius: 80px;
}
.swiper-slide p.absolute {
  position: absolute;
  bottom: 20px;
  right: 2rem;
  left: 2rem;
}

.swiper-pagination {
  text-align: left;
  margin-left: 30px;
  bottom: 40px !important;
}
.swiper-pagination .swiper-pagination-bullet, .swiper-pagination .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .swiper-pagination {
    display: none !important;
  }
}
.form-control {
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

.input-addon-select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 1rem;
}

.select-css {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #444;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  -webkit-appearance: none; /* Remove default arrow in Safari */
  -moz-appearance: none; /* Remove default arrow in Firefox */
  appearance: none; /* Remove default arrow in most browsers */
}

/* Hide the native dropdown arrow in IE */
.select-css::-ms-expand {
  display: none;
}

/* Custom arrow */
.input-addon-select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 1.1rem;
  top: 3.3rem;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: #777;
  pointer-events: none;
}

.select-css:focus {
  outline: none;
  border-color: #999;
}

.modal-dialog {
  width: 90%;
  max-width: 420px;
  margin: 1.75rem auto;
}
.modal-dialog .modal-content {
  border: 0;
  border-radius: 30px;
}
.modal-dialog .modal-content .modal-body {
  padding: 30px;
}
.footer-social .social-link {
  font-size: 32px;
  color: #00adee;
  transition: color 0.2s;
}
.footer-social .social-link:hover {
  color: #1177bb;
  text-decoration: none;
}/*# sourceMappingURL=main.css.map */