html {
  overflow-x: hidden;
}

:root {
  --container-max-width: clamp(1000px, 100vw, 1400px);
}

/*========== Fonts ==========*/
:root {
  --m: "Montserrat", sans-serif;
  --u: "Unna", serif;
}
* {
  font-family: "Montserrat", sans-serif;
  color: var(--blue);
}

h1, h2, h3, h4, h3 a {
  font-family: "Unna", serif;
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
}
#bodyContainer p {
  var(--blue);
}

/*========== Font Colors - EVERYTHING BLUE ==========*/
.more-arrow .departments span {
   color: var(--blue);
}
.nav--tabs .tab-list .tab a:link, .nav--tabs .tab-list .tab a:visited, .profile-content * {
  color: var(--blue);
}
.alert h1, .alert--info h1 {
  color: var(--gold);
}

.alert, .alert--info {
  background: var(--lightGold);
  border-radius: 0;
  box-shadow: none;
  border-left: 5px solid var(--gold);
  padding-left: 11px;
}
.profile-content .alert a.button {
  background: var(--gold);
  border: none;
  color: white;
  box-shadow: none;
}
li.tab.active, li.tab:hover {
  border-bottom: 3px solid var(--gold);
}
button.button--theme--primary, a.button.button--theme--primary, button.button.button--theme--primary, input[type="submit"].button.button--theme--primary, button.button.button--theme--primary:hover, a.button.button--theme--primary:link, .product__details .quote-button, product__details a:visited.quote-button, product__details a:visited.quote-button, a.button.button--theme--primary:visited {
  background: var(--gold);
  color: white;
  border: none;
  padding: 16px 30px;
  border-radius: 55px;
}
.category .category__title a:link, .category .category__title a:visited {
  color: var(--blue);
  font-size: 22px;
}
.product__details .quote-button:hover {
  background: var(--blue);
}
#btnAddAddress i {
  color: white;
} 
.accordion .accordion-content {
  color: var(--blue);
}
.product__title a:link, .product__title a:visited{
  color: var(--blue);
}
.category .category__title h3 a:link, .category .category__title h3 a:visited {
  color: var(--blue);
}
/*========== Brand Colors ==========*/
:root {
  --blue: #050033;
  --gold: #b88d5b;
  --lightBlue: rgb(67, 93, 110);
  --medBlue: #74758c;
  --lightGold:  rgba(184, 141, 91, .2);

  --text-copy-color: var(--blue);
}
/*========== Login ===========*/
#loginForm * {
  color: var(--blue);
}
#loginForm button {
  color: white;
}
.login__box .swap-pane .swap-trigger {
  background: var(--blue);
  color: white;
  position: relative;
}
.login__box .swap-pane .swap-trigger.current {
  color: var(--blue);
}
#loginEmail {
  background: var(--lightGold);
}

