/* =========================================
   1. VARIABLES & RESET
   ========================================= */
/* =========================================
   2. HEADER STYLES
   ========================================= */
header {
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  /* --- DESKTOP DEFAULT --- */
}
@media (min-width: 992px) {
  header {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
  }
}
header {
  /* --- MOBILE DEFAULT --- */
}
@media (max-width: 991px) {
  header {
    position: relative;
    background-color: #0e3052 !important;
    border-bottom: none;
  }
}
header a {
  text-decoration: none;
  transition: color 0.3s;
  color: inherit;
}
header {
  /* --- BUTOANELE STICKY --- */
}
header .affixQuoteBtn,
header .affixReservationsBtn {
  display: none;
}
header .topHead {
  color: #333;
}
header .topHead .logo-img {
  height: auto;
  width: 302px;
}
@media (max-width: 576px) {
  header .topHead .logo-img {
    max-width: 220px;
  }
}
header .topHead .contact-info {
  font-weight: 500;
}
header .topHead .contact-info a {
  color: inherit;
  font-weight: 600;
}
@media (max-width: 991px) {
  header .topHead {
    color: #fff !important;
  }
  header .topHead .contact-info {
    color: #fff;
    font-size: 0.9rem;
  }
  header .topHead .contact-info a {
    color: #fff !important;
  }
  header .topHead .contact-info img {
    filter: brightness(0) invert(1);
  }
  header .topHead #toggleMenu img {
    filter: brightness(0) invert(1);
  }
  header .topHead .logo-area {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
header {
  /* --- BUTTONS --- */
}
header .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-align: center;
  border: 1px solid transparent;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}
header .btn.btn-primary {
  background-color: #0e3052;
  color: #fff;
}
header .btn.btn-primary.reverse {
  background-color: #fff;
  color: #0e3052;
  border-color: #0e3052;
}
header .btn.btn-primary.reverse:hover {
  background-color: #0e3052;
  color: #fff;
}
@media (max-width: 991px) {
  header .btn.btn-primary.reverse {
    border-color: #fff;
  }
}
header .btn.btn-secondary {
  background-color: #c2a305;
  color: #fff;
}
header .btn.btn-secondary:hover {
  background-color: rgb(144.2814070352, 121.2261306533, 3.7185929648);
}
header {
  /* --- MENU --- */
}
header .menuBorder {
  border-top: 1px solid rgba(155, 255, 255, 0.2);
  border-bottom: 1px solid rgba(155, 255, 255, 0.2);
}
@media (max-width: 991px) {
  header .menuBorder {
    border-top: none;
    border-bottom: none;
    padding-top: 0;
  }
}
header .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  header .menu {
    display: none;
    flex-direction: column;
    background: #0e3052;
    width: 100%;
    padding: 10px 0 30px 0;
  }
  header .menu.menuopen {
    display: flex;
  }
  header .menu .submenu > a {
    display: block;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
  }
  header .menu .submenuBox {
    display: none;
    background: rgb(10.28125, 35.25, 60.21875);
  }
  header .menu .submenuBox a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    text-align: center;
  }
}
@media (min-width: 992px) {
  header .menu .submenu {
    position: relative;
    padding: 10px 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
  }
  header .menu .submenu:hover > a {
    color: #0e3052;
  }
  header .menu .submenu .submenuBox {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #c2a305;
    z-index: 100;
    text-align: left;
    padding: 10px 0;
  }
  header .menu .submenu .submenuBox a {
    display: block;
    padding: 8px 20px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.9em;
    color: #555;
  }
  header .menu .submenu .submenuBox a:hover {
    background: #f9f9f9;
    color: #c2a305;
    padding-left: 25px;
  }
  header .menu .submenu .submenuBox.two-columns {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    min-width: 500px;
  }
  header .menu .submenu:hover .submenuBox {
    display: block;
    animation: fadeIn 0.3s;
  }
  header .menu .submenu:hover .submenuBox.two-columns {
    display: grid;
  }
}
header {
  /* --- DESKTOP STICKY (AFFIX) --- */
}
@media (min-width: 992px) {
  header.affix {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0e3052 !important;
    border-bottom: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 0 !important;
    animation: slideDown 0.3s ease-out;
  }
  header.affix .topHead {
    display: none;
  }
  header.affix .menuBorder {
    margin-top: 0 !important;
    padding: 0;
    border: none;
  }
  header.affix .affixQuoteBtn,
  header.affix .affixReservationsBtn {
    display: inline-block;
    margin-left: 15px;
    padding: 6px 15px;
    font-size: 0.8rem;
    border-radius: 0;
  }
  header.affix .affixQuoteBtn {
    background-color: #fff;
    color: #0e3052;
    border: none;
  }
  header.affix .affixQuoteBtn:hover {
    background-color: #c2a305;
    color: #fff;
  }
  header.affix .affixReservationsBtn {
    border-radius: 0;
  }
  header.affix .menu .submenu > a {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
  }
  header.affix .menu .submenu:hover > a {
    color: #c2a305;
  }
}
header {
  /* --- MOBILE STICKY TRANSFORM --- */
}
@media (max-width: 991px) {
  header.affix-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0e3052 !important;
    padding: 0 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1001;
  }
  header.affix-mobile .container-fluid {
    padding: 0 !important;
  }
  header.affix-mobile .topHead {
    margin: 0 !important;
  }
  header.affix-mobile .logo-area,
  header.affix-mobile .contact-info,
  header.affix-mobile .menuBorder {
    display: none !important;
  }
  header.affix-mobile .top-cta {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  header.affix-mobile .top-cta .buttons-wrapper {
    flex-direction: row !important;
    gap: 0 !important;
  }
  header.affix-mobile .top-cta .buttons-wrapper .btn {
    width: 50%;
    border-radius: 0;
    margin: 0;
    border: none;
    padding: 15px 5px;
    font-size: 0.8rem;
  }
  header.affix-mobile .top-cta .buttons-wrapper .btn.btn-primary.reverse {
    border-right: 1px solid #ddd;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    margin-top: 10px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}
.homeTop {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
}
@media (min-width: 992px) {
  .homeTop {
    padding-top: 250px;
    min-height: 850px;
  }
}
@media (max-width: 991px) {
  .homeTop {
    padding-top: 30px;
    background: #11407c;
  }
}

.hoverMenuLink:hover {
  color: #c2a305 !important;
}/*# sourceMappingURL=css_part_header.css.map */