/* ---------- HEADER ------------- */
header {
  background-color: #175c82;
  width: 100%;
  z-index: 88888;
  color: #FFF;
}

.home header {
  position: fixed;
}

.header-top {
  height: 55px;
  -js-display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
	justify-content:flex-end;
	
}
.header-bottom {
  height: 75px;
  -js-display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
header .container {
  width: 95%;
  max-width: 95%;
}
@media only screen and (min-width: 768px) {
  header .container {
    width: 95%;
    max-width: 95%;
  }
}
header .logo-wrap {
  position: relative;
  width: 90%;
  max-width: 250px;
}
header .logo {
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
	
  width: 100%;
	z-index: 100;
}
@media only screen and (min-width: 992px) {
  header .logo {
    text-align: left;
    margin-top: -30px;
  }
}
header nav ul {
  text-align: center;
}
@media only screen and (min-width: 992px) {
  header nav ul {
    text-align: right;
  }
}
header nav ul li {
  display: inline;
  padding: 0;
  margin: 0;
  vertical-align: middle;
  line-height: 100%;
  text-align: center;
}
header nav li:after {
  content: '|';
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  padding-left: 3px;
}
header nav li:last-of-type:after {
  content: '';
  display: none;
}
header nav li {
  padding-left: 10px;
  padding-right: 10px;
}
header nav li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  color: #FFF;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-bottom: 3px;
  border: 0;
}
/* desktop navigation starts at 992 */
@media only screen and (min-width: 992px) {
  header nav li a {
    font-size: 16px;
    padding-left: .75rem;
    padding-right: .75rem;
  }
}
@media only screen and (min-width: 1200px) {
  header nav li a {
    font-size: 18px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (min-width: 1400px) {
  header nav li a {
    font-size: 20px;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}
@media only screen and (min-width: 1800px) {
  header nav li a {
    font-size: 21px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
header nav li a:visited {
  color: #FFF;
  text-decoration: none;
}
header nav li a:hover, header nav li a:focus {
  color: #e5f1f6;
  text-decoration: none;
}
header nav li.donate {
  text-align: center;
}
.header-tools-wrapper {
  -js-display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4px;
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .header-tools-wrapper {
    padding-right: 0;
  }
  .header-tools-wrapper nav {
    display: none;
  }
}
.header-tools {
  -js-display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}
@media only screen and (min-width: 992px) {
  .header-tools {
    display: none;
  }
}
.header-tools button {
  margin-left: 10px;
}



  .header-donate .btn {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 16px;
	  height: 45px;
  }

/* ==============    Hamburger button ======================= */
.close {
  opacity: 1;
}
.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
  opacity: 1;
}
.button-lines {
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
  padding: 0.5rem;
  padding-top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 9999;
  position: relative;
}
.lines {
  display: inline-block;
  height: 3px;
  width: 33px;
  border-radius: 2px;
  position: relative;
  background-color: #FFF;
}
.lines:after, .lines:before {
  background-color: #FFF;
  display: inline-block;
  height: 3px;
  width: 33px;
  border-radius: 2px;
  content: "";
  left: 0;
  position: absolute;
}
.lines:after:hover, .lines:before:hover {
  background: #FFF;
}
@media only screen and (min-width: 768px) {
  .lines {
    height: 4px;
    width: 41px;
    border-radius: 2px;
  }
  .lines:after, .lines:before {
    height: 4px;
    width: 41px;
    border-radius: 2px;
  }
}
/* hamburger button */
header button:focus {
  outline: none;
  box-shadow: none;
}
.lines:after {
  top: 10px;
}
.lines:before {
  top: -10px;
}
@media only screen and (min-width: 768px) {
  .lines:after {
    top: 12px;
  }
  .lines:before {
    top: -12px;
  }
}
.button-lines-x .lines {
  transition: background 0.3s ease;
}
.button-lines-x .lines:after, .button-lines-x .lines:before {
  transform-origin: 50% 50% 0;
  transition: top 0.3s 0.4s ease, transform 0.3s ease;
}
.button-lines-x.active .lines {
  background: transparent;
}
.button-lines-x.active .lines:after, .button-lines-x.active .lines:before {
  top: 0;
  transition: top 0.3s ease, transform 0.3s 0.3s ease;
}
.button-lines-x.active .lines:after {
  transform: rotate3d(0, 0, 1, 45deg);
}
.button-lines-x.active .lines:before {
  transform: rotate3d(0, 0, 1, -45deg);
}
/* ==============  Menu Overlay ======================= */
.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  color: #FFF;
  overflow: hidden;
  transition: 0.5s;
  z-index: 30;
}
.overlay.open {
  height: 100vh;
  bottom: 0;
  top: 0;
}
.overlay-content {
  position: relative;
  text-align: center;
  text-align: left;
  height: 100%;
  padding-top: 200px;
  -js-display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(to bottom, #175c82 0%, #175c82 50%, #145275 100%);
}
@media only screen and (min-width: 576px) {
  .overlay-content {
    padding-top: 160px;
  }
}
.mobilemenu ul {
  text-align: center;
}
@media only screen and (min-width: 576px) {
  .mobilemenu ul {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .mobilemenu ul li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid-column;
  }
}
.mobilemenu ul li {
  line-height: 147%;
  list-style: none;
}
.mobilemenu ul li a, .mobilemenu ul li a:visited {
  font-size: 22px;
  color: #FFF;
  font-weight: 600;
  display: block;
  width: 100%;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px;
}
.mobilemenu ul li a:hover, .mobilemenu ul li a:focus {
  color: #FFF;
  background-color: transparent;
}
.mobilemenu ul.menu li.nav-item:after {
  border: none;
  display: none;
}
.mobilemenu ul.menu li.nav-item:last-of-type:after {
  border: none;
  display: none;
}
/* translate widget */
.translate-wrapper {
  color: #FFF;
  text-align: right;
	 margin-right: 30px;
}
.translate-wrapper p {
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .translate-wrapper {
    margin-right: 30px;
   
  }
}
