html, body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}

body {
  font-family: 'Raleway', sans-serif;
}

.main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  height: 100%;
}

.main-wrapper:after {
  position: absolute;
  content: "";
  background-image: url("../assets/images/bg-img.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 75%;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.info-bar {
  height: 120px;
  background-color: rgba(0, 57, 210, 0.65);
  -webkit-transform: translateY(-150px);
          transform: translateY(-150px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 50px;
}

.info-bar__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex: 1;
      flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
}

.info-bar__logo img {
  width: 100%;
  max-width: 120px;
  max-height: 120px;
}

.info-bar__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  padding-left: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.info-bar__content h1 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

.info-bar__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
}

.info-bar__link {
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  margin-bottom: 0.67em;
  font-size: 22px;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .info-bar {
    padding: 0 30px 0 20px;
  }
}

@media (max-width: 600px) {
  .info-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    padding: 25px 15px;
  }
  .info-bar__content h1:first-child {
    margin-top: 8px;
  }
  .info-bar__logo img {
    max-height: 100px;
    max-width: 100px;
  }
  .info-bar__right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .info-bar__link {
    margin: 30px 10px 0 10px;
  }
}

@media (min-width: 280px) and (max-width: 420px) {
  .info-bar {
    text-align: center;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    height: 100%;
  }
  .info-bar__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .info-bar__content {
    padding-left: 0;
  }
  .info-bar__content h1:first-child {
    font-size: 26px;
    margin-top: 40px;
  }
  .info-bar__content h1 {
    font-size: 24px;
  }
  .info-bar__logo img {
    max-height: 200px;
    max-width: 200px;
    margin-top: 38px;
  }
  .info-bar__right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*# sourceMappingURL=style.css.map */