body {
    padding-top: 90px;
}
.navbar-inverse {
    height: 90px;
    background-color: rgba(238, 115, 46, 1)
}
.navbar .container {
    height: 90px;
}
.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    width: 164px;
    height: 66px;
    margin: 12px 0 0;
    padding: 0;
    overflow: hidden;
}
.navbar-brand img {
    width: 100%;
    height: auto;
}
.navbar-inverse .navbar-nav > li > a {
    color: #fff;
    font-size: 18px;
}
.navbar-collapse {
    margin-top: 22px;
    margin-left: 22px;
    padding-right: 30px;
}
.right {
    float: right;
    font-size: 28px;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.right .icon {
    width: 30px;
    height: 26px;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    color: #FFF;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    margin-right: 10px;
}
.right .icon>svg {
    width: 100%;
    fill: currentColor;
}
.animate__tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}
@-webkit-keyframes tada{
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@media (min-width: 768px) {
    .navbar-right {
        margin-right: 20px;
    }
}
