@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  position: relative;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background: #a9cef3;
  overflow: hidden;
}

h1 {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  font-size: 7vmin;
  text-align: center;
  text-transform: uppercase;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
.logo {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 32%;
  left: 50%;
  width: 85%;
  max-width: 220px;
  height: auto;
  color: white;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

.wrap {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.wrap .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #a9cef3 url("bg.jpg") no-repeat center center;
  background-size: cover;
  /*-webkit-transform: scale(1.1);
          transform: scale(1.1);*/
}
    @media only screen and (max-width: 767.9px) {
      .wrap .bg {
        background: #a9cef3 url("bg-s.jpg") no-repeat right bottom;
      }
      .logo {
        top: 26%;
      }
    }

.foot {
  position: absolute;
  bottom: 14px;
  width: 100%;
  text-align: center;
  color: #333;
  font-size: 11px;
  letter-spacing: 0.07em;
  /*text-shadow: 1px 1px 7px rgba(60, 91, 104, 0.6);*/
}