/*========== Header ==========*/
.header-wrapper .top-nav ul {
  padding: 0;
} 
.header-wrapper .top-nav ul li {
  padding: 0 16px;
}
.header-wrapper .top-nav ul li a {
  font-size: 14px;
  font-weight: 500;
}
.main-logo-space {
  width: 92px;
  height: 74px;
  margin-top: -30px;
}
.container--header .main-logo-space img {
  width: 92px;
  height: 74px;
}
/*-- Main Nav Menu Items --*/
.megamenu > li > a:link, .megamenu > li > a:visited {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
.underline {
  position: absolute;
  bottom: 0px; 
  left: 0;
  width: 0;
  height: 5px;
  background-color: var(--gold);
  transition: all .5s ease;
  z-index: 9999;
  pointer-events: none;
}


header .top-nav ul li {
  position: relative;
}
header .header-wrapper .top-nav ul li:nth-last-child(2) {
  display: none;
}
.dropdown_fullwidth .col-wrapper {
  max-width: var(--container-max-width);
  margin: auto;
}
.megamenu .dropdown_fullwidth a:link, .megamenu .dropdown_fullwidth a:visited, .megamenu .dropdown_fullwidth * {
  color: var(--blue);
}
.megamenu .dropdown_fullwidth .col_3 p {
  color: var(--medBlue);
}
.megamenu .col_3 span {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
}
.megamenu .col_3:nth-child(1) {
  display: grid; 
  row-gap: 25px;
}
.megamenu .col_3 .mega-li a {
  transition: .25s;
  position: relative;
  font-weight: 700;
}
.megamenu .col_3 .mega-li a:hover {
  color: var(--gold);
}
.megamenu .col_3 .mega-li a::before {
  content: '.';
  color: transparent;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 0;
  position: absolute;
  display: none;

  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.megamenu .col_3 .mega-li a:hover::before {
  display: block;
}

/*-- Show / Hide Dropdown Menu --*/
header .sticky {
  display: grid;
}
.megamenu_container {
  height: 100%;
}
.megamenu {
  height: 100%;
}
.megamenu_container .megamenu > li {
  height: 100%;
}
.megamenu > li > a:link, .megamenu > li > a:visited  {
  height: 100%;
}
/*========== Hero ==========*/
.banner-section {
  background-image: url('/images/heros/accorbanner.png');
  background-size: cover;
  background-position: center;
  height: 600px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
.banner-section::before {
  display: none;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.6));
}
.banner-section * {
  color: var(--blue);
}
.banner-section .hero-text {
  width: var(--container-max-width);
  max-width: var(--container-max-width);
  margin-inline: auto;
  margin-top: 70px;
  z-index: 1;
}
.banner-section .hero-title {
  font-family: var(--m);
  font-size: 29px;
  font-weight: 500;
  font-style: normal;
}
.banner-section .hero-subtitle {
  font-family: var(--u);
  font-size: 56px;
  font-weight: 700;

  width: 38%;
}

@media only screen and (max-width: 1400px) {
  .banner-section .hero-text {
    padding-left: 16px;
  }
}
/*========== Search ==========*/
#searchTerm {
  background: transparent;
  border: none;
  color: white;
  display: none;
  transition: .25s;
}
#searchTerm:focus {
  box-shadow: none;
}
#searchTerm.active {
  transition: .25s;
  display: block;
  border: 1px solid white;
  border-radius: 5px;
}
#btnSearch i {
  color: white;
}
/*========== Body Arrow ==========*/
.more-arrow{
  width: fit-content;
  margin-left: auto;
  margin-top: 70px;
  align-content: center;
}
.more-arrow a, .more-arrow a:link, .more-arrow a:visited {
  display: flex;
  align-content: center; 
  gap: 10px;
  color: black;
}
.more-arrow a span {
  transition: .25s;
}
.more-arrow a:link:hover span, .more-arrow a:visited:hover span{
  color: var(--gold);
}
.more-arrow span {
  font-size: 14px;
  font-weight: 700;
}
.svg-arrow {
  width: 25px;
}
.svg-arrow path {
  stroke: var(--blue);
  stroke-width: 10;
  transition: .25s;
}
.more-arrow a:hover .svg-arrow path {
  stroke: var(--gold);
}
/*========== Cards ==========*/
.homepage__secondary-callouts {
  margin-block: 40px 54px;
}
.homepage__secondary-callouts .callouts {
  grid-template-rows: repeat(2, 350px);
  grid-template-columns: repeat(2,minmax(0,50%));
  gap: 0;
}
.homepage__secondary-callouts .callout {
  position: relative;
  overflow: hidden;
}
.homepage__secondary-callouts .callout:nth-child(1) {
  grid-area: 1/1/2/2;
}
.homepage__secondary-callouts .callout:nth-child(2) {
  grid-area: 2/1/3/2;
}
.homepage__secondary-callouts .callout:nth-child(3) {
  grid-area: 1/2/3/3;
}
.homepage__secondary-callouts .callout__title {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 68px 35px;

  font-family: var(--u);   
  font-weight: 700;
  font-size: 34px;
  color: white;
  font-style: italic;
  z-index: 2;
}
.homepage__secondary-callouts .callout__subtitle {
  background: transparent;
  font-size: 22px;
  font-weight: 300;
  left: 0;
  bottom: 0;
  top: unset;
  padding: 35px;
  z-index: 2;
}
.homepage__secondary-callouts .callout__image {
  box-shadow: none;
  width: 100%; 
  height: 100%;
  position: relative;
}
.homepage__secondary-callouts .callout__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: .25s;
}
.homepage__secondary-callouts .callout:nth-child(1) .callout__image img {
  object-position: center;
}
.homepage__secondary-callouts .callout:nth-child(3) .callout__image img {
  object-position: right;
}
.homepage__secondary-callouts .callout__image::before {
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.2));
  z-index: 1;
}

