@charset "UTF-8";

#header {
    position: fixed;
    top: 5vw;
    left: 7vw;
    z-index: 100;
    display: flex;
    align-items: center;
}

#header .navbar-brand {
    position: absolute;
    width: 160px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/logo.svg);
}

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

.navbar.Sticky {
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s;
}

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

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

.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;
    top: 50%;
    transition: all 0.3s 0.3s ease-in;

}

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

@media(max-width: 991px) {
    .navbar {
        background-color: #fff;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
        padding: 10px;
    }

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

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



}






.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;
}

#DropMenu.fancybox-content {
    width: 70%;
}

.dropdown-item {
    padding: 0;
}



.dropdown-menu {
    padding: 30px;
    width: 350px;

}

.dropdown-menu h6 {
    /*font-size: 18px;*/
    opacity: 0.78;
    color: #333;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    /*font-size: 14px;*/
    line-height: 2;
}

.dropdown-item span {
    display: none;
}



@media(max-width: 991px) {
    .dropdown-menu {
        max-width: 100%;
        width: 100%;
    }
    .dropdown-menu h6 {
        text-align: center;

    }

    .dropdown-menu .col-lg-6+.col-lg-6 {
        margin-top: 2rem;
    }
}