* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 1.8rem;
  background: #f5f5f5;
  color: #222;
  margin: 0;
  padding-top: 90px;
}
body.open-nav {
  overflow: hidden;
}

p {
  line-height: 1.5;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  background: #F29F04;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s;
  text-shadow: none;
}
.btn:hover {
  background: #EC8103;
}

header {
  background: #fff;
  height: 90px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
header.fixed {
  position: fixed;
  width: 100%;
  animation: header 0.3s;
  animation-fill-mode: forwards;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  white-space: nowrap;
}
.logo h1 {
  margin: 0;
  font-size: 2.4rem;
  font-weight: normal;
}
.logo a {
  text-decoration: none;
  color: #222;
}
.logo span {
  display: inline-block;
  padding: 0.2rem 1rem;
  border: 2px solid #222;
}

.logo__name {
  font-weight: bold;
}

.logo__perex {
  font-size: 1.8rem;
  letter-spacing: 1px;
  opacity: 0.7;
}

button.open-nav, button.close-nav {
  background: none;
  border: 0;
  cursor: pointer;
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  outline: none;
}
button.open-nav span, button.close-nav span {
  width: 40px;
  height: 3px;
  display: block;
  background: #222;
  margin: 1rem 0;
  cursor: pointer;
}
@media (min-width: 760px) {
  button.open-nav, button.close-nav {
    display: none;
  }
}

button.close-nav {
  transition: 0.3s;
}
button.close-nav span {
  transform: rotate(45deg) translate(5px, 5px);
  background: #fff;
}
button.close-nav span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}
button.close-nav:hover {
  transform: rotate(0.5turn);
}

.navigation {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #192a56;
  right: -100%;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: all 0.3s;
}
.navigation a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 2rem;
}
.navigation a:hover {
  color: #FFF5DC;
}
.navigation.open-nav {
  right: 0;
}
@media (min-width: 760px) {
  .navigation {
    position: static;
    display: block;
    background: none;
    width: auto;
    height: auto;
  }
  .navigation ul {
    display: flex;
  }
  .navigation li {
    margin: 0 1rem;
    padding: 0 0.5rem;
    position: relative;
    z-index: 1;
  }
  .navigation li::after {
    content: "";
    display: block;
    width: 100%;
    height: 8px;
    background: #FFF5DC;
    position: absolute;
    bottom: 1rem;
    left: 0;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s;
  }
  .navigation li:hover::after {
    transform: scaleX(1);
  }
  .navigation li.active::after {
    background: #DCEEFF;
    transform: scaleX(1);
  }
  .navigation a {
    color: #222;
    padding: 1rem 0;
  }
  .navigation a:hover {
    color: #222;
  }
}

.hero {
  background: url(../img/header.jpg) no-repeat bottom center;
  background-size: cover;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #001484;
  opacity: 0.4;
  top: 0;
}

.hero__text > * {
  position: relative;
  z-index: 1;
}
.hero__text h2 {
  font-size: 5rem;
  margin-bottom: 0;
}
@media (min-width: 760px) {
  .hero__text h2 {
    font-size: 6.4rem;
  }
}
.hero__text h2 + p {
  font-size: 2.4rem;
}

section {
  padding: 5rem 0 10rem;
}
section h3 {
  font-size: 4.8rem;
}

.services {
  background: #fff;
}

.services__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.services__list li {
  border: 1px solid #c4c4c4;
  margin: 1rem;
  padding: 1rem;
  min-width: 250px;
  width: 20%;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.services__list li:hover {
  background: #DCEEFF;
  border-color: #C3E2FF;
}
.services__list li i {
  display: block;
  opacity: 0.7;
  font-size: 1.6rem;
}

.footer {
  padding: 3rem 0 6rem;
  background: #2E2E2E;
  color: #fff;
}
.footer h3 {
  font-size: 4.8rem;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  text-decoration: none;
  color: #FFF5DC;
}

footer {
  background: #2E2E2E;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  color: #ccc;
}
footer p {
  margin: 0;
}
footer a {
  color: #fff;
}
footer a:hover {
  text-decoration: none;
}

@keyframes header {
  0% {
    top: -70px;
  }
  100% {
    top: 0;
  }
}

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