@media only screen and (min-width: 1000px) {
  .homepage__secondary-callouts .callout:hover .callout__image img {
    transform: scale(1.1);
  }
}
/*========== Footer ==========*/
.container.container--footer {
  height: 100%;
  gap: 50px;
}
.footer-wrapper {
  background: var(--blue);
  border: none;
  padding-block: 30px 20px;
}
footer.footer--site {
  height: 100%;
  grid-template: 1fr/ 1fr 2fr 2fr;
}

/*-- Logo --*/
.container--footer footer.footer--site .logo-space {
  grid-area: 1/1/2/2;
  justify-self: start;
  align-self: center;
  margin-left: 10px;
}
footer.footer--site .logo-space img {
  max-height: 130px;
}

/*-- Footer Nav --*/
footer.footer--site .footer-nav {
  display: none;
  grid-area: 1/2/2/3;
  justify-self: start;
  align-self: center;
}
footer.footer--site .footer-nav .nav-list {
  display: grid;
  grid-template: repeat(2, 1fr) / repeat(2, 1fr);
  gap: 10px;
}
.nav-list.horizontal li + li, .nav-list.horizontal li  {
  margin: 0;
  padding: 0;
}

/*-- Copyright --*/
.footer-extra {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 20px;
}
.footer-extra::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  height: 100%;
  width: max(1000px, 100vw);

  border-top: 1px solid var(--lightBlue);
}
.footer-extra::after {
  content: '';
  position: absolute;
  top: 0;
  right: -50%;
  height: 100%;
  width: max(1000px, 100vw);

  border-top: 1px solid var(--lightBlue);
}
.footer-extra .copyright p {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--lightBlue);
}

/*-- TC Privacy --*/
.footer-extra  .nav-list.legal {
  width: fit-content;
}
.footer-extra  .nav-list.legal li {
  margin-inline: 10px;
}
.footer-extra .nav-list.legal li a:link, .footer-extra .nav-list.legal li a:visited {
  font-size: 16px;
  font-weight: 500;
  color: var(--lightBlue);
}
/*-- Links --*/
footer.footer--site .footer-nav li a, 
footer.footer--site p, 
footer.footer--site .nav-list li a { 
    color: white; 
}

/*-- Hide Unused Footer elements --*/
footer.footer--site .cc-list, footer.footer--site .nav-list.sm-links, footer.footer--site .footer__content {
  display: none;
}  

