@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap);
:root {
  --bs-primary: #FF7B5B;
  --bs-primary-rgb: 255, 123, 91;
  --bs-secondary: #004876;
  --bs-secondary-rgb: 0, 72, 118;
}
html {
  position: relative;
  min-height: 100%;
}
body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #414042;
  height: 100%;
}
h1,
h2 {
  font-family: IvyMode, serif;
  font-weight: normal;
}
a {
  font-weight: 700;
  color: #004876;
}
a:hover {
  color: #1877bd;
}
.nav-pills .nav-link.active {
  background: #004876;
}
.nav-pills .nav-link:not(.active) {
  color: #414042;
}
.nav-pills .nav-link:not(.active):hover {
  background: #eee;
}
.nav-underline {
  border-bottom: solid 1px #d8d8d8;
}
.nav-underline .nav-link {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #414042;
  padding: 0 0 15px 0;
}
.nav-underline .nav-link:hover {
  border-bottom: solid 3px #004876;
}
.nav-underline .active {
  color: #004876;
  border-bottom: solid 3px #004876;
}
@media (min-width: 768px) {
  .nav-underline {
    font-size: small;
  }
  .nav-underline .nav-link {
    padding: 0.5rem 1rem;
  }
}
.half-half {
  width: 100%;
  background: linear-gradient(to bottom, #F8F8F8 85%, white 15%);
}
@media (min-width: 768px) {
  .half-half .half-half {
    background: linear-gradient(to bottom, #F8F8F8 64%, white 36%);
  }
}
.half-half-secondary {
  width: 100%;
  background: linear-gradient(to bottom, #004876 85%, white 15%);
}
@media (min-width: 768px) {
  .half-half-secondary .half-half {
    background: linear-gradient(to bottom, #F8F8F8 64%, white 36%);
  }
}
.btn-white {
  background-color: white !important;
}
.btn-white:hover {
  background-color: #004876 !important;
  color: white !important;
}
.btn-secondary {
  background-color: #004876 !important;
  border-color: #004876 !important;
}
.btn-secondary:hover {
  background-color: #FF7B5B !important;
  border-color: #FF7B5B !important;
}
.btn-primary {
  color: white;
  background-color: #FF7B5B;
  border-color: #FF7B5B;
}
.btn-primary:hover {
  color: white;
  background-color: #00416b;
  border-color: #004876;
}
.btn-outline-secondary {
  color: #004876;
  border-color: #004876;
}
.btn-outline-secondary:hover {
  color: white;
  background-color: #00416b;
  border-color: #004876;
}
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  background-color: rgba(0, 72, 118, 0.4);
}
.video-frame {
  width: 100%;
  height: 80vh;
}
.flex-1 {
  flex: 1;
}
.flex-2 {
  flex: 2;
}
.w-60 {
  width: 60% !important;
}
.normal-spacing {
  letter-spacing: 0.5px;
}
.wide-spacing {
  letter-spacing: 3px;
}
.display-7 {
  font-size: 2.25rem;
}
.lh-xl {
  line-height: 1.5;
}
.category-tag {
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.modal-backdrop {
  background-color: #004876;
  opacity: 0.8 !important;
}
.modal .modal-content {
  border-radius: 15px !important;
}
.modal .modal-header .btn-close {
  position: absolute;
  right: 10px;
  top: -30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  border: solid 1px #ffffff;
  color: #ffffff;
  background-image: none;
  text-align: center;
  vertical-align: middle;
  line-height: 0;
}
@media (min-width: 768px) {
  .modal .modal-header .btn-close {
    right: -33px;
    top: 5px;
  }
}
.modal .modal-header .btn-close:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.dropdown:hover {
  /* Optional: Add this CSS to ensure the dropdown doesn't close when the cursor moves out of the link area */
  /* This will make the dropdown appear on hover */
  /* Specific handling for dropdown-menu-end to align it properly on the right */
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown:hover > .dropdown-menu.dropdown-menu-end {
  display: block;
  right: 0;
  /* Ensures the menu aligns to the right of the dropdown toggle */
  left: auto;
  /* Resets any left alignment that might be applied */
}

@layer dwh {
  .dwh {
    --dwh-color-white: #ffffff;
    --dwh-color-black: #000000;
    --dwh-color-primary-25: #f5f7fc;
    --dwh-color-primary-50: #dce6fa;
    --dwh-color-primary-100: #bcd0f7;
    --dwh-color-primary-200: #93b2f5;
    --dwh-color-primary-300: #6d94ed;
    --dwh-color-primary-400: #4876e0;
    --dwh-color-primary-500: #1e55d6;
    --dwh-color-primary-600: #1445b8;
    --dwh-color-primary-700: #0d3aa3;
    --dwh-color-primary-800: #073191;
    --dwh-color-primary-900: #012169;
    --dwh-color-secondary-25: #fcfcfd;
    --dwh-color-secondary-50: #f9fafb;
    --dwh-color-secondary-100: #f2f4f7;
    --dwh-color-secondary-200: #eaecf0;
    --dwh-color-secondary-300: #d0d5dd;
    --dwh-color-secondary-400: #98a2b3;
    --dwh-color-secondary-500: #667085;
    --dwh-color-secondary-600: #475467;
    --dwh-color-secondary-700: #344054;
    --dwh-color-secondary-800: #1d2939;
    --dwh-color-secondary-900: #101828;
    --dwh-color-error-25: #fffbfa;
    --dwh-color-error-50: #fef3f2;
    --dwh-color-error-100: #fee4e2;
    --dwh-color-error-200: #fecdca;
    --dwh-color-error-300: #fda29b;
    --dwh-color-error-400: #f97066;
    --dwh-color-error-500: #f04438;
    --dwh-color-error-600: #d92d20;
    --dwh-color-error-700: #b42318;
    --dwh-color-error-800: #912018;
    --dwh-color-error-900: #7a271a;
    --dwh-color-warning-25: #fffcf5;
    --dwh-color-warning-50: #fffaeb;
    --dwh-color-warning-100: #fef0c7;
    --dwh-color-warning-200: #fedf89;
    --dwh-color-warning-300: #fec84b;
    --dwh-color-warning-400: #fdb022;
    --dwh-color-warning-500: #f79009;
    --dwh-color-warning-600: #dc6803;
    --dwh-color-warning-700: #b54708;
    --dwh-color-warning-800: #93370d;
    --dwh-color-warning-900: #7a2e0e;
    --dwh-color-success-25: #f6fef9;
    --dwh-color-success-50: #ecfdf3;
    --dwh-color-success-100: #d1fadf;
    --dwh-color-success-200: #a6f4c5;
    --dwh-color-success-300: #6ce9a6;
    --dwh-color-success-400: #32d583;
    --dwh-color-success-500: #12b76a;
    --dwh-color-success-600: #039855;
    --dwh-color-success-700: #027a48;
    --dwh-color-success-800: #05603a;
    --dwh-color-success-900: #054f31;
    --dwh-color-teal-25: #f6fefc;
    --dwh-color-teal-50: #f0fdf9;
    --dwh-color-teal-100: #ccfbef;
    --dwh-color-teal-200: #99f6e0;
    --dwh-color-teal-300: #5fe9d0;
    --dwh-color-teal-400: #2ed3b7;
    --dwh-color-teal-500: #15b79e;
    --dwh-color-teal-600: #0e9384;
    --dwh-color-teal-700: #107569;
    --dwh-color-teal-800: #125d56;
    --dwh-color-teal-900: #134e48;
    --dwh-color-blue-light-25: #f5fbff;
    --dwh-color-blue-light-50: #f0f9ff;
    --dwh-color-blue-light-100: #e0f2fe;
    --dwh-color-blue-light-200: #b9e6fe;
    --dwh-color-blue-light-300: #7cd4fd;
    --dwh-color-blue-light-400: #36bffa;
    --dwh-color-blue-light-500: #0ba5ec;
    --dwh-color-blue-light-600: #0086c9;
    --dwh-color-blue-light-700: #026aa2;
    --dwh-color-blue-light-800: #065986;
    --dwh-color-blue-light-900: #0b4a6f;
    --dwh-color-purple-25: #fafaff;
    --dwh-color-purple-50: #f4f3ff;
    --dwh-color-purple-100: #ebe9fe;
    --dwh-color-purple-200: #d9d6fe;
    --dwh-color-purple-300: #bdb4fe;
    --dwh-color-purple-400: #9b8afb;
    --dwh-color-purple-500: #7a5af8;
    --dwh-color-purple-600: #6938ef;
    --dwh-color-purple-700: #5925dc;
    --dwh-color-purple-800: #4a1fb8;
    --dwh-color-purple-900: #3e1c96;
    --dwh-color-fuchsia-25: #fefaff;
    --dwh-color-fuchsia-50: #fdf4ff;
    --dwh-color-fuchsia-100: #fbe8ff;
    --dwh-color-fuchsia-200: #f6d0fe;
    --dwh-color-fuchsia-300: #eeaafd;
    --dwh-color-fuchsia-400: #e478fa;
    --dwh-color-fuchsia-500: #d444f1;
    --dwh-color-fuchsia-600: #ba24d5;
    --dwh-color-fuchsia-700: #9f1ab1;
    --dwh-color-fuchsia-800: #821890;
    --dwh-color-fuchsia-900: #6f1877;
    --dwh-color-orange-25: #fefaf5;
    --dwh-color-orange-50: #fef6ee;
    --dwh-color-orange-100: #fdead7;
    --dwh-color-orange-200: #f9dbaf;
    --dwh-color-orange-300: #f7b27a;
    --dwh-color-orange-400: #f38744;
    --dwh-color-orange-500: #ef6820;
    --dwh-color-orange-600: #e04f16;
    --dwh-color-orange-700: #b93815;
    --dwh-color-orange-800: #932f19;
    --dwh-color-orange-900: #772917;
    --dwh-shadow-xs: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    --dwh-shadow-sm: 0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.1);
    --dhw-shadow-md: 0px 2px 4px -2px rgba(16, 24, 40, 0.06), 0px 4px 8px -2px rgba(16, 24, 40, 0.1);
    --dwh-shadow-lg: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    --dwh-shadow-xl: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
    --dwh-shadow-2xl: 0px 24px 48px -12px rgba(16, 24, 40, 0.18);
    --dwh-shadow-3xl: 0px 32px 64px -12px rgba(16, 24, 40, 0.14);
    --dwh-fontawesome-icon-check: "\f00c";
    --dwh-fontawesome-icon-minus: "\f068";
    --dwh-font-family: 'Inter', Arial, Helvetica, sans-serif;
    --dwh-text-xl-font-size: 20px;
    --dwh-text-xl-line-height: 32px;
    --dwh-text-xl-font: var(--dwh-text-xl-font-size) / var(--dwh-text-xl-line-height) var(--dwh-font-family);
    --dwh-text-lg-font-size: 18px;
    --dwh-text-lg-line-height: 28px;
    --dwh-text-lg-font: var(--dwh-text-lg-font-size) / var(--dwh-text-lg-line-height) var(--dwh-font-family);
    --dwh-text-md-font-size: 16px;
    --dwh-text-md-line-height: 24px;
    --dwh-text-md-font: var(--dwh-text-md-font-size) / var(--dwh-text-md-line-height) var(--dwh-font-family);
    --dwh-text-sm-font-size: 14px;
    --dwh-text-sm-line-height: 20px;
    --dwh-text-sm-font: var(--dwh-text-sm-font-size) / var(--dwh-text-sm-line-height) var(--dwh-font-family);
    --dwh-text-xs-font-size: 12px;
    --dwh-text-xs-line-height: 16px;
    --dwh-text-xs-font: var(--dwh-text-xs-font-size) / var(--dwh-text-xs-line-height) var(--dwh-font-family);
    --dwh-text-regular-font-weight: 400;
    --dwh-text-medium-font-weight: 500;
    --dwh-text-semibold-font-weight: 600;
    --dwh-text-bold-font-weight: 700;
    --dwh-text-light-color: var(--dwh-color-secondary-500);
    --dwh-text-regular-color: var(--dwh-color-secondary-700);
    --dwh-text-dark-color: var(--dwh-color-secondary-900);
    --dwh-h1-font-size: 32px;
    --dwh-h1-font-weight: var(--dwh-text-semibold-font-weight);
    --dwh-h1-letter-spacing: -2%;
    --dwh-h1-line-height: 48px;
    --dwh-h2-font-size: 24px;
    --dwh-h2-font-weight: var(--dwh-text-semibold-font-weight);
    --dwh-h2-letter-spacing: -2%;
    --dwh-h2-line-height: 36px;
    --dwh-h3-font-size: 20px;
    --dwh-h3-font-weight: var(--dwh-text-semibold-font-weight);
    --dwh-h3-letter-spacing: -2%;
    --dwh-h3-line-height: 32px;
    --dwh-h4-font-size: 18px;
    --dwh-h4-font-weight: var(--dwh-text-semibold-font-weight);
    --dwh-h4-letter-spacing: -2%;
    --dwh-h4-line-height: 28px;
    --dwh-h5-font-size: 16px;
    --dwh-h5-font-weight: var(--dwh-text-semibold-font-weight);
    --dwh-h5-letter-spacing: 0%;
    --dwh-h5-line-height: 24px;
    --dwh-h6-font-size: 14px;
    --dwh-h6-font-weight: var(--dwh-text-semibold-font-weight);
    --dwh-h6-letter-spacing: 0%;
    --dwh-h6-line-height: 20px;
    --dwh-link-default-color: var(--dwh-color-primary-500);
    --dwh-link-default-text-decoration: underline;
    --dwh-link-hover-color: var(--dwh-color-primary-600);
    --dwh-link-hover-text-decoration: underline;
    --dwh-link-visited-color: var(--dwh-color-purple-500);
    --dwh-link-visited-text-decoration: underline;
    --dwh-z-index-base: 0;
    --dwh-z-index-placeholder: -1;
    --dwh-z-index-dashboard: 100;
    --dwh-z-index-notifications: 200;
    --dwh-circular-border-radius: 100vh;
    --dwh-default-color: var(--dwh-text-regular-color);
    --dwh-default-font-family: var(--dwh-font-family);
    --dwh-default-font-size: var(--dwh-text-md-font-size);
    --dwh-default-font-weight: var(--dwh-text-regular-font-weight);
    --dwh-default-line-height: var(--dwh-text-md-line-height);
    --dwh-default-border-color: var(--dwh-color-secondary-300);
    --dwh-default-border-width: 1px;
    --dwh-default-border-style: solid;
    --dwh-default-border: var(--dwh-default-border-width) var(--dwh-default-border-style) var(--dwh-default-border-color);
    --dwh-default-focus-outline-color: var(--dwh-color-primary-50);
    --dwh-default-focus-outline-style: solid;
    --dwh-default-focus-outline-width: 4px;
    --dwh-default-focus-outline: var(--dwh-default-focus-outline-width) var(--dwh-default-focus-outline-style) var(--dwh-default-focus-outline-color);
    box-sizing: border-box;
    color: var(--dwh-default-color);
    font-family: var(--dwh-default-font-family);
    font-size: var(--dwh-default-font-size);
    line-height: var(--dwh-default-line-height);
  }
  .dwh * {
    box-sizing: border-box;
  }
  .dwh .text--size-xl {
    font: var(--dwh-text-xl-font);
  }
  .dwh .text--size-lg {
    font: var(--dwh-text-lg-font);
  }
  .dwh .text--size-md {
    font: var(--dwh-text-md-font);
  }
  .dwh .text--size-sm {
    font: var(--dwh-text-sm-font);
  }
  .dwh .text--size-xs {
    font: var(--dwh-text-xs-font);
  }
  .dwh .text--weight-regular {
    font-weight: var(--dwh-text-regular-font-weight);
  }
  .dwh .text--weight-medium {
    font-weight: var(--dwh-text-medium-font-weight);
  }
  .dwh .text--weight-semibold {
    font-weight: var(--dwh-text-semibold-font-weight);
  }
  .dwh .text--weight-bold {
    font-weight: var(--dwh-text-bold-font-weight);
  }
  .dwh .text--color-light {
    color: var(--dwh-text-light-color);
  }
  .dwh .text--color-regular {
    color: var(--dwh-text-regular-color);
  }
  .dwh .text--color-dark {
    color: var(--dwh-text-dark-color);
  }
  .dwh h1 {
    font-size: var(--dwh-h1-font-size);
    font-weight: var(--dwh-h1-font-weight);
    letter-spacing: var(--dwh-h1-letter-spacing);
    line-height: var(--dwh-h1-line-height);
  }
  .dwh h2 {
    font-size: var(--dwh-h2-font-size);
    font-weight: var(--dwh-h2-font-weight);
    letter-spacing: var(--dwh-h2-letter-spacing);
    line-height: var(--dwh-h2-line-height);
  }
  .dwh h3 {
    font-size: var(--dwh-h3-font-size);
    font-weight: var(--dwh-h3-font-weight);
    letter-spacing: var(--dwh-h3-letter-spacing);
    line-height: var(--dwh-h3-line-height);
  }
  .dwh h4 {
    font-size: var(--dwh-h4-font-size);
    font-weight: var(--dwh-h4-font-weight);
    letter-spacing: var(--dwh-h4-letter-spacing);
    line-height: var(--dwh-h4-line-height);
  }
  .dwh h5 {
    font-size: var(--dwh-h5-font-size);
    font-weight: var(--dwh-h5-font-weight);
    line-height: var(--dwh-h5-line-height);
  }
  .dwh h6 {
    font-size: var(--dwh-h6-font-size);
    font-weight: var(--dwh-h6-font-weight);
    line-height: var(--dwh-h6-line-height);
  }
  .dwh a {
    color: var(--dwh-link-default-color);
    text-decoration: var(--dwh-link-default-text-decoration);
  }
  .dwh a:visited {
    color: var(--dwh-link-visited-color);
    text-decoration: var(--dwh-link-visited-text-decoration);
  }
  .dwh a:hover,
  .dwh a:active {
    color: var(--dwh-link-hover-color);
    text-decoration: var(--dwh-link-hover-text-decoration);
  }
  .dwh p:first-child {
    margin-top: 0;
  }
  .dwh p:last-child {
    margin-bottom: 0;
  }
  .dwh .dwh-cover-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
  }
  .dwh :has(.dwh-cover-container):not(.dwh-ignore-cover-container) {
    position: relative;
  }
  .dwh .dwh-center-content {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .dwh .dwh-flex-fill {
    flex: 1;
  }
}

.social-icons i[data-v-c7468986] {
  color: white;
  margin: 0 25px 0 0;
  font-size: 25px;
}
@media (min-width: 768px) {
.social-icons i[data-v-c7468986] {
    margin: 0 50px;
    font-size: 40px;
}
.social-icons i[data-v-c7468986]:last-child {
    margin-right: 0;
}
}
footer[data-v-c7468986] {
  background-color: #004876;
  font-weight: bold;
}
.copyright[data-v-c7468986] {
  background: #00416b;
  color: white;
  font-weight: lighter;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.nav-logo[data-v-63acdcb3] {
  width: 75%;
}
@media (min-width: 768px) {
.nav-logo[data-v-63acdcb3] {
    width: 100%;
}
}
.navbar-toggler-icon[data-v-63acdcb3] {
  border-radius: 50%;
  background-color: #004876;
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar[data-v-63acdcb3],
.navbar-nav .nav-link[data-v-63acdcb3] {
  font-weight: 700;
}
.nav-item[data-v-63acdcb3] {
  padding: 0 20px 0 0;
}
.nav-item[data-v-63acdcb3]:last-child {
  padding-right: 0;
}
.nav-link[data-v-63acdcb3] {
  color: #004876;
}
.nav-link[data-v-63acdcb3]:hover {
  color: #1877bd;
}
.dropdown-item[data-v-63acdcb3] {
  color: #004876;
}
.nav-pills .nav-link.active[data-v-63acdcb3] {
  background: #004876;
}
@media (max-width: 767px) {
  /* Targeting mobile devices */
.overflow-mobile-hidden[data-v-63acdcb3] {
    overflow: hidden;
}
.navbar[data-v-63acdcb3] {
    padding-left: 0 !important;
    /* Remove padding from the navbar */
    padding-right: 0 !important;
    /* Remove padding from the navbar */
    margin-left: 0 !important;
    /* Ensure no margin on the left */
    margin-right: 0 !important;
    /* Ensure no margin on the right */
    margin-bottom: 0 !important;
    /* Ensure no margin on the bottom */
    padding-bottom: 0 !important;
}
.navbar-brand[data-v-63acdcb3] {
    padding-left: 15px !important;
}
#main-nav[data-v-63acdcb3] {
    text-align: left !important;
    background-color: #004876 !important;
}
#main-nav li[data-v-63acdcb3] {
    font-size: 1.5rem;
    padding: 20px !important;
}
#main-nav li a[data-v-63acdcb3] {
    color: white !important;
}
#main-nav li ul.dropdown-menu[data-v-63acdcb3] {
    background-color: #004876 !important;
    border: none;
}
#main-nav li ul.dropdown-menu li[data-v-63acdcb3] {
    padding: 10px 0 !important;
}
#main-nav li ul.dropdown-menu li[data-v-63acdcb3]:last-child {
    padding-bottom: 0 !important;
}
#main-nav li ul.dropdown-menu li a[data-v-63acdcb3] {
    padding: 0 !important;
    margin: 0 0 0 15px !important;
}
}

