﻿
header{
    border-bottom:0;
    padding:0;

}
.navbar {
    padding: 11px 25px;
    background-color: #fff;
    margin-bottom: -94px;
    border-bottom: 2px solid #f4a237;
}

.mini-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: -28px;
}

.navbar-toggler {
    color: #f4a237;
    font-size: 20px;
    border: 1px solid transparent;
    background-color: #fff;
}
    .navbar-toggler span {
        cursor: pointer;
    }


    .navbar-collapse.show {
        max-height: 135px; 
    }


.navbar-nav {
    list-style-type: none;
    padding-left: 0px;
}
.nav-item {
    margin: 15px 0;
}
    

.nav-link {
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    display: block;
    text-transform: uppercase;
    color: #000;
}
.nav-link:hover{
    color:#fff;
}

.banner {
    width: 100%;
    padding-top: 112px;
}
.pullDown {
    /*transition-duration: .5s;*/
    transition: all .5s ease-out;
    /*transition-timing-function: ease-out;*/
    transition-property: height;
}
/*@keyframes pullDown {
    0% {
        transform: scaleY(0.1);
    }

    100% {
        transform: scaleY(1);
    }
}*/

/*@-webkit-keyframes pullDown {
    0% {
        -webkit-transform: scaleY(0.1);
    }
    100% {
        -webkit-transform: scaleY(0.98);
    }
}*/


/*.pullUp {
    transition-duration: .5s;
    transition-timing-function: ease-out;
    transition-property: height;
}

@keyframes pullUp {
    0% {
        transform: scaleY(0.1);
    }

    100% {
        transform: scaleY(1);
    }
}

@-webkit-keyframes pullUp {
    0% {
        -webkit-transform: scaleY(0.1);
    }

    100% {
        -webkit-transform: scaleY(1);
    }
}*/