/****** VARIABLES ******/
:root {
/* TOP NAVIGATION BAR COLORS */
    --primary-bg: var(--blue);
    --primary-text: #fff;
  
  /* MAIN MENU COLORS */
    --secondary-bg: var(--blue);
    --secondary-text: #fff;
  
  /* HIGHLIGHT/HOVER COLORS */
    --highlight-bg: transparent;
    --highlight-text: white;

/* MEGAMENU DROPDOWN COLORS */
  --megamenu-bg: #fff;
  --megamenu-links: #000;
  --megamenu-title: #000;
  --megamenu-text: #000;

/* MOBILE COLORS */
  --mobile-icon: #000;
	--mobile-bg: #000;
	--mobile-text: #fff;
	--mobile-bg-highlight: #422254;
}
.search-box {
width: fit-content;
    margin-right: calc(3% + 16.72px);
    display: inline-flex;
    justify-content: center;
}
.search-form input {
    background-color: #f7f7f794;
    border-color: #d7d7d7;
    border-width: 1px;
}
body {
    overflow-x: hidden;
}
/****** START OF MEGA MENU ******/
.header-wrapper {
  background: var(--primary-bg);
   margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0px !important;
    border-bottom: 0px;
    height: 59px;
}
header.header--site {
  padding-left: 50px;
  padding-right: 50px;
}
  header.header--site a,
  header.header--site a:link,
	header.header--site a:visited,
	header.header--site a:active,
	header.header--site p {
    color: var(--primary-text);
	}
	/*header.header--site a:hover {
    color: var(--highlight-text) !important;
	}*/
.top-nav {
  text-align: right;
  padding: 15px 3%;
	width: 100vw;
}
.top-nav ul {
    width: 100%;
}
	.top-nav ul,
	.top-nav li {
    list-style: none;
    color: var(--primary-text);
    display: inline-block;
    padding: 0 2%;
    font-size: small;
margin-left:0;
	}
	.top-nav a,
	.top-nav a:link {
    color: var(--primary-text); !important;
	}
	.top-nav i {
    color: var(--primary-text) !important;
	}
  @media all and (max-width: 769px) {
    .top-nav {
      text-align: center;
    }
  }
/****** LOGO ******/
.main-logo-space {
  z-index: 99999;
  position: absolute;
  left: 0;
  margin-left: calc((100vw - 1400px)/2);
}
	.main-logo-space img {
		max-width: fit-content;
    	top: -5px;
    	height: 50px;
    	position: absolute;
  	}
	@media all and (max-width:1399px){
		.main-logo-space {
  			margin-left: 16px;
		}
	}
	@media all and (max-width:550px){
		.main-logo-space {
  			margin-left: 5vh;
		}
	}
/****** STICKY LOGO ******/
.sticky-logo {
  position: absolute;
  top: 0;
  left: calc((100vw - 1400px)/2);
  visibility: hidden;
}
	.sticky-logo img {
    max-width: fit-content;
    z-index: 99999;
    position: absolute;
    top: 5px;
    height: 50px;
	}