.skip-links a[data-v-90fa4172] {
  z-index: 9999;
  position: absolute;
  padding: 8px;
  color: white;
  background: #004876;
  font-weight: 900;
  text-decoration: underline;
  border-bottom-right-radius: 5px;
  top: -100px;
}
.skip-links a[data-v-90fa4172]:focus-visible {
  top: 0 !important;
}

.contact-form[data-v-b4b15734] {
  padding: 3rem 2rem;
}

.video-container[data-v-01140a6e] {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
}
@media (max-width: 1199px) {
.video-container[data-v-01140a6e] {
    min-height: 400px;
}
}
@media (max-width: 767px) {
.video-container[data-v-01140a6e] {
    min-height: 300px;
}
}
.video-container .video-image[data-v-01140a6e] {
  display: block;
  width: 100%;
  height: auto;
}
.video-container .video-image-big[data-v-01140a6e] {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 85%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}
.video-container .video-image-big-overlay[data-v-01140a6e] {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 85%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  background-color: rgba(0, 72, 118, 0.4);
}
.video-container .video-image-small[data-v-01140a6e] {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 40%;
  height: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}
.video-container .video-sprinkles[data-v-01140a6e] {
  position: absolute;
  bottom: -15%;
  left: 10%;
  display: block;
  width: 60%;
  height: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: scale-down;
}
@media (max-width: 991px) {
.video-container .video-sprinkles[data-v-01140a6e] {
    bottom: -10%;
    width: 50%;
    height: 50%;
}
}
@media (max-width: 767px) {
.video-container .video-sprinkles[data-v-01140a6e] {
    bottom: -5%;
    width: 40%;
    height: 40%;
}
}
.video-container .play-button[data-v-01140a6e] {
  position: absolute;
  color: white;
  top: 40%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #FF7B5B;
  border: 15px solid #FF7B5B;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.video-container .play-button[data-v-01140a6e]:hover {
  color: white;
  background-color: #004876;
  border: 15px solid #004876;
}

