/* Common */
body {
  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;
  position: relative;
}

.flex-1 {
  flex: 1;
}

header.mobile-nav-active::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

.section-title {
  font: 700 34px/1.2 Georgia;
}

@media screen and (min-width: 768px) {
  .section-title {
    line-height: 24px;
  }
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 0 15px #000c;
}

.top-bar {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  background-color: #000;
  padding: 8px 15px;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .top-bar {
    padding: 8px 32px;
  }
}

.top-bar__social {
  display: flex;
  align-items: center;
}

.top-bar__social__item:hover,
.top-bar__contact__item:hover {
  text-decoration: none;
  color: #fff;
}

.top-bar__social__item + .top-bar__social__item {
  margin-left: 16px;
}

.top-bar__contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-bar__contact__item {
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
}

.top-bar__contact__item + .top-bar__contact__item {
  margin-left: 16px;
}

.top-bar__contact__item__value {
  margin-left: 8px;
}

.top-bar__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background-color: #97aba2;
}

.header-logo {
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #fff;
}

.logo {
  height: 50px;
  width: auto;
}

.header-navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 300px;
  height: 100vh;
  overflow: hidden;
  z-index: 10001;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  padding-top: 80px;

  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;

  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%);
}

.header-navbar.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
}

.header-navbar .menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-navbar .menu-item a {
  font-family: Georgia;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  text-transform: uppercase;
  color: #212529;

  display: block;
  width: 100%;
  padding: 16px;
  border-bottom: 1px solid #dfdfdf;

  -webkit-transition: color 0.35s ease;
  -moz-transition: color 0.35s ease;
  transition: color 0.35s ease;
}

.header-navbar .menu-item a:hover {
  color: #752a7d;
  text-decoration: none;
}

.header-navbar .header-navbar__close {
  position: absolute;
  top: 24px;
  left: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #dfdfdf;
  box-shadow: none;
  outline: none;
  font-size: 1.5rem;
}

.mobile-nav-open {
  position: absolute;
  top: 23px;
  left: 15px;
  padding: 0;
  background: unset;
  border: unset;
}

