/*
* navbar.CSS
***************************************************************************** */
.topnav {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    background: #3596b0;
    /* min-height: 80px; */
    /* margin: .25rem 0; */
    margin-bottom: 0;
    padding: 0;
    padding: .5rem 0;
    padding-bottom: .75rem;
    border-bottom: solid 4px #f9be34;
}

.topnav a {
    /* color: #343434; */
    color: white;
    transition: all 75ms;
    /* font-weight: bold; */
}

.topnav a:hover {
    color: whitesmoke;
    text-decoration: underline;
    /* transform: scale(1.035); */
}

#pay-button {
    display: inline-block;
    color: black;
    border: 1px solid #f9be34;
    background-color: #f9be34;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 1.5rem;
    font-weight: bold;
}

#pay-button:hover {
    background-color: #d5a32e;
    color: black;
    border: 1px solid #c49424;
    transform: scale(1.1);
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    margin-bottom: 0;
    padding: 0;
    /* min-height: 60px; */
    width: 1170px;
    margin: auto;

    /* display:flex; */
    /* flex-direction: row;
    justify-content: space-between;
    align-items:center; */
    /* max-height: .5rem; */
}

/* Equivalent media query for .d-none.d-md-block */
@media (max-width: 767.98px) {
    .d-md-block {
        display: none !important;
    }
}

/* Equivalent media query for .d-block.d-md-none */
@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
}

.logo-square {
    max-height: 64px;
    
}

.logo-banner {
    object-fit: contain;
    
    /* transition: linear all 0.2s;
    display: block; */
    /*background-size: contain;*/
    /*background-image: url(/images/originalyp-banner.png);*/
    /*background-repeat: no-repeat;*/
    /* width: 133px; */
    /* height: 60px; */
    /* flex-shrink: 1;
    margin: 4px 0; */
}

/* ------------------------------------------------------------------------------ */
/* animations: will move later to animations file */
/* ------------------------------------------------------------------------------ */
.slide-in {
    animation-name: slide;
    animation-duration: 0.5s;
    animation-fill-mode: backwards;
}

@keyframes slide {
    from {
        margin-left: -2rem;
    }
    to {
        margin-left: 0rem;
    }
}


/* ========================================================================== */
/* Media Breakpoints */
/* ========================================================================== */
@media only screen and (max-width: 1200px), (max-device-width: 1200px) {
    .container-nav {
        width: 95%;
        margin: auto;
    }
}

