@charset "UTF-8";

.navbar {
    /*padding: .5rem auto;*/
    /*background-color: red;*/
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.4s;
}

.navbar.Sticky {
    position: fixed;
    top: 0;
    background-color: rgb(2 62 58 / 90%);
    transition: all 0.4s;
}

.navbar-brand {
    display: block;
    z-index: 100;
}



.navbar-brand img {
    height: 4rem;
    transition: all 0.5s;
}

.navbar.Sticky .navbar-brand img {
    height: 3rem;
    transition: all 0.5s;
}


.navbar-nav .nav-link {
    font-size: 1.2rem;
    text-align: center;
    min-width: 110px;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.4);

}

.navbar-light .navbar-nav .nav-link:hover {
    color: #ffc074;
}


.nav-link b {
    display: block;
    transition: all 0.3s ease-in;
    font-weight: normal;
}

.nav-link span {

    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: all 0.3s ease-in;
    opacity: 0;

}

.nav-link:hover b {

    opacity: 0;
    /*display: none;*/
    transform: translateY(-10px);
    transition: all 0.3s ease-in;
}

.nav-link:hover span {
    opacity: 1;
    display: block;
    top: 50%;
    transition: all 0.3s 0.3s ease-in;

}


.navbar-light .navbar-toggler {
    border: 0.6px solid #adadad;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 100;
}

.navbar-toggler.collapsed span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    margin-bottom: 3px;
    background-color: #fff;
}

.navbar-toggler span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    margin-bottom: 3px;
    background-color: #fff;
}


.navbar-collapse.show {
    padding-top: 60px;
    padding-bottom: 10%;
}

.navbar.show {
    background-color: #003c38;

}

.dropdown-menu {
    border-radius: 0;
}

@media(max-width: 991px) {
    .navbar {
        position: fixed;
    }
    .navbar.show{
        box-shadow: -6px 7px 20px 0px rgba(0,0,0,0.4);

    }
    .navbar-light .navbar-toggler{
        width: 40px;
        height: 40px;
    }


    .navbar-light .navbar-nav .nav-link {
        color: #fff !important;
    }

    .dropdown-item {
        text-align: center;
    }

    .navbar-brand img {
        height: 2.6rem !important;
    }

    .navbar-brand {
        width: 20%;
        height: 10%;
    }
    .nav-link b{
        font-size: 10px;
        opacity: 0.4;
    }

.nav-link span{
    position: relative;
    transform: none;
    opacity: 1;
    left: auto;
    top: auto;


}
.navbar-light .navbar-nav .nav-link{
    margin-bottom: 1rem;
}



}






.SocialBox {
    position: fixed;
    bottom: 20px;
    right: 50px;
    /*width: 20%;*/
    z-index: 10;

}

.SocialBox .item {
    display: block;
    max-width: 30px;
    margin-bottom: 10px;
}

.SocialBox img {
    width: 100%;
}

.Social a {
    width: 30%;
    max-width: 40px;
    padding-right: 10px;
    display: inline-block;
}

.copyright_fixd {
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    position: fixed;
    font-size: 5px;
    color: #999;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}