.menu{
    margin-right: 50px;
    display: none;
    position: relative;
    z-index: 98;
    margin-top: 5px;
}
@media (max-width: 1280px){
    .menu{
        display: block;
    }
    .nav.nav-pills{
        display: none;
    }
    header{
        height: 74.5px !important;
    }
}

@media (max-width: 768px){
    .me-md-auto {
        margin-right: auto !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 450px){
    .logo-container {
        padding-right: 33.5px !important;
    }
}
@media (max-width: 438px){
    .container{
        height: 125px;
    }
    .menu{
        margin-top: 25px;
        margin-left: 10px;
      }
}

.btn1 {
    position: absolute;
    width: 30px;
    height: 30px;
    transition-duration: 0.5s;
}
.btn1 .icon-left {
    transition-duration: 0.5s;
    position: absolute;
    height: 6px;
    width: 15px;
    top: 12px;
    background-color: rgb(222, 3, 3);
    left: 0px;
}
.btn1 .icon-left:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 6px;
    background-color: rgb(222, 3, 3);
    content: "";
    top: -12px;
}
.btn1 .icon-left:after {
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 6px;
    background-color: rgb(222, 3, 3);
    content: "";
    top: 12px;
}
.menu:hover {
    cursor: pointer;
}
.btn1 .icon-right {
    transition-duration: 0.5s;
    position: absolute;
    height: 6px;
    width: 15px;
    top: 12px;
    background-color: rgb(222, 3, 3);
    left: 15px;
}
.btn1 .icon-right:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 6px;
    background-color: rgb(222, 3, 3);
    content: "";
    top: -12px;
}
.btn1 .icon-right:after {
    transition-duration: 0.5s;
    position: absolute;
    width: 15px;
    height: 6px;
    background-color: rgb(222, 3, 3);
    content: "";
    top: 12px;
}
.btn1.open .icon-left {
    transition-duration: 0.5s;
    background: transparent;
}
.btn1.open .icon-left:before {
    transform: rotateZ(45deg) scaleX(1.4) translate(3px, 3px);
    background-color: white;
}
.btn1.open .icon-left:after {
    transform: rotateZ(-45deg) scaleX(1.4) translate(3px, -3px);
    background-color: white;
}
.btn1.open .icon-right {
    transition-duration: 0.5s;
    background: transparent;
}
.btn1.open .icon-right:before {
    transform: rotateZ(-45deg) scaleX(1.4) translate(-3px, 3px);
    background-color: white;
}
.btn1.open .icon-right:after {
    transform: rotateZ(45deg) scaleX(1.4) translate(-3px, -3px);
    background-color: white;
}