@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Noto+Sans&display=swap');

/* Local Font Imports */
@font-face {
  font-family: 'Oswald';
  src: url('/fonts/Oswald-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

/* Custom Alert Styling for Branding */
.alert-success {
  background-color: #E8DDD5 !important;
  border-color: #735F48 !important;
  color: #3A3A3A !important;
}

.alert-success .alert-heading {
  color: #735F48 !important;
}

/* Sticky Column for Hotels & Offers */
.sticky-hotels-column {
  position: sticky;
  top: 20px;
  height: fit-content;
  padding: 0 15px;
}

.hotels-offers-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #8B7355 0%, #6d5a45 100%);
  color: white;
  padding: 20px 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.25);
  text-align: center;
  line-height: 1.4;
  border: 2px solid transparent;
}

.hotels-offers-btn:hover {
  background: white;
  color: #8B7355;
  border-color: #8B7355;
  text-decoration: none;
}

/* Mobile Version of Hotels/Offers Button */
.hotels-offers-btn-mobile {
  display: inline-block;
  width: 100%;
  background: linear-gradient(135deg, #8B7355 0%, #6d5a45 100%);
  color: white;
  padding: 16px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.25);
  text-align: center;
  line-height: 1.4;
  border: 2px solid transparent;
}

.hotels-offers-btn-mobile:hover {
  background: white;
  color: #8B7355;
  border-color: #8B7355;
  text-decoration: none;
}

.btn-text {
  display: block;
  word-break: break-word;
  white-space: normal;
}

/* Global Element Styling */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
}

span, a, a:hover {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

/* Row Flexbox Styling */
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Thanos Hotels Branding Colors */
:root {
  --thanos-primary: #8B7355;
  --thanos-background: #F9F8F5;
  --thanos-text: #3A3A3A;
  --thanos-gray: #A9A39F;
  --thanos-navy: #2C3E50;
  --thanos-light-bg: #FAFAF8;
  --thanos-success: #7A9E6F;
  --thanos-danger: #8B4C5A;
  --thanos-gold: #D4A574;
}

/* Override Bootstrap Color Variables */
:root {
  --bs-primary: var(--thanos-primary);
  --bs-primary-rgb: 139, 115, 85;
  --bs-secondary: var(--thanos-gray);
  --bs-info: var(--thanos-primary);
  --bs-body-bg: var(--thanos-background);
  --bs-body-color: var(--thanos-text);
  --bs-border-color: #E8E5E0;
  --bs-success: var(--thanos-success);
  --bs-danger: var(--thanos-danger);
  --bs-primary-text-emphasis: var(--thanos-primary);
}

.text-primary {
  color: var(--thanos-primary) !important;
}

.bg-primary {
  background-color: var(--thanos-primary) !important;
}

.alert-warning {
  background-color: #E8DDD5;
  border-color: #735F48;
  color: #3A3A3A;
}

.alert-warning .alert-heading {
  color: #735F48;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--thanos-primary);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0px;
  background-color: var(--thanos-background);
  color: var(--thanos-text);
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* User Dropdown Styling */
#userDropdown {
  font-weight: 500;
  color: var(--thanos-primary) !important;
  transition: all 0.2s ease;
}

#userDropdown:hover {
  color: var(--thanos-navy) !important;
}

#userDropdown::after {
  margin-left: 0.5rem;
}

.dropdown-menu {
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: none;
  background-color: var(--thanos-light-bg);
}

.dropdown-item {
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
  color: var(--thanos-text);
}

.dropdown-item:hover {
  background-color: #EDE9E2;
  color: var(--thanos-primary);
}

.dropdown-item.text-danger:hover {
  background-color: #F5E8E9;
  color: var(--thanos-danger) !important;
}

/* Hotel Card Overlay Styling */
.hotel-card-overlay {
  position: relative;
  overflow: hidden;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.hotel-card-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hotel-card-overlay:hover {
  transform: scale(1.05);
}

.hotel-card-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
  z-index: 2;
  text-align: center;
}

.hotel-card-overlay-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.05em;
}

.hotel-card-overlay-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  margin: 0.5rem 0 0 0;
  letter-spacing: 0.03em;
  opacity: 0.95;
}

/* Thanos Card Styling */
.thanos-card {
  background-color: var(--thanos-light-bg);
  border: 1px solid #E8E5E0;
  color: var(--thanos-text);
}

.thanos-card-header {
  background-color: var(--thanos-primary);
  color: white;
  border-bottom: none;
}

