/**
* this is the main css module
**/

/* NOTE: Make all your rules, at least, children of your parent element to avoid CSS rules cross-contamination */

/* TODO: Consider using a CSS pre-compiler even if it is only to have variables for shared values: e.g. colours */
banner-ad {
  font-family: 'market-sans-regular', Helvetica, Arial, sans-serif;
}

banner-ad a.click-tag {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  z-index: 2;
}

banner-ad #logo-click {
    z-index: 3;
}

banner-ad #logo {
  top: 20px;
  height: 26px;
  width: 63px;
  z-index: 1;
}

banner-ad section#frame-1{
  width: 100%;
  top: 0;
  overflow: hidden;
}

banner-ad #headline-1-container,
banner-ad #headline-2-container{
  display: table;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  overflow: hidden;
}

banner-ad #headline-1-container{
  z-index:0;
}

banner-ad #headline-2-exp{
  position: absolute;
  top: 0;
  width: 100%;
  overflow: hidden;
}
banner-ad #headline-1,
banner-ad #headline-2 {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  letter-spacing: -0.5px;
}

banner-ad #hero-image {
  width: 100%;
  bottom: 0;
  z-index: 1;
  background-color: #fff;
}

banner-ad section.end-frame {
  left: 0;
  top: 0;
  height:100%;
}

banner-ad .title,
banner-ad .title-2 {
  font-family: 'market-sans-bold', Helvetica, Arial, sans-serif;
  padding: 30px 10px 0 10px;
}

/*banner-ad #intro-slide-box #logo,
banner-ad #intro-slide-box .title,
banner-ad #intro-slide-box .title-2 {
  color: #430078;
  fill: #430078;
}*/

/* NOTE: Group elements that share the same rules, rather than repeat the rules */
banner-ad #cta {
  left: 10px;
  z-index: 5;
}

/* ********** */
/* CTA Button */
/* ********** */
banner-ad #cta {
  cursor: pointer;
  font-family: "market-sans-regular", arial, helvetica, sans-serif;
  font-size: 12px;
  font-weight: 200;
  line-height: 17px;
  position: absolute;
  text-align: left;
  min-width: 70px;
  padding: 8px 24px 8px 8px;
  text-align: center;
  min-width:95px;
}

banner-ad #cta-body {
  width: 100%;
  display: table;
  height: auto;
  vertical-align: middle;
  position: relative;
}

#cta-body>svg {
  display: table-cell;
  height: 8px;
  width: 12px;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-width: 1;
  margin-left: 10px;
  fill: none;
  stroke-miterlimit: 0;
  stroke-width: 2px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
}

#cta-body span {
  display: table-cell;
  text-align: left;
}

banner-ad .lower-bg {
  width: 100%;
  height: 220px;
  position: absolute;
  background-color: #ffffff;
  bottom: 0;
}