html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
  background: transparent;
  list-style: none;
}

body {
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
  font: inherit;
}

body {
  font-family: "Arial", sans-serif;
  color: #555;
  font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
}

header {
	position: fixed;
	height: 80px;
	width: 100%;
	padding: 0 2.5%;
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #4c9ac0;
	color: #fff;
	z-index: 100;
}


.hamburger {
  display: none;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
@media screen and (max-width: 700px) {
  .hamburger {
    display: flex;
  }
}

.hamburger .bar {
  width: 40px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  display: block;
  position: absolute;
  transition: all 0.3s;
}

.hamburger .bar-top {
  transform: translate(0, -12px);
}

.hamburger .bar-bottom {
  transform: translate(0, 12px);
}

.checkbox:checked ~ .hamburger .bar-middle {
  opacity: 0;
}

.checkbox:checked ~ .hamburger .bar-top {
  transform: translate(0, 0) rotate(45deg);
}

.checkbox:checked ~ .hamburger .bar-bottom {
  transform: translate(0, 0) rotate(-45deg);
}

.checkbox {
  display: none;
}

.nav-menu li a{
padding: 0.5em 1em;
}

.nav-menu li a:hover{
	color:#B3D5F4;
}



@media screen and (max-width: 700px) {
	
	header {
	height: 60px;
}

  .nav-menu {
    position: fixed;
    width: 280px;
    height: 100%;
    background: #000;
    opacity: 0.8;
    color: #fff;
    top: 0;
    left: -100%;
    transition: all 0.5s;
  }
}

.nav-menu ul {
	display: flex;
	justify-content: space-between;
	margin-top: 2.5em;
}
@media screen and (max-width: 700px) {
  .nav-menu ul {
    margin-top: 100px;
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .nav-menu li {
    margin-bottom: 30px;
  }
}

.nav-menu a {
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}

.checkbox:checked ~ .nav-menu {
  left: 0;
}


/*# sourceMappingURL=style.css.map */
