body {
    position: relative;
    font-family: "Montserrat", sans-serif;
    background-image: url("/images/aba-bg-desktop.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: black;
    cursor: default;
}

@media (max-width: 992px) {
    body {
        background-image: url("/images/aba-bg-mobile.png");
        background-position: top right;
    }
}

.gold-button {
    background: linear-gradient(
        to right,
        rgb(166, 119, 44) 0%,
        rgb(240, 216, 138) 20%,
        rgb(240, 216, 138) 80%,
        rgb(166, 119, 44) 100%
    );
    color: #111;
    border: none;
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.gradient-text {
    background: linear-gradient(
        to right,
        rgb(73, 53, 24) 20%,
        rgb(250, 233, 134) 50%,
        rgb(250, 233, 134) 50%,
        rgb(73, 53, 24) 80%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Optional for modern Firefox */
    background-clip: text;
    color: transparent;
    font-family: "Playfair Display", serif;
}

.text-gold {
    color: rgb(233, 187, 82);
    font-family: "Playfair Display", serif;
    font-weight: 300;
}

.text-grey {
    color: rgba(0, 0, 0, 0.4);
}

#main-navbar {
    width: 100%;
    z-index: 999;
    position: relative;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out, box-shadow 0.3s ease-in-out;
    padding: 0px !important;
}

#main-navbar.nav-visible {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    transform: translateY(-100%);
    /* start off-screen */
    animation: slideDown 0.5s ease-in-out forwards;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar {
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0px;
    background-color: #222222;
    color: #999;
    padding: 30px 20px;
}

.navbar .dropdown-menu {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
    color: #222222;
    padding: 37px 0px;
}
/*
.navbar-nav .nav-link:not(.dropdown-toggle):hover,
.navbar-nav .nav-link.dropdown-toggle:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
} */

.custom-menu-button:hover {
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
}

.navbar-nav .dropdown-item {
    font-weight: 500;
    color: #999;
    font-size: 14px;
    margin: 10px;
    position: relative;
}

.custom-menu-button {
    font-weight: 400;
}

.animate-block {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar-brand {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-right: 0px;
}

.logo {
    width: 282px;
    height: auto;
    padding: 4px 0;
    max-width: 100%;
}

a.custom-menu-button {
    background-image: linear-gradient(
        to right,
        #f28800,
        #f4110d,
        #62366f,
        #1f3f96
    );
    border-radius: 50px;
    padding: 10px 20px !important;
    color: #fff !important;
    margin-left: 20px;
    font-size: 16px;
    text-decoration: unset;
    display: block;
    position: relative;
    margin-top: 25px;
}
a.custom-menu-button::after,
.nav-link::after,
.nav-link.dropdown-toggle::after,
.dropdown-item::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 20px;
    height: 1px;
    width: 0%;
    background: #fff;
    transition: width 0.5s ease;
}
.nav-link::after,
.nav-link.dropdown-toggle::after,
.dropdown-item::after {
    background: #222222;
    left: 0px;
    bottom: 38px;
}
@media (max-width: 1199px) {
    .nav-link::after{
        display: none !important;
    }
}
.dropdown-item::after {
    bottom: 0px;
}
.dropdown-item:focus,
.dropdown-item:hover {
    background-color: unset;
    color: white;
}
a.custom-menu-button:hover {
    background-image: linear-gradient(
        to left,
        #f28800,
        #f4110d,
        #62366f,
        #1f3f96
    );
}

a.custom-menu-button:hover::after {
    width: calc(100% - 40px); /* subtract left + right padding */
}
.nav-link:hover::after,
.nav-link.dropdown-toggle:hover::after {
    width: 100%; /* subtract left + right padding */
}

.dropdown-toggle::after {
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 0px;
}

button.navbar-toggler {
    border: 0px;
}

.offcanvas-header {
    padding: 10px 30px;
}

.offcanvas.offcanvas-start {
    width: 400px;
    max-width: 100vw;
    background-color: #fff;
    color: #000;
    z-index: 1050;
}

.offcanvas .nav-link {
    font-size: 14px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #999999;
    position: relative;
}

.offcanvas .nav-link:hover {
    color: white;
}

.offcanvas-backdrop.show {
    opacity: 0.85;
}

.offcanvas-body {
    background-color: black;
    color: white;
    padding: 20px 40px;
}

.offcanvas .toggle-sub-menu {
    position: absolute;
    top: 35px;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: hsla(0, 0%, 100%, 0.1);
    color: #fff;
    text-align: center;
    line-height: 40px;
    transform: translateY(-50%);
}

.offcanvas .toggle-sub-menu::after {
    content: "\f107";
    /* Font Awesome 'angle-down' icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.offcanvas .toggle-sub-menu.rotate::after {
    transform: rotate(180deg);
}

footer {
    font-size: 0.95rem;
    background-color: #ebebeb;
    /* if bg-light is too white */
}

footer h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 40px;
}

footer a {
    text-decoration: none;
    padding: 6px 0px;
    display: inline-block;
}

footer a:hover {
    text-decoration: underline;
}

.footer-logo {
    width: 120px;
}

.trademark-color {
    height: 15px;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #f0a400),
        color-stop(31%, #f4060e),
        color-stop(71%, #64366e),
        color-stop(100%, #2b3e91)
    );
    background: -moz-linear-gradient(
        left,
        #f0a400 0,
        #f4060e 31%,
        #64366e 71%,
        #2b3e91 100%
    );
    background: -webkit-linear-gradient(
        left,
        #f0a400 0,
        #f4060e 31%,
        #64366e 71%,
        #2b3e91 100%
    );
    background: -o-linear-gradient(
        left,
        #f0a400 0,
        #f4060e 31%,
        #64366e 71%,
        #2b3e91 100%
    );
    background: -ms-linear-gradient(
        left,
        #f0a400 0,
        #f4060e 31%,
        #64366e 71%,
        #2b3e91 100%
    );
    background: linear-gradient(
        left,
        #f0a400 0,
        #f4060e 31%,
        #64366e 71%,
        #2b3e91 100%
    );
}

@media (max-width: 1024px) {
    .dropdown-toggle::after {
        display: inline-block;
    }

    .logo {
        width: 200px;
    }

    a.nav-link.custom-menu-button {
        background-image: unset;
        border-radius: unset;
        padding: 25px 0 !important;
        margin-left: unset;
        color: rgba(255, 255, 255, 0.8);
        border-bottom: unset;
        text-align: center;
    }
}
