.wrapper {
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 0;
    right: 0;
    left: 0;

    background: #fff;
    background: -moz-linear-gradient(top,  #e7e7e8 0%, #ffffff 25%, #ffffff 75%, #e7e7e8 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e7e7e8), color-stop(25%,#ffffff), color-stop(75%,#ffffff), color-stop(100%,#e7e7e8));
    background: -webkit-linear-gradient(top,  #e7e7e8 0%,#ffffff 25%,#ffffff 75%,#e7e7e8 100%);
    background: -o-linear-gradient(top,  #e7e7e8 0%,#ffffff 25%,#ffffff 75%,#e7e7e8 100%);
    background: -ms-linear-gradient(top,  #e7e7e8 0%,#ffffff 25%,#ffffff 75%,#e7e7e8 100%);
    background: linear-gradient(to bottom,  #e7e7e8 0%,#ffffff 25%,#ffffff 75%,#e7e7e8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e8', endColorstr='#e7e7e8',GradientType=0 );
}

/* ------------------------------------------------------------------------*\
    $LOGO
\* ------------------------------------------------------------------------*/

.logo {
    padding-top: 85px;
    margin-bottom: 125px;
}
.logo__m,
.logo__type,
.logo__ldn {
    margin: 0 auto;
    width: 95%;
}
.svg .logo__m {
    background: url(../img/MV-logo.svg) no-repeat center;
    background-size: 100%;
}
.logo__m {
    max-width: 30px;
    height: 40px;
    background: url(../img/MV-logo.png) no-repeat center;
    background-size: 100%;
}
.svg .logo__type {
    background: url(../img/MV-type.svg) no-repeat center;
    background-size: 100%;
}
.logo__type {
    margin-bottom: 1em;
    max-width: 360px;
    height: 36px;
    background: url(../img/MV-type.png) no-repeat center;
    background-size: 100%;
}
.svg .logo__ldn {
    background: url(../img/ldn.svg) no-repeat center;
    background-size: 100%;
}
.logo__ldn {
    max-width: 110px;
    height: 14px;
    background: url(../img/ldn.png) no-repeat center;
    background-size: 100%;
}

/* ------------------------------------------------------------------------*\
    $RING
\* ------------------------------------------------------------------------*/

.ring {
    margin: 0 auto;
    width: 100%;
    max-width: 420px;
    height: 425px;
    background: url(../img/signature-butterfly@2x.png) no-repeat center top;
    background-size: 100%;
    position: relative;
}
.lt-ie9 .ring {
    background: url(../img/signature-butterfly.png) no-repeat center top;
    background-size: 100%;
}


/* ------------------------------------------------------------------------*\
    $CAPTION
\* ------------------------------------------------------------------------*/

.ring .caption {
	position: absolute;
	top: 100%;
	display: block;
	width: 100%;
	text-align: center;
	font-family: "proxima-nova-n3","proxima-nova",sans-serif;
	font-style: normal;
	font-weight: 300;
	font-variant: small-caps;
	letter-spacing: 2px;
	color: gray;
	left: 0;
}


/* ------------------------------------------------------------------------*\
    $CONTACT
\* ------------------------------------------------------------------------*/

.contact {
    position: relative;
    width: 100%;
    margin-top: 90px;
    text-align: center;
    padding-bottom: 1.5em;
    font-family: "proxima-nova-n3","proxima-nova",sans-serif;
    font-style: normal;
    font-weight: 300;
}

.gt-ie8 .contact {
    position: fixed;
    bottom: 0;
}
.contact a {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    font-size: .7em;
    color: #000;
    font-family: "proxima-nova-n3","proxima-nova",sans-serif;
	font-style: normal;
	font-weight: 300;
}

/* ------------------------------------------------ *\
    Keyframe Animations
\* ------------------------------------------------ */

@-webkit-keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@-moz-keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*no js*/
.fadeIn {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}
/*js, no css-animations*/
.js .fadeIn {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity ease 1s;
    transition: opacity ease 1s;
}
.load .fadeIn {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}
/*ie alpha fix*/
.lt-ie9 .js .fadeIn,
.lt-ie9 .load .fadeIn {
    filter: none;
}
/*css-animations*/
.cssanimations .fadeIn {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: none;
    transition: none;
    -webkit-animation: fadeIn linear 1;
    -moz-animation: fadeIn linear 1;
    animation: fadeIn linear 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: .8s;
    -moz-animation-duration: .8s;
    animation-duration: .8s;
}
.cssanimations .fadeIn-1 {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}
.cssanimations .fadeIn-2 {
  -webkit-animation-delay: .9s;
  -moz-animation-delay: .9s;
  animation-delay: .9s;
}
.cssanimations .fadeIn-3 {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

/* ------------------------------------------------------------------------*\
    $MEDIA-QUERIES
\* ------------------------------------------------------------------------*/

@media only screen and (min-height: 800px) {

    .ring {
        position: absolute;
        top: 45%;
        left: 50%;
        margin-top: -144px;
        margin-left: -210px;
    }

}

@media only screen and (max-height: 800px) {

    .ring {
        margin-bottom: 3em;
    }

    .gt-ie8 .contact {
        position: relative;
        margin-top: 75px;
    }

}

@media only screen and (max-width: 430px) {

    .logo {
        padding-top: 45px;
        margin-bottom: 50px;
    }

    .ring {
        position: relative;
        margin: 0 auto;
        width: 85%;
        height: 0;
        padding-bottom: 85%;
        top: auto;
        left: auto;
    }

    .gt-ie8 .contact {
        position: relative;
        margin-top: 90px;
    }

}