// Assigning the above animation to all dropdown menus
.dropdown-menu{
    &.show{
        -webkit-animation: fadeIn 0.3s alternate; /* Safari 4.0 - 8.0 */
         animation: fadeIn 0.3s alternate;
         
    }
    
}

// Mega Menu adjustments
.nav-item.dropdown.dropdown-mega {
    position: relative;
    .dropdown-menu {
        width: 90%;
        top: auto;
        left: 5%;
		
    }
}

.dropdown:hover>.dropdown-menu {
 display: block;

}
.dropend:hover>.dropdown-menu {
 display: block;
  margin-left:180px;
  margin-top:-40px;
 
}

// Complete styles for main navbar toggler and hamburger menu
.navbar-toggler{
    border: dotted;
    padding: 0;
    outline: dotted;
    &:focus{
        box-shadow: none;
    }
    .hamburger-toggle{
        position: relative;
        display: inline-block;
        width: 50px;
        height: 50px;
        z-index: 11;
        float: right;
        .hamburger {
            position: absolute;
            transform: translate(-50%, -50%) rotate(0deg);
            left: 50%;
            top: 50%;
            width: 50%;
            height: 50%;
            pointer-events: none;
            span {
                width: 100%;
                height: 4px;
                position: absolute;
                background: #333;
                border-radius: 2px;
                z-index: 1;
                transition: transform 0.2s cubic-bezier(0.77,0.2,0.05,1.0), background 0.2s cubic-bezier(0.77,0.2,0.05,1.0), all 0.2s ease-in-out;
                left: 0px;
                &:first-child{
                    top: 10%;
                    transform-origin: 50% 50%;
                    transform: translate(0% -50%) !important;
                }
                &:nth-child(2){
                    top: 50%;
                    transform: translate(0,-50%);
                }
                &:last-child{
                    left: 0px;
                    top: auto;
                    bottom: 10%;
                    transform-origin: 50% 50%;
                }
            }
            &.active{
                span {
                    position: absolute;
                    margin: 0;
                    &:first-child{
                        top: 45%;
                        transform: rotate(45deg);
                    }
                    &:nth-child(2){
                        left: 50%;
                        width: 0px;
                    }
                    &:last-child{
                        top: 45%;
                        transform: rotate(-45deg);
                    }
                }
            }
        }
    }
}
.navbar {
    background-color: #34495E ;
    border-bottom: 5px solid #0e7fa5;
}
.navbar .navbar-nav .nav-link {
    color: white;
    
	

}
.navbar .navbar-nav .nav-link:hover {
	color:white;
    background-color: #34495E ; 
   
}

.navbar .navbar-nav li li:hover ul {
    color:white;
    background-color: #34495E ; 
}
.navbar-nav > li{
  padding-left:1px;
  padding-right:1px;
}

.nav-tabs .nav-link.active
{
    color: #fff;
    background-color: #052c65;
    border-top-left-radius: .25rem;
border-top-right-radius: .25rem;
    
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #052c65;
  border-color: #052c65;
}

.back
{
	background-color: #F8F9F9;
	color:black;
}


.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
    padding: 30px 50px;
}

.gallery-container h1 {
    text-align: center;
    margin-top: 50px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    margin: 25px auto;
    font-size: 18px;
    color: #999;
}

.tz-gallery {
    padding: 40px;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '\e003';
   
    z-index: 9000;
    transition: 0.4s;
}


.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}
.box {
  
  background-color: #212F3C;
  color: #fff;
  padding: 0px;
  position: relative;
  margin: 0px;
  float: left;
}
.box.arrow-right:after {
  content: '';
  position: absolute;
  right: -4px;
  top: 0px;
  border-top: 18px solid transparent;
  border-left: 4px solid #212F3C;
  border-bottom:18px solid transparent;
}
@media(max-width: 768px) {
    body {
        padding: 0;
    }
}




















