@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf");
  font-weight: 600;
}

body {
  background: white;
  padding: 0;
  margin: 0;
  background-image: url("../images/zuzel-motor.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-size: 16px;
  font-family: "OpenSansRegular", sans-serif;
  position: relative;
}
.container {
  width: 991px;
  margin: 0 auto;
  padding: 20px;
}

.container img {
  width: 100%;
}

header {
  background-image: url("../images/top-blue-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 130px;
  width: 100%;
  position: fixed;
  top: 0;
}

footer {
  background-color: #a8a9ad;
  color: #fff;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.logo {
  width: 150px;
}

.content {
  padding: 110px 0;
}

.content h1 {
  font-family: "OpenSansBold", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0;
}

.content img {
  margin-top: 10px;
}

.badges {
  display: flex;
  align-items: center;
  margin: 0 -5px -5px;
}
.badges a {
  width: 100px;
  display: block;
  margin: auto 5px;
}

.alert {
  padding: 10px;
  background-color: #cce5ff;
  border: 1px solid #b8daff;
  color: #004085;
  font-size: 12px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .container {
    width: 767px;
  }
  header {
    height: 120px;
  }
  .content {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
  .container {
    width: 480px;
    padding: 10px;
  }
  header {
    height: 80px;
  }
  .logo {
    width: 110px;
  }
  footer {
    text-align: center;
  }
  .content {
    padding: 70px 0;
  }
  .content h1 {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 20px);
  }
  header {
    height: 70px;
  }
  .logo {
    width: 100px;
  }
  .content {
    padding: 70px 0;
  }
  .content h1 {
    font-size: 16px;
  }
}
