.header {
    position: absolute;
    z-index: 333;
    width: 57%;
    right: 0;
    top: 0px;
}
.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-align: center!important;
    align-items: center!important;
    -ms-flex-pack: justify!important;
    justify-content: space-between!important;
    padding: 40px;
}
.navigation {
  position: relative;
  z-index: 333;
}
.sticky .navigation {
  position: fixed;
  background: rgba(0,0,0,0.50);
  z-index: 333;
  top: 0;
}
.navigation__link {
  position: relative;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 8px 20px;
  font-size: 16px;
  z-index: 1;
  text-transform: uppercase;
  font-family: 'Cairo', sans-serif;
}
.navigation__link:before {
    content: "";
    background-color: #2900a5;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(0);
    transition: 0.5s ease all;
    z-index: -1;
}
.navigation__link:hover:before {
    transform: scale(1);
    transition: 0.5s ease all;
}
.navigation__link:hover {color: #fff;}
.navigation__link.active {
  color: white;
}
.navigation__link.active:before {
    transform: scale(1);
    transition: 0.5s ease all;
}
@media screen and (max-width: 1440px) { 
.d-flex {
    padding: 40px 15px;
}
.navigation__link {
    padding: 8px 5px;
    font-size: 14px;
}
}
@media screen and (max-width: 1280px) { 
.navigation__link {
    padding: 8px 5px;
    font-size: 13px;
}
}
@media screen and (max-width: 1024px) { 
.navigation__link {
    padding: 8px 5px;
    font-size: 14px;
}
.d-flex {
    padding: 40px 10px 40px 10px;
}
}
.menu {
    width: 100%;
    background: #7fbfff;
    height: auto;
    position: absolute;
    right: 0px;
    z-index: 99999;
    transition: 0.7s ease transform;
    transform: translateX(-200vw);
    transition-delay: 0.5s;
    overflow: auto;
    top: 126px;
    left: 0px;
    margin: 0 auto;
    padding: 15px 0;
}
.menu-open {
    transform: translateX(0vw);z-index: 99999;
}
@media screen and (max-width: 991px) { 
.navigation__link {
    padding: 10px 15px;
    font-size: 15px;
    display: block;
    width: 100%;
}
#menu-toggle span {
    display: block;
    background: #2900a5;
}
#menu-toggle {
  width: 111.59px;
  height: 23px;
  position: relative;
  cursor: pointer;
  border-radius: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#menu-toggle #hamburger {
  position: absolute;
  height: 22px;
  width: 30px;
}
#menu-toggle #hamburger span {
  width: 30px;
  height: 2px;
  position: relative;
  top: 0px;
  margin: 0px auto;
  margin-bottom: 8px;
}
#menu-toggle #hamburger span:nth-child(1) {
  transition-delay: .5s;
}
#menu-toggle #hamburger span:nth-child(2) {
  transition-delay: .625s;
  width: 30px;
}
#menu-toggle #hamburger span:nth-child(3) {
  transition-delay: .75s;
}
.d-flex {
    padding: 40px 20px;
}
.header {
    position: relative;
    width: 100%;
    background: #fff;
}
/*.header.sticky {position: fixed;}*/
}
@media screen and (max-width: 767px) { 
.menu {
    top: 86px;
}
.d-flex {
    padding: 20px 15px;
}
}
@media screen and (max-width: 400px) { 
.logo {
    width: 165px;
    padding: 0 20px;
}
.menu {
    top: 76px;
}
}
