ul ul li a{
    padding: 0.5rem 0.9375rem;
    min-width: 1rem;
    max-width: 17.5rem;
    background: #fff;
    color: #635e5c !important;
}
nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}
nav ul li{
    display: inline-block;
    background-color: #fff0;
}
 nav ul li a:hover{
    color: inherit !important;
}
nav a{
    display: block;
    padding: 0 10px;
    color: #635e5c;
    font-size: .8125rem;
    line-height: 1.923;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
}
/* Hide Dropdown by Default*/
nav ul ul {
    display: none;
    position: absolute;
    top: 27px !important;
    margin-left: -14%;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}
/* hover 
nav a:hover{
    background-color: red;
}*/
/* Display Dropdown on Hover */
nav ul li:hover > ul {
    display: inherit;
}
/* Fisrt Tier Dropdown */
nav ul ul li{
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
    text-align: left;
    transform: translateX(-20px);
    transition: .4s ease-in-out;
}
/* ============ Second, Third and More Tiers ===========*/
nav ul ul ul li {
    font-size: 15px;
    position: relative;
    top: -27px !important;
    left: 210px;
    text-align: left;
}
nav ul ul ul li a{
    font-size: .8125rem;
}
nav ul ul li a:hover{
    color: #fff !important;
    background: #df7a00 !important;
    text-decoration: none !important;
}
nav ul ul ul li a:hover{
    color: #fff !important;
    background: #df7901 !important;
    text-decoration: none !important;
}
body a.cta_button {
  margin-left: 10px !important;
}
a.cta_button img {
    width: 20px !important;
    margin-top: -5px !important;
}

.header-wrapper{
  background-color: white;
}

@media (max-width: 1140px) {
  .menu--desktop {
    display: none !important;
  }


.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #df7119;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex; 
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); 
}

.back-to-top:hover {
    background-color: #948a7e;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
