@font-face {
font-family: 'QuarzLight';
src: url('../typos/quarz-light/quarz-light.eot'); /* IE9 Compat Modes */
src: url('../typos/quarz-light/quarz-light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../typos/quarz-light/quarz-light.woff') format('woff'), /* Pretty Modern Browsers */
url('../typos/quarz-light/quarz-light.ttf') format('truetype'), /* Safari, Android, iOS */
url('../typos/quarz-light/quarz-light.svg#svgFontName') format('svg'); /* Legacy iOS */
}

*{margin:0; padding:0}

html, body {
    height: 100%;
    padding:0;
    margin:0;
    width:100%;
}

body {
    background-image: url(../images/bikini.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    color: #353334;
    font-family: 'Arial';
    font-size: 14px;
}

.text-blue {
    color: #0b67b0
}
.logo::after {
    display: block;
    width: 0;
    content: "";
    height: 0;
    border-style: solid;
    border-width: 0 0 130px 550px;
    border-color: transparent transparent #ffffff transparent;
    -ms-transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
    position: absolute;
    top: -70px;
    left: -286px;
    z-index: -1;
    -webkit-backface-visibility: hidden;
}

.logo img {
    float: left;
    height: 60px;
    padding-left: 14px;
    padding-right: 14px;
}
.logo h1 {
    padding: 0px 0px 0px 40px;
    line-height: 70px;
}
.logo h1 {
    font-family: 'QuarzLight';
}
.logo h1 span.dot {
    font-family: 'Arial';
    color: #353334;
}
.logo h1 span.name {
    text-shadow: 1px 1px 0px rgba(11, 103, 176, 1);
}
.logo h1 span.domain {
    color: #353334;
    text-shadow: 1px 1px 0px rgba(53, 51, 52, 1);
}

.one-liner div {
    position: absolute;
    bottom: 50px;
    padding: 0 30px;
}
.one-liner div:first-of-type {
    font-size: 184%;
    background-color: black;
    color: white;
    bottom: 130px;
    left: 10px;
    padding-bottom: 15px;
    padding-top: 10px;
}
.one-liner div:nth-of-type(2) {
    //line-height: 70px;
    font-size: 266%;
    background-color: white;
    bottom: 75px;
    left: 30px;
    padding: 10px 30px;
}

#home .min-lovable-learn-more {
    margin: 0 auto;
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -25px;
}
#home a.hvr-ripple-out {
    display: block;
    background-color: black;
    opacity: 0.9;
    border-radius: 25px;
    min-width: 50px;
    width: 50px;
    min-height: 50px;
    content: "";
    position: absolute;
    left: 10px;
    bottom: 50px;
}

/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    border-radius: 37px;
    opacity: 0;
  }
}

@keyframes hvr-ripple-out {
  100% {
    /*top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;*/
    opacity: 0;
  }
}

/*Refer: https://github.com/IanLunn/Hover/blob/master/css/hover.css */
.hvr-ripple-out {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-ripple-out:before {
  content: '';
  position: absolute;
  border: black solid 3px;
  border-radius: 25px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}
.hvr-ripple-out:after {
  content: '';
  position: absolute;
  border: black solid 3px;
  border-radius: 25px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
  animation-delay: 3s;
  -webkit-animation-delay: 3s;
}

@media screen and (max-width: 767px) {
    body {
        font-size: 10px;
    }
    h1 {
        font-size: 3em;
    }
    .one-liner div:nth-of-type(2) {
        bottom: 60px;
    }
}

@media screen and (max-width: 400px) {
    body {
        background-position-x: -70px;
    }
}