/* Button Styling */
.btn-primary {
  background-color: var(--thanos-primary);
  border-color: var(--thanos-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--thanos-navy);
  border-color: var(--thanos-navy);
}

.btn-secondary {
  background-color: var(--thanos-gray);
  border-color: var(--thanos-gray);
}

.btn-secondary:hover {
  background-color: #999085;
  border-color: #999085;
}

/* Thanos Logo Styling */
.thanos-logo {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  padding: 0 !important;
  margin: 0 !important;
}

.thanos-logo-icon {
  flex-shrink: 0;
  min-width: 36px;
  height: 36px;
}

.thanos-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 0.1rem;
}

.thanos-logo-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--thanos-text);
}

.thanos-logo-subtitle {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--thanos-gray);
  text-transform: uppercase;
}

/* Enhanced Header/Navbar Styling */
.navbar {
  background-color: var(--thanos-light-bg) !important;
  border-bottom: 1px solid #E8E5E0;
  padding: 0.875rem 0 !important;
}

.navbar-nav {
  gap: 0.5rem;
}

.navbar-nav .nav-link {
  color: var(--thanos-text) !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--thanos-primary) !important;
}

.navbar-nav .nav-link.active {
  color: var(--thanos-primary) !important;
  font-weight: 600;
}

/* User Dropdown Refined */
#userDropdown {
  font-weight: 500;
  color: var(--thanos-text) !important;
  padding: 0.5rem 1rem !important;
}

#userDropdown:hover {
  color: var(--thanos-primary) !important;
  text-decoration: none;
}

/* Main Footer Dark Styling */
.main-footer.dark {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  font-family: 'Didact Gothic',sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  display: block;
}

/* Background Image Section Styling */
.background.bg-img.bg-fixed.pb-0 {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgb(33, 37, 41);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-bottom: 0!important;
  position: relative;
  background-image: url('/Resources/images/Thanos Hotels/home-parallax-2-1920x1090.jpg');
}

.background.bg-img.bg-fixed.pb-0::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
  background: rgb(0, 0, 0);
  opacity: 0;
}

/* Slogan Container Styling */
.slogan-cont {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  -webkit-font-smoothing: antialiased;
  font-family: 'Didact Gothic',sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  color: #777;
  margin: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  padding: 120px 0;
  letter-spacing: 10px;
  text-align: center;
}

/* Content Container Styling */
.cont {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  -webkit-font-smoothing: antialiased;
  font-family: 'Didact Gothic',sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  color: #777;
  letter-spacing: 10px;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  max-width: 1000px;
  text-transform: uppercase;
  margin: 0 auto;
}

/* Slogan Container Heading Styling */
.slogan-cont .cont h5 {
  font-size: 1.5rem;
  line-height: 40px;
}

/* Overlay Dark Text Styling */
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
  color: #fff;
}

/* Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  line-height: 1.25em;
  margin: 0 0 20px 0;
}

/* Footer Panel Styling */
#pnlFooter {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation 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;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  display: block;
  padding: 60px 0 0;
  background: #9b8f83;
  color: #fff;
}

/* Ensure all footer child elements are white */
#pnlFooter,
#pnlFooter * {
  color: #fff !important;
}

/* Footer Group Styling */
.footer__group {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation 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;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  display: flex;
  justify-content: center;
}

/* Footer Hotels List Styling */
.footer__hotels {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  margin-top: 0;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  font-size: 16px;
  letter-spacing: .6rem;
  text-align: center;
  text-transform: uppercase;
}

/* Footer Hotels Item Styling */
.footer__hotels-item {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  outline: 0;
  word-wrap: break-word;
  font-size: 16px;
  letter-spacing: .6rem;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Didact Gothic',sans-serif;
  font-weight: 400;
  line-height: 1.75em;
  -webkit-font-smoothing: antialiased;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
}

/* Divider bullet between hotel items */
.footer__hotels-item:not(:last-child)::after {
  content: "•";
  margin: 0 0.75rem;
  color: #fff;
  font-size: 16px;
}

/* Footer Link Styling */
a.footer__link {
  font-family: "Didact Gothic", sans-serif;
  letter-spacing: 9.6px;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
  list-style: none;
  cursor: pointer;
  box-sizing: border-box;
  word-wrap: break-word;
  margin: 0px;
  padding: 0px;
  outline: 0px;
  overflow-wrap: break-word;
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  display: inline-block;
}

