.icon-arrowe {
  margin-left: 0.5rem;
  color: #70aedf;
  font-size: 20px;
}


.menu-wrapper-mobile {
  background: #fff;
  border-top: 5px solid #f1f1f1;
  height: 1000px;
  left: 0;
  position: absolute;
  right: 0;
  top: 80px;
  display: none;
}

.menu-wrapper-mobile-active {
  display: block !important;
}

.menu-wrapper-mobile.visible {
  visibility: visible;
}

.logo {
  /*padding: 5px;
  margin-left: auto;
  margin-right: 2%;*/
}

.metro-blue {
  color: #70aedf;
}


.linke {
  color: #1c3471;
  font-weight: bold;
}



.box-borders {
   border-top: 0.5px solid #d4d4d4; 
   border-bottom: 0.5px solid #d4d4d4;
   border-left: 0.5px solid #d4d4d4;
   border-right: 0.5px solid #d4d4d4;
}


.linke {
  color: #1c3471;
  font-weight: 600;
}
.menu-active {
  box-shadow: 0px 6px 0px inset #f9ae00, 2px 5px 0px #FFF;
  color: #f9ae00;
}

.icon-arrowe.rotate-up {
    color: #f9ae00;
    -moz-transform:rotate(180deg);
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
}

.icon-arrowe{
    -moz-transition: all .1s linear;
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}


.rotate{
    -moz-transition: all 1s linear;
    -webkit-transition: all 2s linear;
    transition: all 2s linear;
}

.rotate.down{
    -moz-transform:rotate(180deg);
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
}


/* HAMBURGER */

.button_container {
  height: 15px;
  width: 15px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
  /*  right: 2%;*/
  transform: translateY(-40%);
}

.button_container:hover {
  opacity: 0.7;
}

.button_container.active .top {
  -webkit-transform: translateY(10px) translateX(0) rotate(25deg);
  transform: translateY(10px) translateX(0) rotate(25deg);
  background: #fff;
}

.button_container.active .middle {
  opacity: 0;
  background: #fff;
}

.button_container.active .bottom {
  -webkit-transform: translateY(-10px) translateX(0) rotate(-25deg);
  transform: translateY(-10px) translateX(0) rotate(-25deg);
  background: #fff;
}

.button_container span {
  background: #70aedf;
  border: none;
  height: 2px;
  width: 100%;
  /* oryg */
  position: absolute;
  top: 0px;
  left: 0;
  /* oryg end */
  transition: all 0.35s ease;
  cursor: pointer;
}

.button_container span:nth-of-type(2) {
  top: 5px;
}

.button_container span:nth-of-type(3) {
  top: 10px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  z-index: 50;
}

.overlay:before {
  content: "";
  background: #1c3471;
  left: -55%;
  top: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  transition: left 0.35s ease;
}

.overlay:after {
  content: "";
  background: #1c3471;
  right: -55%;
  top: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  transition: all 0.35s ease;
}

.overlay.open {
  opacity: 0.9;
  visibility: visible;
  height: 100%;
}

.overlay.open:before {
  left: 0;
}

.overlay.open:after {
  right: 0;
}

.overlay.open li {
  -webkit-animation: fadeInRight 0.5s ease forwards;
  animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
}

.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: 0.65s;
  animation-delay: 0.65s;
}

.overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 50px;
  font-family: "Vollkorn", serif;
  font-weight: 400;
  text-align: center;
  z-index: 100;
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}

.overlay ul li {
  display: block;
  height: 25%;
  height: calc(100% / 4);
  min-height: 50px;
  position: relative;
  opacity: 0;
}

.overlay ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
  width: 100%;
}

.overlay ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 3px;
  background: #fff;
  transition: 0.35s;
}

  .icon-globe-mobile {
  margin-left: auto;
/*  align-self: center;*/
  color: #70aedf;
/*    color: red;*/
    position: absolute;
    top:30%;
    left: 90%;
/*  margin-right: 1rem;*/
  font-size: 30px;
}

.icon-mores {
  position: absolute;
  left: 87%;
  align-self: middle;

}

.chevron-right-style {
  color: #70aedf;
  font-size: 19px;
}


.nav__hamburger {
  display: none;
  position: relative;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}



/* TABLET  */
@media (min-width: 768px) and (max-width: 1075px) {
  .logo {
    /*    margin: 0 auto;*/
    width: 100px;
  }

  .menu-click {
    margin: 0 auto;
  }

  .logo-ham {
    /*    margin: 0 auto;*/
    padding: 20px;
    width: 80px;
  }

  .search-styled {
    font-size: 25px;
    padding-top: 4%;
    padding-left: 10%;
  }

  .menu-styled {
    font-size: 20px;
    padding-top: 8%;
    padding-left: 2%;
    color: #1c3471;
    font-weight: 600;
  }

  .chevron-styled {
    font-size: 18px;
    padding-top: 17%;
    padding-left: 3%;

  }

  .menu-mobile-click {
    display: flex;
    padding-top: 2%;
    margin-left: 10px;
    cursor: pointer;
  }


  .button_container {
    margin-top: 15px;
    /* koniec moich */
    height: 15px;
    width: 15px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.25s ease;
    /*  right: 2%;*/
    transform: translateY(-50%);
  }

  .nav__hamburger {
    display: flex;
    width: 100%;
    background: #fff;
    height: 80px;
    box-shadow: 1px 2px 11px #000;
  }

  .nav__hamburger ul li {
    font-weight: normal;
    font-size: 12px;
    padding: 0 25px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }

  .nav-desktop {
    display: none !important;
  }

  .logo__hamburger {
    margin-left: 5%;
  }

}


/* SMALL */
@media (max-width: 767px) {
  .button_container {
    margin-top: 10%;
    margin-right: 7%;
  }

  .logo-ham {
    /*    margin: 0 auto;*/
    /*    padding-left: 5px;*/
    padding-bottom: 20px;
    padding-top: 20px;
    width: 50px;
  }

  .logo {
    /*    margin: 0 auto;*/
    /*width: 80px;*/
  }

  .search-styled {
    font-size: 25px;
    padding-top: 8%;
    padding-left: 8%;
    ;
    padding-right: 5%
  }

  .menu-styled {
    font-size: 20px;
    /* padding-top: 6%; */
    padding-left: 2%;
    color: #1c3471;
    font-weight: 600;
    margin-bottom: 0 !important;
  }

  .chevron-styled {
    font-size: 18px;
    /* padding-top: 30%; */
    padding-left: 3%;

  }

  .menu-mobile-click {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding-top: 28%;
    padding-left: 65%; */
    cursor: pointer;
  }


  .nav__hamburger {
    display: flex;
    width: 100%;
    background: #fff;
    height: 80px;
    box-shadow: 1px 2px 11px #000;
  }

  .nav__hamburger ul li {
    font-weight: normal;
    font-size: 12px;
    padding: 0 25px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }

  .nav-desktop {
    display: none !important;
  }

  .logo__hamburger {
    margin-left: 5%;
  }
}

.menu-click {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-click a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  text-decoration: none;
}

.active-arrow {
  transform: rotate(180deg);
}

.menu-click.menu-active {
  border-left: 1px solid #f1f1f1;
  position: relative;
  transform: scale(1.05);
  border-right: 1px solid #f1f1f1;
}

.sub-menu-m {
  display: none;
}

.sub-menu-active {
  display: block !important;

}

.suber-menu-active {
  display: none;
}

.sub-back-link {
  color: #888;
}
