@font-face {
  font-family: "Klavika-Regular";
  src: url("../fonts/Klavika-Regular.woff2") format("woff2"), url("../fonts/Klavika-Regular.woff") format("woff"), url("../fonts/Klavika-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Klavika-Bold";
  src: url("../fonts/Klavika-Bold.woff2") format("woff2"), url("../fonts/Klavika-Bold.woff") format("woff"), url("../fonts/Klavika-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  width: 100%;
  line-height: 1.8;
  background-color: #21293C;
  font-family: "Klavika-Regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #FFF;
  overflow-x: hidden;
}
@media (max-width: 900px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 599px) {
  body {
    font-size: 12px;
  }
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
}
@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
}

.hero {
  background-image: url(../img/hero.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero:before {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #21293c;
  background: linear-gradient(0deg, #21293c 0%, rgba(33, 41, 60, 0) 100%);
  z-index: 0;
}
.hero:after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #21293c;
  background: linear-gradient(90deg, #21293c 0%, rgba(33, 41, 60, 0) 100%);
  z-index: 0;
}
.hero header {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .hero header {
    padding: 2rem 0;
  }
}
.hero header img {
  height: 3rem;
}
@media (max-width: 600px) {
  .hero header img {
    height: 2rem;
  }
}
.hero__inner {
  padding: 8rem 0;
  z-index: 1;
  position: relative;
}
@media (max-width: 600px) {
  .hero__inner {
    padding: 4rem 0;
  }
}
.hero__inner h1 {
  font-size: 3rem;
  font-family: "Klavika-Bold";
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 3rem;
}
@media (max-width: 600px) {
  .hero__inner h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
}
.hero__inner p {
  width: 70%;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .hero__inner p {
    width: 100%;
    font-size: 1rem;
  }
}

.slide {
  outline: none;
}

h2 {
  font-family: "Klavika-Bold";
  margin: 0;
  padding: 0;
  font-size: 2rem;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 600px) {
  h2 {
    font-size: 1.5rem;
  }
}

.button {
  margin: 0;
  padding: 0 2rem;
  height: 3rem;
  background-color: #C24717;
  border: 0;
  color: #FFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.button--secondary {
  background-color: #0E1527;
}

.brands {
  position: relative;
  width: 70%;
  margin-left: 30%;
}
@media (max-width: 900px) {
  .brands {
    width: 100%;
    margin-left: 0;
  }
}
.brands header {
  text-align: right;
}
.brands:after {
  content: " ";
  width: 100vw;
  height: 90%;
  background-color: rgba(0, 0, 0, 0.2);
  margin-right: -30vw;
  position: absolute;
  top: 0;
  margin-top: 15%;
  right: 0;
  z-index: -1;
}
@media (max-width: 900px) {
  .brands:after {
    display: none;
  }
}
.brands__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.brands__item {
  width: 48%;
  margin: 2rem 0;
}
@media (max-width: 600px) {
  .brands__item {
    width: 100%;
  }
}
.brands__item__image {
  width: 100%;
}
.brands__item__logo {
  height: 1.5rem;
  margin: 1rem 0;
}
.brands__item p {
  margin-bottom: 1rem;
  opacity: 0.5;
}

.projects {
  margin-top: 8rem;
}
.projects header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .projects header {
    flex-direction: column;
  }
}
.projects__item {
  width: 100%;
  display: flex;
}
@media (max-width: 900px) {
  .projects__item {
    flex-direction: column;
  }
}
.projects__item__sidebar {
  width: 30%;
  padding: 4rem;
  background-color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 900px) {
  .projects__item__sidebar {
    width: 100%;
    padding: 2rem;
  }
}
.projects__item__sidebar img {
  max-width: 80%;
  max-height: 3rem;
  margin-bottom: 4rem;
}
.projects__item__sidebar p {
  margin-bottom: 2rem;
}
.projects__item__sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.projects__item__sidebar a {
  color: rgba(255, 255, 255, 0.5);
}
.projects__item__content {
  background-color: rgba(255, 255, 255, 0.04);
  width: 70%;
  padding: 4rem;
}
@media (max-width: 900px) {
  .projects__item__content {
    width: 100%;
    padding: 2rem;
  }
}
.projects__item__content img {
  width: 100%;
  margin-bottom: 2rem;
}
.projects__item__content p {
  margin-bottom: 2rem;
}

footer {
  padding: 8rem 0;
  background-image: url(../img/footer.jpg);
  background-size: cover;
  background-position: center;
}
footer address {
  font-style: normal;
  margin-bottom: 2rem;
}
footer img {
  height: 2rem;
  margin-bottom: 2rem;
}
footer .footer__inner {
  width: 80%;
  margin-left: 20%;
}

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