.badge[data-v-3bce8426] {
  top: 10px;
  left: 10px;
}
img[data-v-3bce8426] {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.property-features[data-v-3bce8426] {
  list-style: none;
  padding: 0;
}
.property-features li[data-v-3bce8426] {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 4px;
}
.property-features i[data-v-3bce8426] {
  min-width: 25px;
  text-align: center;
  color: #004876;
  margin-right: 10px;
}

.carousel[data-v-9033b804] {
  position: relative;
  width: 100%;
  padding-bottom: 40px;
  overflow: hidden;
}
.carousel .carousel-inner .carousel-item img[data-v-9033b804] {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.carousel .carousel-control-next[data-v-9033b804],
.carousel .carousel-control-prev[data-v-9033b804] {
  cursor: pointer;
  position: absolute;
  top: 40%;
  border-radius: 50px;
  transform: translateY(-50%);
  padding: 16px;
  font-weight: bold;
  font-size: 22px;
  transition: 0.6s ease;
  user-select: none;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  text-decoration: none;
  color: #004876;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.carousel .carousel-control-next i[data-v-9033b804],
.carousel .carousel-control-prev i[data-v-9033b804] {
  margin-left: -2px;
}
.carousel .carousel-control-next[data-v-9033b804]:hover,
.carousel .carousel-control-prev[data-v-9033b804]:hover,
.carousel .carousel-control-next[data-v-9033b804]:focus,
.carousel .carousel-control-prev[data-v-9033b804]:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #004876 !important;
}
.carousel .carousel-control-next[data-v-9033b804]:disabled,
.carousel .carousel-control-prev[data-v-9033b804]:disabled {
  cursor: default;
  opacity: 0.5;
}
.carousel .carousel-control-prev[data-v-9033b804] {
  left: 10px;
}
.carousel .carousel-control-next[data-v-9033b804] {
  right: 10px;
}
.carousel .carousel-image-inner[data-v-9033b804] {
  width: 100% !important;
  height: 700px !important;
  object-position: center;
  object-fit: cover;
}
@media (max-width: 1199px) {
.carousel .carousel-image-inner[data-v-9033b804] {
    height: 500px !important;
}
}
@media (max-width: 991px) {
.carousel .carousel-image-inner[data-v-9033b804] {
    height: 300px !important;
}
}
.carousel .carousel-form-hover[data-v-9033b804] {
  margin-top: -100px;
  z-index: 100;
}
@media (max-width: 1199px) {
.carousel .carousel-form-hover[data-v-9033b804] {
    margin-top: -50px;
    z-index: 100;
}
}
.property-features[data-v-9033b804] {
  list-style: none;
  padding: 0;
}
.property-features li[data-v-9033b804] {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 4px;
}
.property-features li i[data-v-9033b804] {
  min-width: 25px;
  text-align: center;
  color: #004876;
  margin-right: 10px;
}
.video-frame[data-v-9033b804] {
  width: 100%;
  height: 80vh;
}
@media (max-width: 1199px) {
.video-frame[data-v-9033b804] {
    height: 70vh;
}
}
@media (max-width: 991px) {
.video-frame[data-v-9033b804] {
    height: 60vh;
}
}
@media (max-width: 767px) {
.video-frame[data-v-9033b804] {
    height: 50vh;
}
}
.market-phone[data-v-9033b804] {
  position: fixed;
  bottom: 0;
  right: 3rem;
  padding: 0.5rem;
  z-index: 1001;
  border-top-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: unset;
  border-bottom-left-radius: unset;
  border: none;
}
.text-xs[data-v-9033b804] {
  font-size: 0.75rem;
}
.text-secondary[data-v-9033b804] {
  color: #004876 !important;
}
.w-60[data-v-9033b804] {
  width: 100% !important;
}
@media (min-width: 768px) {
.w-60[data-v-9033b804] {
    width: 60% !important;
}
}
.display-7[data-v-9033b804] {
  font-size: 2.25rem;
}

