::-moz-selection 
{ /* Code for Firefox */
    color: #212529;
    background: #F9C74F;
}
  
::selection 
{
    color: #212529;
    background: #F9C74F;
}

#navBarFillSpace
{
    width: 100%;
    height: 105px;
    display: block;
    /* background-color: #F94144; */
}

.navbar 
{
    transition: all 0.3s ease-out;
}

.nav-link
{
    transition:  all 0.3s ease-out !important;
}

.nav-link:hover
{
    color: #F94144 !important;
}

.active
{
    font-weight: 500;
}

.navbar-item-text
{
    font-size: 20px; /*18px*/
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
}

#navbar-bg
{
    z-index: -1;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    background-color: white;
    transition: all 0.3s ease-out;
    /* opacity: .9; */
}

.navbar-nav
{
    /* width: 520px; */
    width: 600px;
}

#centralLogo
{
    transition: all 0.3s ease-out;
}

.transparent-cover
{
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.7;   
    transition: all 0.2s ease-out;
}

.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
.z-4 { z-index: 4; }
.z-5 { z-index: 5; }

.text-style-1 { font-family: 'Rubik', sans-serif; }
.text-style-2 { font-family: 'Josefin Sans'; }
.text-style-cursive { font-family: 'Dancing Script', cursive; }

.fw-medium { font-weight: 500; }

#footer
{
    background-image: url('../Assets/Images/Footer/footerBg7_green_compressed.png');
    background-size: cover;
    background-position: top left;
    /* height: 80%; */
    height: fit-content;
}

.socialMediaIcon
{
    transition: all 0.2s;
    cursor: pointer;
}

.socialMediaIcon:hover
{
    transform: scale(1.2);
}

.search-item-link
{
    text-decoration: none;
}

.search-item
{
    transition: all .3s;
}

.search-item:hover
{
    border-color: #90BE6D !important;
}

#backToTopArr
{
    transition: all .2s;
    transform:  translate(200px, 0);
    opacity: 0;
    background-color: #ffffff;
}

#backToTopArr:hover
{
    background-color: #ff9fa0;
    transform:  translate(0, -3px) !important;
}

@media (max-width: 1200px) 
{
    .navbar-nav
    {
        width: auto;
    }

    #footer
    {
        height: fit-content;
    }

    #navBarFillSpace
    {
        height: 10%;
    }

    #backToTopArr:hover
    {
        background-color: #ffffff !important;
        transform:  translate(0, 0px) !important;
    }

    #backToTopArr:active
    {
        background-color: #ff9fa0 !important;
        transform:  translate(0, -5px) !important;
    }
}