/* add new style for <marquee> and remove the inline styles */
marquee {
    float: left;
    font-size: 20px;
    color: #4c0101;
    font-weight: bold;
    padding: 8px 0;
}

#top-cart > #top-cart-trigger {
    color: #fee799;
    border: none;
    border-radius: 15px;
    display: inline-block;
    background-color: #4c0101;
    width: 72px;
    height: 44px;
    position: relative;
    padding: 8px 12px;
}

    #top-cart > #top-cart-trigger > i {
        font-size: 2em;
    }

    #top-cart > #top-cart-trigger > span {
        position: absolute;
        top: -5px;
        right: -4px;
        background-color: #fee799;
        color: #4c0101;
        font-size: 14px;
        font-weight: 700;
        line-height: 16px;
        text-align: center;
        display: block;
        padding: 2px 10px;
        border-radius: 8px;
    }

.donate-now {
    background-color: #fdc319;
    padding: 32px 0;
    background: rgb(253,195,25);
    background: linear-gradient(0deg, rgba(253,195,25,1) 0%, rgba(255,255,255,1) 50%, rgba(253,195,25,1) 100%);
    margin-bottom: 2em;
    text-align: center;
}

    .donate-now > h2 {
        display: inline-block;
        font-size: 3em;
        font-weight: 700;
        color: #4b0002;
        vertical-align: middle;
        margin: 0 .5em;
    }

.btn-primary.donate-button {
    color: #fff;
    background-color: #4b0002;
    border-radius: 12px;
    display: inline-block;
    padding: 12px 16px;
}

    .btn-primary.donate-button > span {
        display: inline-block;
        vertical-align: middle;
        font-size: 32px;
        font-weight: 700;
        font-family: sans-serif;
    }

    .btn-primary.donate-button > svg {
        width: 42px;
        margin-right: 12px;
        vertical-align: middle;
        fill: #fff;
    }

.gradient-background {
    background: linear-gradient(300deg,#fdc319,#ffecb1,#fdc319,#edb400,#fdc319,#ffeaab,#fdc319);
    background-size: 420% 420%;
    animation: gradient-animation 10s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Animation property */
.donate-button {
    animation: wiggle 3s linear infinite;
}

/* Keyframes */
@keyframes wiggle {
    0%, 10% {
        transform: rotateZ(0);
    }

    15% {
        transform: rotateZ(-3deg);
    }

    20% {
        transform: rotateZ(3deg);
    }

    25% {
        transform: rotateZ(-3deg);
    }

    30% {
        transform: rotateZ(2deg);
    }

    35% {
        transform: rotateZ(-2deg);
    }

    40%, 100% {
        transform: rotateZ(0);
    }
}

.note-visit {
    background-color: #63636320;
    padding: 16px 32px;
    border-radius: 16px;
    margin: 0 32px 32px 32px;
}

    .note-visit h3 {
        color: #035772;
        font-weight: 700;
        text-align: center;
    }

    .note-visit p {
        font-weight: 400;
        color: #035772;
        text-align: center;
        /* margin: 0 10%; */
    }

@media screen and (min-width: 1200px) {
    .img-responsive {
        width: 85%;
        margin: 1.5em auto;
    }
}

@media screen and (max-width: 1199px) {
    .img-responsive {
        width: 100%;
        margin: 1.5em auto;
    }
}

/* theme-style.css:3848 */
.contact-buttons {
    display: flex;
    gap: 10px;
    text-align: right;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

/* theme-style.css:4338 */
#top-section #peace-menu {
    border-radius: 0;
    background-color: #4c0101;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    position: relative;
    z-index: 99;
    left: 0;
    right: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}

/* theme-style.css:4018 */
.nav-link,
.navbar-nav .nav-link {
    padding: 8px 12px; /* Adjust the padding to control the height */
    border: none;
    border-radius: 8px;
    /* border-bottom: 2px solid transparent; */ /* Add a bottom border for separation */
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    color: black; /* Text color */
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 10px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 16px; /* Adjust the font size */
    font-weight: bold; /* Make it bold */
}

    /* theme-style.css:4036 */
    .nav-link:hover,
    .navbar-nav .nav-link:hover {
        background-color: #4c0101; /* Change to the desired highlight color on hover */
        border-color: #4c0101; /* Change to the desired border color on hover */
        color: #fff; /* Change to the desired text color on hover */
        transform: translateY(-2px); /* Add a subtle 3D effect on hover */
    }

/* theme-style.css:4105 */
.navbar-nav .nav-item .nav-link {
    margin: 0;
    /*: #4c0101;*/
}

/* style.css:406 */
/* Small menu. 
---------------------------------------*/
ul.dropdown-menu {
    background-color: #4c0101;
    border-radius: 0;
    color: #686664;
}