.visible-title {
  visibility: visible;
}
@media only screen and (max-width: 1400px) {
  .sticky-logo {
  left: 16px;
  }
}
@media all and (max-width: 769px) {
  .sticky .main-logo-space img {
    max-width: 268px;
    max-width: 180px !important;
    z-index: 99999;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/******* STICKY MENU ******/
.fixed-header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
}
.sticky {
  width: 100%;
  height: 60px;
  z-index: 10;
  background: var(--secondary-bg)  !important;
  text-align: right;
  /*box-shadow: 3px 3px 3px #00000042;*/
}
	.sticky li {
    display: inline-block;
	}
	.sticky a {
    display: inline-block;
    font-weight: 600;
    font-size: large;
    line-height: 1.8;
    color: var(--secondary-text);
	}
  .sticky .mega-feature a {
    line-height: 0;
	}

/****** MEGA MENU DROPDOWN ******/
.mega-dropdown {
  background-color: var(--primary-bg);
  position: absolute;
  width: 100%;
  left: 0;
  display: flex;
}
.mega-feature {
  border: 0;
  width: 300px;
  float: right;
  /*box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.3);*/
}
	.mega-feature:hover {
    border-color: var(--highlight-bg);
    background-color: #fff;
    /*box-shadow: 4px 4px 4px #00000054;*/
    transition: all .5s ease-out;
  }
.megamenu_container {
  transition: all 0.2s ease;
  position: relative;
  z-index: 9999;
}
.megamenu {
  list-style: none;
  padding: 0;
  position: relative;
  margin: 0;
  z-index: 10;
  font-size: 14px;
  line-height: 1;
}
  .megamenu > li > a {
    font-size: 1.2em;
    text-decoration: none;
    display: block;
    padding: 15px;
  }
  .megamenu li {
    transition: all 0.6s ease;
      -webkit-transition: all 0.6s ease;
      -moz-transition: all 0.6s ease;
      -o-transition: all 0.6s ease;
      -ms-transition: all 0.6s ease;
  }
  .megamenu li:last-child {
    margin-right: 3vw;
  }
  .megamenu .col_3 {
width: 29.33%;
    float: left;
    display: inline;
    position: relative;
    /*margin-left: 2%;*/
  }
/*.megamenu .col_3:nth-child(1) {
  width: 29.33%;
}
.megamenu .col_3:nth-child(2) {
  width: fit-content;
}
.megamenu .col_3:nth-child(3) {
  width: 29.33%;
}*/
.megamenu_container .megamenu > li:hover,
.megamenu_container .megamenu > li.active {
  background: var(--highlight-bg);
  opacity: 1.0;
  transition: all .5s ease-out;
}
.megamenu_container .megamenu li.noactive {
  background: none;
  box-shadow: none;
}
.megamenu h3 {
  color: var(--megamenu-title);
}
.megamenu p {
  line-height: 1.8;
  margin-top: 10px;
	color: var(--megamenu-text);
}
.megamenu_container .megamenu > li:hover > a {
  /*color: var(--highlight-text) !important;*/
  transition: all .5s ease-out;
}
.megamenu img {
  height: auto;
  border: none;
}
.dropdown_fullwidth {
  max-width: 100vw;
  margin: auto !important;
  border-bottom: 5px solid var(--gold);
}
.dropdown_fullwidth a {
  color: var(--megamenu-links);
  font-size: 1em;
  padding: 6px 20px;
}
  .dropdown_fullwidth a:hover {
    /*color: var(--highlight-text);*/
    background-color: var(--highlight-bg);
    transition: all .5s ease-out;
  }
  .dropdown_fullwidth a:hover > p {
   /* color: var(--highlight-text);*/
    background-color: var(--highlight-bg);
    transition: all 0.6s ease;
      -webkit-transition: all 0.6s ease;
      -moz-transition: all 0.6s ease;
      -o-transition: all 0.6s ease;
      -ms-transition: all 0.6s ease;
  }
  .megamenu_container .megamenu li .dropdown_fullwidth {
    background: var(--megamenu-bg);
    text-align: left;
  }
li.mega-li {
  display: block;
  width: max-content;
}
ul.list_unstyled {
  display: grid;
  grid-template-rows: repeat(5, min-content);
  grid-auto-flow: column;
  /*margin-top: 35px;*/
}
.col_3_feature a {
  display: block;
  margin-top: 0;
  background-color: var(--megamenu-border);
  color: var(--megamenu-links);
  padding: 0;
}
.megamenu li .dropdown_fullwidth {
  position: absolute;
  margin: 0;
  left: -1px;
  top: 60px;
  display: none;
  zoom: 1;
  z-index: 9998;
  float: left;
  /*box-shadow: 2px 2px 2px 2px hsl(207deg 45% 15% / 23%);*/
  width: 110%;
  margin-left: -4%;
  padding: 45px 3%;
}

.megamenu li:hover .dropdown_fullwidth {
  display: block;
}
.megamenu li.dropdown_fullwidth:hover  {
  display: block;
}
.sticky .megamenu li:hover .dropdown_fullwidth {
  display: block;
}
.sticky .megamenu li .dropdown_fullwidth:hover {
  display: block;
}
/* Showing Drop Down on Mouse Hover */
/*.megamenu li:hover .dropdown_container {
  top: 45px;
  left: auto;
}
.megamenu li:hover .dropdown_fullwidth {
  top: 45px;
  left: -1px;
}
.megamenu li .dropdown_fullwidth:hover {
  top: 45px;
  left: -1px;
}
.megamenu li .dropdown_right {
  right: 0;
}

.megamenu li:hover .dropdown_right {
  top: 45px;
  left: auto;
  right: 0;
}
.sticky .megamenu li:hover .dropdown_fullwidth {
  top: 60px;
  left: -1px;
}

.sticky .megamenu li .dropdown_fullwidth:hover  {
  top: 60px;
  left: -1px;
}*/
/* MOBILE MENU TOGGLE */
.mobile-menu, .mobile-toggle {  display: none;}
.mobile-toggle .fa-times {  display: none;}
.mobile-toggle.open .fa-bars {  display: none;}
.mobile-toggle.open .fa-times {  display: inline;}
.toggle-mobile {  display: none;}
.toggle-mobile.active {
    background-color: #0e3658;
    z-index: 9999;
    position: fixed;
    width: 87%;
    padding: 15px;
    margin: 31px 0;
}
@media all and (min-width: 780px) {
  .mobile-toggle {  display: none !important;}
  .desktop-toggle {  display: block !important;}
}
@media all and (max-width: 825px) {
    #mobile-menu-toggle {
        display: block;
        margin-top: 0;
        color: #fff;
        padding-top: 30px;
    }
}
@media all and (max-width: 769px) {
  .mobile-toggle {
    display: inline-block !important;
    float: right;
    right: 35px;
    top: 25px;
    position: relative;
    z-index: 999999;
  }
  .desktop-toggle {
    display: none !important;
  }
  .mobile-menu.active {
    display: block;
    z-index: 999;
    position: absolute;
    width: 105vh;
    margin-top: 18px;
    text-align: center;
  }
  .mobile-menu.slide-down {
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
  }
  .fa {
    color: var(--mobile-icon) !important;
  }
  .mobile-menu.active li:hover {
    background-color: var(--mobile-bg-highlight);
  }
  .mobile-menu.active a {
    color: var(--mobile-text);
  } 
  .mobile-menu ul {
    background-color: var(--mobile-bg);
    margin: 40px -10% 0;
  }
  .mobile-menu.active li {
    display: block;
    line-height: 3em;
  }
  .mobile-menu.active {
    display: block;
    z-index: 999;
    position: absolute;
    width: 100%;
  }
}
@media all and (max-width: 769px) {
  .sticky .mobile-toggle {
    float: right;
    position: relative;
    right: 9vw;
    top: 20px;
  }
}
@media all and (max-width: 984px) {
  .megamenu img {
    max-width: 96%;
    height: auto;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  .megamenu_container .megamenu > li > div > .responsive_halfs {
    width: 42%;
  }
}
@media all and (min-width: 768px) and (max-width: 984px) {
  .megamenu_container .megamenu > li {
    margin: 0 8px 0 0;
  }	
  .megamenu_container .megamenu > li > a {
    padding: 16px 10px;
  }
}
@media all and (max-width: 568px) {
  .megamenu_container {
    height: auto;
  }
  .megamenu_container .megamenu > li,
  .megamenu_container .megamenu > li:hover {
    float: none;
    width: auto;
    padding-right: 0;
    margin-right: 0;
  }
  .megamenu_container .megamenu li:hover .dropdown_fullwidth {
    top: auto;
    left: -1px;
  }	
  .megamenu_container .megamenu .col_3 {
    width: 92%;
    margin-left: 4%;
    margin-right: 4%;
  }
}
/* Spacing Fix */
.container#bodyContainer {
    margin-top: 10px;
}
.container--homepage {
    display: block;
}
.container.container--footer {
    margin: auto;
}
/* END OF MEGA MENU */


/* HOMEPAGE - SLIDER */
.slide img {
  border: none;
  background: white;
  box-shadow: none;
}
.slider {
  margin-top: 0px;
}
.slide.style-c .slide__image img {
    height: 60vh;
}
.sticky-logo img {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s ease-in-out;
}

.show-sticky-logo {
  visibility: visible !important;
  opacity: 1 !important;
  transition: opacity 0.3s ease-in-out;
}
/* END OF MEGA MENU */