.mobile-nav-open__inner {
  display: inline-block;
  margin: 0;
  padding: 3px;
  overflow: visible;
  text-transform: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;

  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.mobile-nav-open__line {
  width: 1.5rem;
  height: 0.1875rem;
  background-color: #484848;

  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.mobile-nav-open__line + .mobile-nav-open__line {
  margin-top: 0.1875rem;
}

@media only screen and (min-width: 768px) {
  .header-navbar {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    height: unset;
    padding-top: 0;
    z-index: 1;

    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }

  .header-navbar .menu {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .header-navbar .menu-item {
    margin: 16px;
  }

  .header-navbar .menu-item a {
    display: block;
    width: auto;
    padding: 8px;
    border: 0;
    font-weight: 400;
    font-size: 30px;
    line-height: 35px;
    text-transform: none;
  }
}

/* Home banner */
.home-banner {
  position: relative;
  height: 420px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.home-banner::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.home-banner__description {
  font-family: Georgia;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  max-width: 670px;
  margin-bottom: 24px;
  position: relative;
  z-index: 5;
}

.home-banner__button {
  font: 700 24px/24px Georgia;
  text-transform: uppercase;
  color: #fff;
  background-color: #d3709c;
  padding: 20px 35px;
  border: unset;
  border-radius: 35px;
  position: relative;
  z-index: 5;

  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.home-banner__button:hover {
  color: #212529;
  background-color: #d3709c;
}

/* Home - Our Story */
.home-our-story {
  margin-top: 64px;
}

.home-our-story__image {
  margin-bottom: 24px;
}

.home-our-story__image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

.home-our-story .section-title {
  margin-bottom: 20px;
}

.home-our-story__description {
  font: 16px/24px Georgia;
}

@media screen and (min-width: 768px) {
  .home-our-story__image {
    margin-bottom: 0;
  }

  .home-our-story .section-title {
    margin-bottom: 32px;
  }
}

/* Home - Snapshot */
.home-snapshot {
  margin-top: 64px;
}

.home-snapshot .section-title {
  margin-bottom: 32px;
}

.home-snapshot .row .col-md-6 {
  display: flex;
}

.home-snapshot__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
  color: #fff;
}

.home-snapshot__item__name {
  font: 700 24px/30px Georgia;
  margin-top: 16px;
  margin-bottom: 16px;
}

.home-snapshot__item__description {
  font: 400 16px/24px Georgia;
}

/* Home - Testimonials */
.home-testimonials {
  margin-top: 64px;
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 56px 0;
}

.home-testimonials .section-title {
  margin-bottom: 36px;
}

.home-testimonials .carousel {
  position: relative;
  padding-bottom: 60px;
}

.home-testimonials .carousel-indicators button {
  display: block;
  width: 16px;
  height: 16px;
  background-color: #909ccb33;
  border: 0;
  border-radius: 50%;
  font-size: 0;
}

.home-testimonials .carousel-indicators button.active {
  background-color: #909ccb;
}

.home-testimonials .carousel-indicators button + button {
  margin-left: 10px;
}

.home-testimonials__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-testimonials__item__message {
  font: 700 Italic 16px/28px Georgia;
  flex-basis: 100%;
  text-align: center;
}

.home-testimonials__item__author {
  font: 700 16px/20px Georgia;
  margin-top: 20px;
}

/* Footer */
.footer__main {
  padding: 64px 0;
}

.footer__title {
  font: 700 34px/24px Georgia;
  margin-bottom: 24px;
}

.footer__our-story {
  margin-bottom: 36px;
}

.footer__our-story__content {
  font: 400 16px/24px Georgia;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .footer__our-story {
    margin-bottom: 0;
  }
}

.footer__contact__item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.footer__contact__item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background-color: #752a7d;
  margin-right: 8px;
}

.footer__contact__item__icon i {
  font-size: 12px;
}

.footer__contact__item__value {
  font: 400 16px/24px Georgia;
  color: #212529;
}

a.footer__contact__item__value:hover {
  color: #212529;
  text-decoration: underline;
}

.footer__bottom {
  background-color: #000;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer__bottom {
    text-align: left;
  }
}

/* Page - How can we help */
.page-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fafafa;
  padding: 64px 0;
}

.page-header__title {
  font: 700 24px/36px Georgia;
}

.page-header__breadcrumb {
  font: 400 16px Georgia;
  color: #464646;
}

.page-header__breadcrumb a {
  font-weight: 500;
  color: #212529;
}

.page-header__breadcrumb a:hover {
  color: #212529;
}

.page-header__breadcrumb span {
  position: relative;
}

.page-header__breadcrumb span::before {
  content: ">";
  display: inline-block;
  margin-left: 2px;
  margin-right: 4px;
}

.page-content {
  padding: 64px 0;
  background-color: #fff;
}

.help__item + .help__item {
  margin-top: 30px;
}

.help__item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.help__item__title {
  font: 700 34px Georgia;
  margin-bottom: 16px;
}

.help__item__description {
  font: 400 16px/24px Georgia;
}

.help__item__content {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .help__item__content {
    margin-top: 0;
  }
}

/* Page - Client Enquiries */
/* .form-enquiries {
} */

.form-enquiries .form-control,
.form-enquiries .custom-file-label {
  background-color: #e7eaf4;
}

.form-enquiries .form-check .form-check-label {
  margin-left: 12px;
  /* position: relative;
  top: 2px; */
}

.form-enquiries input[type="text"].form-control,
.form-enquiries input[type="email"].form-control,
.form-enquiries input[type="date"].form-control {
  border: 0;
  border-bottom: 1px solid #752a7e;
  border-radius: 0;
}

.form-enquiries input[type="text"].form-control:focus,
.form-enquiries input[type="email"].form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #752a7e;
}

.form-enquiries input[type="checkbox"].form-check-input,
.form-enquiries input[type="radio"].form-check-input {
  box-sizing: border-box;
  appearance: none;
  background: white;
  outline: 1px solid #752a7e;
  border: 2px solid white;
  width: 20px;
  height: 20px;
  top: -2px;
}

.form-enquiries input[type="checkbox"].form-check-input:checked,
.form-enquiries input[type="radio"].form-check-input:checked {
  background: #752a7e;
}

