/* Reset */
*,
*:before,
*:after {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

html, body {
  -webkit-text-size-adjust: 100%;
}

ul, ol, li {
  list-style: none;
}

/* Misc. styles */
html, body {
  font-family: Oxygen, Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.rowWrap {
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 60px;
  position: relative;
}

.vCentreParent {
  font-size: 0;
}
.vCentreParent:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.vCentreParent .vCentre {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}

/* Page layout */
body.clientPage {
  background: url("../images/page-bg.jpg") center center fixed no-repeat;
  background-size: cover;
}

#container {
  min-width: 320px;
}

#header {
  background: rgba(255, 255, 255, 0.7);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 0.3s;
  z-index: 100;
}
#header.scroll {
  background: #fff;
}

#headerInner {
  padding: 10px 0;
  position: relative;
}

#logo {
  background: url("../images/logo.svg") no-repeat;
  background-size: contain;
  display: block;
  height: 65px;
  text-indent: -9999em;
  width: 212px;
}

#knackWrapper {
  margin: auto;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 125px;
}

#footer {
  font-size: 12px;
  padding: 15px 0;
  text-align: center;
}

#popupWrapper {
  background: #000;
  bottom: 0;
  display: none;
  left: 0;
  padding: 66px 60px;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 2001;
}

#popupClose {
  height: 26px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 26px;
}
#popupClose:before, #popupClose:after {
  background: #fff;
  content: '';
  position: absolute;
  transform: rotate(45deg);
}
#popupClose:before {
  height: 2px;
  left: 0;
  margin-top: -1px;
  right: 0;
  top: 50%;
}
#popupClose:after {
  bottom: 0;
  left: 50%;
  margin-left: -1px;
  top: 0;
  width: 2px;
}

#popupImageWrapper {
  margin: auto;
  max-width: 1200px;
}

#popupImage {
  display: block;
  height: auto;
  width: 100%;
}

@media screen and (max-width: 1259px) {
  .rowWrap, #popupWrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  #logo {
    height: 44px;
    width: 144px;
  }

  #knackWrapper {
    padding-top: 104px;
  }

  #popupWrapper {
    padding-bottom: 46px;
    padding-top: 46px;
  }

  #popupClose {
    right: 10px;
    top: 10px;
  }
}