a.footer__link:hover {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

@media print {
  a.footer__link {
    text-shadow: none !important;
    box-shadow: none !important;
    text-decoration: underline;
  }
}

/* Footer Brand Styling */
.footer__brand {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  display: inherit;
  font-size: 16px;
  font-style: italic;
  text-align: center;
}

/* Footer Brand Link Thanos Brand Styling */
.footer__brand-link.thanos-brand {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  text-align: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-style: normal;
}

/* Footer Sitemap Styling */
.footer__sitemap {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  font-family: 'Didact Gothic',sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  color: #fff;
  margin: 0;
  -webkit-box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  border-top: 1px solid #fff;
  padding: 20px 20px;
}

/* Div Footer Sitemap Styling */
div.footer__sitemap {
  color: rgb(255, 255, 255);
  font-family: "Didact Gothic", sans-serif;
  line-height: 28px;
  text-align: left;
  border-top: 1px solid rgb(255, 255, 255);
  list-style: none;
  box-sizing: border-box;
  word-wrap: break-word;
  padding: 20px;
  outline: 0px;
  overflow-wrap: break-word;
}

@media print {
  div.footer__sitemap {
    text-shadow: none !important;
    box-shadow: none !important;
  }
}

/* Footer Row Styling */
.row.footer-row {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  font-family: 'Didact Gothic',sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  color: #fff;
  padding: 0;
  -webkit-box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

/* Sitemap Footer Container Styling */
.col-12.col-md-3.pr-0.ucSitemapFooter-cont {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation 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;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  position: relative;
  width: 100%;
  padding-left: 15px;
  flex: 0 0 25%;
  max-width: 25%;
  padding-right: 0!important;
}

/* Menu Footer Legal Styling */
.menu-footer.footer__legal {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  font-family: 'Didact Gothic',sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  color: #fff;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  margin-top: 0;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

/* Footer Legal Styling */
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');
ul.footer__legal {
	color: rgb(255, 255, 255);
	font-family: "Didact Gothic", sans-serif;
	line-height: 28px;
	list-style: none;
	box-sizing: border-box;
	word-wrap: break-word;
	padding: 0px;
	outline: 0px;
	overflow-wrap: break-word;
	margin-top: 0px;
	margin-bottom: 0px;
	align-items: center;
	display: flex;
	justify-content: center;
}
@media print {
	ul.footer__legal {
		text-shadow: none !important;
		box-shadow: none !important;
	}
}
@media (max-width: 768px) {
	ul.footer__legal {
		display: block;
		text-align: center;
		margin-bottom: 20px;
	}
}

/* Social Media Icons Styling */
.social-icon {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation 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; */
    /* text-align: left; */
    /* -webkit-font-smoothing: antialiased; */
    /* color: #fff; */
    /* margin: 0; */
    /* padding: 0; */
    /* box-sizing: border-box; */
    outline: 0;
    list-style: none;
    word-wrap: break-word;
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.social-icon a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease, border-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 10px;
}

.social-icon a:hover {
  color: var(--thanos-gold);
  border-color: var(--thanos-gold);
}

/* Main Footer About Section Social Icons */
.main-footer .abot .social-icon a {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #efefef;
  color: #fff;
  border-radius: 100%;
  margin-right: 3px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

/* Main Footer About Section Social Icons Container */
.main-footer .abot .social-icon {
  text-align: center;
  margin-bottom: 20px;
}

/* Footer Copy/Copyright Styling */
.footer-copy {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation 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;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  padding-top: 1rem;
}

/* Footer Copy with Text Center Styling */
.footer-copy.text-center {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  -webkit-font-smoothing: antialiased;
  font-family: 'Didact Gothic',sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
  color: #fff;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  text-align: center!important;
}

/* Address Info Container Styling */
.address-info-cont {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation 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;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.address-info-cont ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.address-info-cont ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.address-info-cont ul li a:hover {
  color: var(--thanos-gold);
}

/* About Section Styling */
.abot {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation 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;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  list-style: none;
  word-wrap: break-word;
}

/* Media Queries */
/* Responsive Grid Column - Medium and Up */
@media (min-width: 768px) {
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media print {
  .background.bg-img.bg-fixed.pb-0 {
    text-shadow: none !important;
    box-shadow: none !important;
  }
}

@media screen and (max-width: 991px) {
  .background.bg-img.bg-fixed.pb-0 {
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: scroll !important;
  }
}