.form-enquiries .form-field {
  margin-bottom: 20px;
}

.form-enquiries .form-field__label {
  font-weight: 700;
}

.form-section__title {
  font-family: Georgia;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #752a7e;
  color: #fff;
  border-left: 12px solid #909ccc;
  padding: 6px 12px;
}

.form-section__content {
  padding: 24px 0;
}

.form-enquiries .form-footer {
  border-top: 1px solid #dfdfdf;
  padding-top: 24px;
  margin-top: 36px;
}

.form-enquiries .btn-submit,
.form-enquiries .btn-add-attachment {
  background-color: #752a7e;
  border-color: #752a7e;
}

.form-enquiries-alert {
  position: fixed;
  top: 32px;
  left: 50%;
  z-index: 100000;
  opacity: 0;
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);

  -webkit-transition: opacity 0.25s ease, transform 0.25s ease;
  -moz-transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-enquiries-alert.active {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.form-enquiries-alert button {
  font-size: 1.125rem;
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.form-enquiries-alert button:hover {
  color: #000;
  opacity: 1;
}

.form-enquiries.was-validated .form-control:valid {
  padding-right: 0.75rem !important;
  border: 0 !important;
  border-bottom: 1px solid #752a7e !important;
  border-radius: 0 !important;
  background-image: unset !important;
  background-position: unset !important;
  background-size: unset !important;
}

.form-enquiries.was-validated .form-check-input:valid ~ .form-check-label {
  color: #212529 !important;
}

.form-enquiries .attachment-file {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e7eaf4;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 8px;
  margin-right: 8px;
}

.form-enquiries .btn-delete-attachment {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  font-size: 14px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  cursor: pointer;
}

.form-enquiries .btn-delete-attachment:hover {
  opacity: 0.8;
}

.html2canvas-container {
  width: 3000px;
  height: 3000px;
}

.form-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  opacity: 0;
  pointer-events: none;

  -webkit-transition: opacity 0.25s linear;
  -moz-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

.form-loading.active {
  pointer-events: auto;
  opacity: 1;
  z-index: 99999;
}

.form-loading-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 42px;
  border-radius: 8px;
}

.loader {
  border: 5px solid #752a7e;
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  width: 80px;
  height: 80px;
  animation-name: loading;
  animation-duration: 700ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: relative;
  z-index: 100000;
}

.form-loading span {
  color: #212529;
  font-size: 1rem;
  margin-top: 24px;
  text-align: center;
}

@keyframes loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Page - General Enquiries */
.enquiries-form .enquiries-form__description {
  font: 400 16px/24px Georgia;
}

.enquiries-contact__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.enquiries-contact__item__header {
  display: flex;
  align-items: center;
}

.enquiries-contact__item__name {
  font: 700 16px/24px Georgia;
  color: #d3709c;
}

.enquiries-contact__item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background-color: #752a7d;
  margin-right: 8px;
}

.enquiries-contact__item__icon i {
  font-size: 12px;
}

.enquiries-contact__item__value {
  font: 400 16px/24px Georgia;
  color: #212529;
  margin-top: 4px;
}

a.enquiries-contact__item__value:hover {
  color: #212529;
  text-decoration: underline;
}

.enquiries-form-row {
  margin-right: -5px;
  margin-left: -5px;

  > .col,
  > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.form-general-enquiries.was-validated .form-control:valid {
  padding-right: 0.75rem !important;
  border: 1px solid #ced4da !important;
  /* border-bottom: 1px solid #752a7e !important; */
  background-image: unset !important;
  background-position: unset !important;
  background-size: unset !important;
}

.form-general-enquiries.was-validated
  .form-check-input:valid
  ~ .form-check-label {
  color: #212529 !important;
}

.form-general-enquiries .btn-submit {
  background: #d3709c 0% 0% no-repeat padding-box;
  border-radius: 20px;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  font: 700 18px Georgia;
}

.modal-backdrop {
  z-index: 10000 !important;
}
.modal {
  z-index: 10005 !important;
}
.modal-upgrade-warning a {
  color: #752a7e;
  font-weight: 500;
}