/*
 * Globals
 */
 body {
  font-family: garamond-premier-pro-display, serif;
  font-weight: 400;
  font-style: normal;
}


/* Fullscreen Background */
.fullscreen-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -100;
}

.fullscreen-bg__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    width: 400%;
    left: -150%;
  }
}

@media (max-width: 767px) {
  .ul-social-circle li {
    margin-left: 0px;
    margin-bottom: 10px;
  }
  /*.fullscreen-bg {
    background: url('../images/bkg_placeholder.jpg') center center / cover no-repeat;
  }

  .fullscreen-bg__video {
    display: none;
  }*/
}

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  color: #fff;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #000;
  border: 0;
  padding: 10px 2%;
  text-transform: uppercase;
  text-decoration: none;
  width: 100%;
  font-size: 30px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; 
  letter-spacing: 0.1em;
  margin-bottom: 1vh;
}
.btn-primary:hover {
  text-decoration: line-through;
  background-color: rgba(0, 0, 0, 0.4);
}
.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #000;
  border-color: #A0A0A0;
}
.btn-primary:focus {
 box-shadow: 0 0 0 0.2rem rgba(0,0,0,.5);
}

.btn-left {
  text-align: left;
}
.btn-right {
  text-align: right;
}

/*
 * Base structure
 */
html,
body {
  height: 100%;
}

body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

/*
 * Cover
 */
.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}


/*
 * Footer
 */
.mastfoot {
  color: rgba(255, 255, 255, .5);
}
.mastfoot .buttons {
  margin-bottom: 15vh;
}

/*
 * Social
 */
.ul-social-circle {
  list-style: none;
  padding: 0;
  margin: 0; 
}
.ul-social-circle .ico-social {
  height: 30px;
  width: 30px;
  font-size: 30px;  
  -webkit-text-stroke: 1px #999;
}
.ul-social-circle a:hover {
  text-decoration: none;
}
.ul-social-circle a span {
  color: #ccc;
  text-shadow: 2px 3px 4px #282828;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; 
  text-decoration: none;
}
.ul-social-circle a:hover span {
  color: #fff;
  text-shadow: 5px 6px 9px #A9A9A9;
}