--- /dev/null
+$module: ".hero";
+
+#{$module} {
+
+ background-image: url(../img/vertigo/hero.jpg);
+ background-repeat: no-repeat;
+ background-position: center top;
+ background-size: cover;
+ height: 560px;
+ margin-bottom: 350px;
+ position: relative;
+
+ @include mq($until: xs) {
+ height: 346px;
+ margin-bottom: 140px;
+ }
+
+ &:after {
+
+ content: '';
+ height: 1px;
+ width: 30px;
+ background: #F2EDDC;
+ position: absolute;
+ top: 825px;
+ left: 50%;
+ margin-left: -15px;
+
+ @include mq($until: xs) {
+ top: 440px;
+ }
+
+ }
+
+ &__title {
+
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ text-align: center;
+
+ @include transform(translateY(80%));
+
+ @include mq($until: sm) {
+ img {
+ width: 70%;
+ }
+ }
+
+ @include mq($until: xs) {
+ img {
+ width: 231px;
+ }
+ }
+
+ }
+
+ &__logo {
+
+ @include margin-top(2);
+ text-align: center;
+ @include mq($until: xs) {
+ @include margin-top(0);
+ img {
+ width: 159px;
+ }
+ }
+
+ }
+
+ &__left {
+
+ @include margin-top(4);
+ text-align: left;
+
+ @include mq($until: xs) {
+ @include margin-top(1);
+ text-align: center;
+ img {
+ width: 190px;
+ }
+ }
+
+ }
+
+ &__right {
+
+ @include margin-top(4);
+ text-align: right;
+
+ @include mq($until: xs) {
+ @include margin-top(.5);
+ text-align: center;
+
+ img {
+ width: 50px;
+ }
+ }
+
+ }
+
+ &__date {
+
+ display: block;
+ @include margin-top(2);
+ @include margin-left(2);
+
+ @include mq($until: xs) {
+ display: block;
+ text-align: center;
+ width: 120px !important;
+ @include margin(0 auto);
+ @include transform(translateY(-20px) translateX(-14px));
+
+ }
+
+ }
+
+}
--- /dev/null
+{% load i18n pages_tags mezzanine_tags staticfiles keyword_tags event_tags organization_tags %}
+
+<div class="hero">
+
+ <div class="container">
+
+ <div class="row">
+
+ <div class="col-xs-7 col-xs-push-1 hero__left">
+ <img src="{% static "img/vertigo/hero-left.png" %}" />
+ <img class="hero__date" src="{% static "img/vertigo/hero-left-date.png" %}" />
+ </div>
+
+ <div class="col-xs-7 col-xs-push-1 hero__right">
+ <img src="{% static "img/vertigo/hero-right.png" %}" />
+
+ <p>
+
+ </p>
+ </div>
+
+ </div>
+
+ <div class="row">
+
+ <div class="col-xs-16">
+
+ <div class="hero__logo">
+ <img src="{% static "img/vertigo/hero-logo.png" %}" />
+ </div>
+
+ </div>
+
+ </div>
+
+ <div class="hero__title">
+ <img src="{% static "img/vertigo/hero-title.png" %}" />
+ </div>
+
+ </div>
+
+</div>