/* ========================================================================== 
  DJ DADDY
  ========================================================================== */

/* fonts
  ======================================== */
  @font-face {
    font-family: 'Open Sans';
    src: url('vendor/fonts/opensans-regular.woff2') format("woff2");
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans Bold';
    src: url('vendor/fonts/opensans-bold.woff2') format("woff2");
    font-display: swap;
}

@font-face {
    font-family: 'Changa One';
    src: url('vendor/fonts/ChangaOne-Regular.woff2') format("woff2");
    font-display: swap;
}

/* normalize
  ======================================== */
html{
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body{
  margin: 0;
  padding: 0;
}
main{
  display: block;
}
a{
  background-color: transparent;
}
b,
strong{
  font-weight: bolder;
}
img{
  border-style: none;
}
button,
input,
textarea{
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input{
  overflow: visible;
}
button{
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"]{
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner{
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring{
  outline: 1px dotted ButtonText;
}
textarea{
  overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button{
  height: auto;
}

/* globals
  ======================================== */
*,
:after,
:before{
  box-sizing: border-box;
}
html,
body{
  position: relative;
  background-color: #fff;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: #000;
  text-align: center;
  width: 100%;
  min-width: 320px;
  min-height: 100%;
}
section{
  padding: 50px 0;
  display: inline-block;
  width: 100%;
}
section:after,
section:before{
  content: ' ';
  display: table;
}
.row{
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  text-align: left;
  padding: 0 20px;
}
.row:after,
.row:before{
  content: ' ';
  display: table;
}
.col{
  float: left;
  width: 100%;
  padding: 0 8px;
}
.col-3{
  width: 33.33%;
}
.col-5{
  width: 50%;
}
@media all and (max-width: 768px) {
  section{
    padding: 35px 0;
  }
  .row{
    padding: 0 8px;
  }
}
@media all and (max-width: 600px) {
  section{
    padding: 25px 0;
  }
}
/* font awesome
  ======================================== */
@font-face {
  font-family: 'FontAwesomeSolid';
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("vendor/fontawesome-5.12.0/webfonts/fa-solid-900.eot");
  src: url("vendor/fontawesome-5.12.0/webfonts/.eot?#iefix") format("embedded-opentype"), url("vendor/fontawesome-5.12.0/webfonts/fa-solid-900.woff2") format("woff2"), url("vendor/fontawesome-5.12.0/webfonts/fa-solid-900.woff") format("woff"), url("vendor/fontawesome-5.12.0/webfonts/fa-solid-900.ttf") format("truetype"), url("vendor/fontawesome-5.12.0/webfonts/fa-solid-900.svg#fontawesomesolid") format("svg");
}

/* typography
  ======================================== */
h1{
  margin: 0;
  padding: 0;
  font-family: 'Changa One', cursive;
  font-size: 58px;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}
h2{
  margin: 0;
  padding: 0;
  font-family: 'Changa One', cursive;
  font-size: 38px;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}
h3{
  margin: 0;
  padding: 0;
  font-family: 'Changa One', cursive;
  font-size: 24px;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}
p{
  margin: 0;
  padding-bottom: 15px;
  line-height: 1.25;
}
@media all and (max-width: 600px) {
  h2{
    font-size: 30px;
  }
  h3{
    font-size: 22px;
  }
}
/* hyperlinks
  ======================================== */
a{
  color: #000;
  position: relative;
  padding-bottom: 2px;
  text-decoration: none;
  -webkit-transition: color 0.25s linear;
  -moz-transition: color 0.25s linear;
  -o-transition: color 0.25s linear;
  transition: color 0.25s linear;
}
a:after{
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  height: 2px;
  background: #266a8c;
  width: 0;
}
a:hover{
  color: #266a8c;
}
a:hover:after{
  width: 100%;
  text-decoration: none;
  -webkit-animation: bordergrow 0.4s 1;
  -moz-animation: bordergrow 0.4s 1;
  -ms-animation: bordergrow 0.4s 1;
  -o-animation: bordergrow 0.4s 1;
  animation: bordergrow 0.4s 1;
}

/* header and navigation
  ======================================== */
header{
  position: fixed;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  height: 40px;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 0 18px 5px rgba(240, 240, 240, 0.5);
  z-index: 50;
}
header a{
  color: #000;
  text-decoration: none;
}
header .to-top-button{
  float: left;
  padding: 1px 0 2px 0;
  font-family: 'Changa One', cursive;
  font-size: 32px;
  font-weight: normal;
  color: #000;
  text-transform: uppercase;
}
header .to-top-button a:hover:after{
  display: none;
}
header nav{
  float: right;
}
header nav ul{
  list-style-type: none;
  margin: 0;
  padding: 10px 0 0 0;
}
header nav ul li{
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 2px 9px 2px 11px;
}
header nav ul li:not(:first-child):before{
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  content: '';
  height: 20px;
  width: 1px;
  display: inline-block;
}
header nav ul li:last-child{
  padding-right: 0;
}
header nav a{
  font-size: 14px;
}
@media all and (min-width: 601px) {
  header .nav-toggle{
    display: none;
  }
  header nav ul{
    display: inline-block !important;
  }
}
@media all and (max-width: 600px) {
  header{
    height: 35px;
  }
  header .to-top-button{
    font-size: 28px;
  }
  header .nav-toggle{
    position: relative;
    width: 18px;
    height: 20px;
    margin-top: 11px;
    float: right;
    display: inline-block;
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  header .nav-toggle:after,
  header .nav-toggle:hover:after{
    display: none;
  }
  header .nav-toggle > span{
    position: absolute;
    height: 2px;
    width: 18px;
    background-color: #000;
    opacity: 1;
    right: 0;
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    display: block;
  }
  header .nav-toggle > span:nth-child(1){
     top: 0;
     transform-origin: left center;
   }
  header .nav-toggle > span:nth-child(2){
    top: 5px;
    transform-origin: left center;
  }
  header .nav-toggle > span:nth-child(3){
    top: 10px;
    transform-origin: left center;
  }
  header .nav-toggle.is-active > span:nth-child(1){
    transform: rotate(45deg);
    top: -2px;
    right: -5px;
  }
  header .nav-toggle.is-active > span:nth-child(2){
    width: 0;
    opacity: 0;
  }
  header .nav-toggle.is-active > span:nth-child(3){
    transform: rotate(-45deg);
    top: 11px;
    right: -5px;
  }
  header nav ul{
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    background-color: #fff;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 0 18px 5px rgba(240, 240, 240, 0.5);
  }
  header nav ul li{
    width: 100%;
    display: block;
    text-align: center;
    padding: 8px 9px 8px 11px;
  }
  header nav ul li:not(:first-child):before{
    display: none;
  }
  header nav ul li:last-child{
    padding-right: 11px;
  }
}

/* section header and content
  ======================================== */
.section-header,
.section-content{
  width: 100%;
  float: left;
}
.section-header:after,
.section-header:before,
.section-content:after,
.section-content:before{
  content: ' ';
  display: table;
}
.section-header{
  background-color: #fff;
}
.section-header h2{
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
.section-content{
  background-color: #f0f0f0;
  padding: 16px 0;
}
@media all and (max-width: 600px) {
  .section-header h2{
    margin-bottom: 25px;
  }
}

/* welcome section
  ======================================== */
.section-welcome{
  position: relative;
  background: url('../media/bg-welcome.jpg') no-repeat center -160px #000;
  padding: 0;
  margin-bottom: 50px;
  width: 100%;
  height: 90vh;
  min-height: 200px;
}
.section-welcome .welcome{
  position: absolute;
  bottom: 15%;
  left: 50%;
  background: rgba(0, 0 ,0 , 35%);
  width: 310px;
  margin-left: -155px;
  padding: 15px 0 25px 0;
  display: inline-block;
}
.section-welcome .welcome h1{
  color: #fff;
}
.section-welcome .welcome h1 span,
.section-welcome .welcome h1 small{
  width: 100%;
  float: left;
  text-align: center;
  display: inline-block;
}
.section-welcome .welcome h1 small{
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  text-transform: none;
}
@media all and (max-width: 768px) {
  .section-welcome{
    margin-bottom: 35px;
  }
}
@media all and (max-width: 600px) {
  .section-welcome{
    height: 280px;
    margin-bottom: 25px;
  }
  .section-welcome .welcome{
    width: 288px;
    margin-left: -144px;
  }
  .section-welcome .welcome h1{
    font-size: 50px;
  }
  .section-welcome .welcome h1 small{
    font-size: 14px;
  }
}

/* about section
  ======================================== */
.section-about .section-content{
  padding-top: 0;
  padding-bottom: 0;
}
.section-about .col-5:first-child{
  position: relative;
}
.section-about .col-5:first-child:after{
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  background-color: #fff;
  content: '';
  width: 2px;
  height: 100%;
  display: inline-block;
}
.section-about .row{
  display: table;
  width: 100%;
}
.section-about .col-5{
  display: table-cell;
  width: 50%;
  vertical-align: bottom;
  float: none;
  padding-top: 16px;
}
.section-about .col-5:first-child{
  text-align: center;
}
.section-about .image-teaser img{
  width: 420px;
  margin-bottom: -2px;
}
.section-about .text-teaser{
  padding: 30px 0 30px 30px;
}
.section-about .text-teaser .intro{
  font-weight: 600;
  font-size: 16px;
}
.section-about .text-teaser p{
  max-width: 450px;
}
@media all and (max-width: 800px) {
  .section-about .image-teaser img{
    width: 345px;
  }
  .section-about .text-teaser{
    padding: 20px 0 5px 16px;
  }
  .section-about .text-teaser .intro{
    font-size: 14px;
  }
}
@media all and (max-width: 650px) {
  .section-about .row{
    display: block;
  }
  .section-about .col-5{
    display: block;
    width: 100%;
    float: left;
    padding-top: 16px;
  }
  .section-about .col-5:first-child:after{
    height: 2px;
    width: calc(100% + 16px);
    top: auto;
    bottom: 1px;
    left: -8px;
    right: -8px;
  }
  .section-about .image-teaser img{
    width: 90%;
    max-width: 400px;
    margin-bottom: 0;
  }
  .section-about .text-teaser{
    padding: 16px 0 10px 0;
  }
}

/* benefits section
  ======================================== */
.benefits-teaser{
  position: relative;
  border: 2px solid #fff;
  text-align: center;
  padding: 100px 16px 24px 16px;
}
.benefits-teaser:after{
  position: absolute;
  top: 30px;
  left: 50%;
  font-family: 'FontAwesomeSolid';
  font-size: 50px;
  color: #266a8c;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  width: 50px;
  height: 50px;
  margin-left: -25px;
}
.benefits-teaser.music:after{
  top: 28px;
  content: '\f001';
}
.benefits-teaser.wishes:after{
  content: '\f004';
}
.benefits-teaser.moderation:after{
  content: '\f075';
}
.benefits-teaser h3{
  margin-bottom: 18px;
}
.benefits-teaser p{
  max-width: 240px;
  margin: 0 auto;
}

@media all and (max-width: 600px) {
  .section-benefits .col-3{
    width: 100%;
  }
  .section-benefits .col-3:not(:first-child){
    padding-top: 8px;
  }
}

/* gallery section
  ======================================== */
.gallery .gallery-item{
  float: left;
  padding: 0;
  margin: 0 4px;
}
.gallery .gallery-item img{
  margin: 0;
  width: auto;
  max-width: 100%;
}
.gallery .slick-arrow{
  position: absolute;
  top: 50%;
  content: '';
  width: 25px;
  height: 48px;
  margin-top: -24px;
  display: inline-block;
}
.gallery .slick-arrow span{
  display: none;
}
.gallery .slick-arrow:before{
  position: absolute;
  top: 0;
  font-family: 'FontAwesomeSolid';
  font-size: 48px;
  color: #266a8c;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  width: 25px;
  height: 48px;
  -webkit-transition: color 0.25s linear;
  -moz-transition: color 0.25s linear;
  -o-transition: color 0.25s linear;
  transition: color 0.25s linear;
}
.gallery .slick-arrow:hover:before{
  color: #1d4c64;
}
.gallery .slick-arrow:after,
.gallery .slick-arrow:hover:after{
  display: none;
}
.gallery .gallery-arrow-prev{
  left: -24px;
}
.gallery .gallery-arrow-prev:before{
  left: 0;
  content: '\f104';
}
.gallery .gallery-arrow-next{
  right: -24px;
}
.gallery .gallery-arrow-next:before{
  right: 0;
  content: '\f105';
}
.slick-dots li,
.slick-dots li button,
.slick-dots li button:before{
  margin: 0;
  width: 12px;
}
.slick-dots li.slick-active button:before{
  color: #1d4c64;
}

.slick-lightbox .slick-prev,
.slick-lightbox .slick-next{
  width: 25px;
  height: 44px;
  z-index: 30;
}
.slick-lightbox .slick-prev:before,
.slick-lightbox .slick-next:before{
  font-family: 'FontAwesomeSolid';
  font-size: 48px;
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  width: 25px;
  height: 48px;
  -webkit-transition: color 0.25s linear;
  -moz-transition: color 0.25s linear;
  -o-transition: color 0.25s linear;
  transition: color 0.25s linear;
}
html:not(.is-touch) .slick-lightbox .slick-prev:hover:before,
html:not(.is-touch) .slick-lightbox .slick-next:hover:before{
  color: #266a8c;
}
.slick-lightbox .slick-prev:before{
  content: '\f104';
}
.slick-lightbox .slick-next:before{
  content: '\f105';
}
@media all and (max-width: 600px) {
  .slick-lightbox .slick-prev{
    left: 4px;
  }
  .slick-lightbox .slick-next{
    right: 4px;
  }
}

/* contact section
  ======================================== */
.section-contact .text-teaser{
  padding-top: 10px;
  text-align: center;
}
.section-contact .text-teaser strong{
  font-size: 16px;
}
.section-contact .contact-teaser{
  border: 2px solid #fff;
  padding: 20px 16px;
}
.section-contact .contact-teaser .title{
  width: auto;
  text-align: center;
  margin: 0 auto;
}
.section-contact .contact-teaser h3{
  position: relative;
  width: auto;
  display: inline-block;
}
.section-contact .contact-teaser h3:before{
  position: absolute;
  font-family: 'FontAwesomeSolid';
  font-size: 50px;
  color: #266a8c;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  width: 50px;
  height: 50px;
}
.section-contact .contact-teaser.phone{
  margin: 20px 0 20px 0;
}
.section-contact .contact-teaser.phone h3{
  margin-bottom: 6px;
}
.section-contact .contact-teaser.phone h3:before{
  top: 0;
  left: -66px;
  content: '\f095';
}
.section-contact .contact-teaser.phone p{
  padding-bottom: 0;
  font-size: 16px;
}
html:not(.is-touch) .section-contact .contact-teaser.phone{
  pointer-events: none;
}
.section-contact .contact-teaser.mail h3{
  margin-bottom: 40px;
}
.section-contact .contact-teaser.mail h3:before{
  top: -10px;
  left: -66px;
  content: '\f1d8';
}
.section-contact form{
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
}
.section-contact .input-wrapper{
  width: 100%;
  max-width: 800px;
  padding-bottom: 20px;
}
.section-contact label{
  width: 100%;
  display: inline-block;
  padding-bottom: 4px;
}
.section-contact input,
.section-contact textarea{
  width: 100%;
  display: inline-block;
  background-color: #fff;
}
.section-contact input:not([type="submit"]){
  height: 35px;
  line-height: 35px;
  border: 1px solid #ddd;
  padding: 0 16px;
}
.section-contact textarea{
  border: 1px solid #ddd;
  padding: 10px 16px;
  min-height: 180px;
}
.section-contact .submit-wrapper{
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}
.section-contact input[type="submit"]{
  background-color: #266a8c;
  width: auto;
  margin: 0 auto;
  padding: 12px 30px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  -webkit-transition: background-color 0.25s linear;
  -moz-transition: background-color 0.25s linear;
  -o-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}
.section-contact input[type="submit"]:hover{
  cursor: pointer;
  background-color: #1d4c64;
}
/* contact form message */
.contact-form-success,
.contact-form-error,
.contact-form-not-available{
  text-align: center;
}
.contact-form-error,
.contact-form-not-available{
  margin-bottom: 22px;
}
.contact-form-success .inner,
.contact-form-error .inner,
.contact-form-not-available .inner{
  background-color: rgba(255, 255, 255, 0.3);
  width: auto;
  margin: 0 auto;
  padding: 25px;
  border: 2px solid #fff;
  display: inline-block;
}
.contact-form-success strong,
.contact-form-error strong,
.contact-form-not-available strong{
  position: relative;
  text-align: left;
  display: inline-block;
}
.contact-form-success strong{
  padding-left: 54px;
}
.contact-form-error strong,
.contact-form-not-available strong{
  padding-left: 34px;
  max-width: 420px;
}
.contact-form-success strong:before,
.contact-form-error strong:before,
.contact-form-not-available strong:before{
  position: absolute;
  font-family: 'FontAwesomeSolid';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.contact-form-success strong:before{
  left: 0;
  top: -6px;
  content: '\f00c';
  font-size: 42px;
  color: #266a8c;
  width: 50px;
  height: 50px;
}
.contact-form-error strong:before,
.contact-form-not-available strong:before{
  left: 0;
  top: 2px;
  content: '\f12a';
  font-size: 42px;
  color: #a22222;
  width: 34px;
  height: 50px;
}
@media all and (max-width: 600px) {
  .contact-form-success .inner,
  .contact-form-error .inner,
  .contact-form-not-available .inner{
    padding: 15px;
  }
  .contact-form-success strong{
    padding-left: 48px;
  }
  .contact-form-success strong:before{
    top: -3px;
    font-size: 34px;
    width: 38px;
    height: 38px;
  }
}

/* footer
  ======================================== */
footer{
  position: relative;
  background-color: #266a8c;
  color: #fff;
  font-size: 12px;
  width: 100%;
  padding: 12px 0 6px 0;
  display: table;
}
footer a{
  padding-bottom: 1px;
}
footer a,
footer a:hover{
  color: #fff;
}
footer a:after{
  height: 1px;
}
footer a:after,
footer a:hover:after{
  background: #fff;
}
footer .col-left{
  width: 68%;
  float: left;
}
footer .col-right{
  width: 32%;
  float: right;
  text-align: right;
}
footer .col span{
  width: 100%;
  display: inline-block;
  padding-bottom: 4px;
}
footer .col-left > div{
  float: left;
}
footer .col-left > div:first-child{
  width: 165px;
}
@media all and (max-width: 767px) {
  footer .col-left > div:first-child{
    width: 135px;
  }
}
@media all and (max-width: 600px) {
  footer .col-left,
  footer .col-right{
    width: 50%;
  }
  footer .col-left > div{
    float: none;
  }
  footer .col-left > div:first-child{
    width: 100%;
  }
  footer .col-right span:last-child{
    position: absolute;
    bottom: 6px;
    right: 16px;
  }
}

/* imprint and data privacy
  ======================================== */
.lb-imprint{
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: -1;
  display: none;
}
.lb-imprint-close{
  position: absolute;
  top: 0;
  right: 15px;
  display: block;
  height: 38px;
  width: 22px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
}
.lb-imprint-close:before{
  font-family: "slick";
  font-size: 36px;
  line-height: 1;
  color: white;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '×';
}
.lb-imprint-inner{
  background-color: #fff;
  padding: 25px;
  margin: 8vh auto;
  width: 90%;
  max-height: 85vh;
  height: auto;
  max-width: 800px;
  text-align: left;
  overflow-y: auto;
}
.lb-imprint-inner h2{
  font-size: 26px;
  padding-bottom: 18px;
}
.lb-imprint-inner h3{
  font-size: 18px;
  padding-bottom: 5px;
}
.lb-imprint-inner .data-privacy p +h3{
  margin-top: 5px;
}
.lb-imprint-inner hr{
  border: 0;
  margin: 20px 0;
}
.lb-imprint-inner .data-privacy p{
  font-size: 12px;
  padding-bottom: 12px;
}
.lb-imprint-inner .data-privacy a{
  padding-bottom: 0;
  text-decoration: underline;
}
.lb-imprint-inner .data-privacy a:after,
.lb-imprint-inner .data-privacy a:hover:after{
  display: none;
}
.lb-imprint-inner .data-privacy ul{
  margin: 0 0 12px 0;
  font-size: 12px;
}

@media all and (max-width: 600px) {
  .lb-imprint-inner h2{
    font-size: 21px;
  }
  .lb-imprint-inner h3{
    font-size: 16px;
  }
}

/* animations
  ======================================== */
@-webkit-keyframes bordergrow{
  0% { left: 50%; width: 10%; }
  100% { left: 0; width: 100%; }
}
@-moz-keyframes bordergrow{
  0% { left: 50%; width: 10%; }
  100% { left: 0; width: 100%; }
}
@-ms-keyframes bordergrow{
  0% { left: 50%; width: 10%; }
  100% { left: 0; width: 100%; }
}
@-o-keyframes bordergrow{
  0% { left: 50%; width: 10%; }
  100% { left: 0; width: 100%; }
}
@keyframes bordergrow{
  0% { left: 50%; width: 10%; }
  100% { left: 0; width: 100%; }
}