/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@font-face {
  font-family: reem;
  src: url(font/reem-regular.otf);
}

@font-face {
  font-family: futura;
  src: url(font/Futura.ttc);
}

@font-face {
  font-family: futura-light;
  src: url(font/FuturaStd-Light.otf);
}

html {
  font-size: 10px;
  background-color: #1a1a1a;   
  scroll-behavior: smooth;
}

body {
  font-size: 10px;
  font-family: 'futura-light', sans-serif;
  font-weight: 400;
  background-color: #1a1a1a;
}

.row a {
  color: #fff;
  text-decoration: none;
}

.row a:hover {
  color: #fff;
  text-decoration: underline;
}

.row .v2 a {
  color: #000;
  text-decoration: none;
}

.row .v2 a:hover {
  color: #000;
  text-decoration: underline;
}


h1,
.row h1 {
  line-height: 2;
	font-family: 'futura', sans-serif;
  font-weight: 700;  
  font-style:normal;    
}

p,
.row p {
  padding: 0;
  font-size: 16px;
  line-height: 22px;
	font-family: 'futura-light', sans-serif;
  font-weight: 400;  
  font-style:normal;
}

.row .small {
  font-size: 8px;
  line-height: 20px;  
}

.rh-fixed-bg {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

.rh-fixed-bg__content {
  position: absolute;
  left: 50%;
  top: 90%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
}

.rh-fixed-bg h1, .rh-fixed-bg h2 {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0);
  color: white;
}

.rh-fixed-bg.rh-fixed-bg--1 {
  /*background-image: url("../img/poison-pen-logo-animation.mp4");*/
  background-size: cover;
}

@media only screen and (max-width: 576px) {
.rh-fixed-bg {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}  
.rh-fixed-bg.rh-fixed-bg--1 {
  /*background-image: url("../img/poison-pen-logo-animation.mp4");*/
  background-size: cover;
}
}

@media only screen and (min-width: 768px) {
  .rh-fixed-bg h1, .rh-fixed-bg h2 {
    font-size: 20px;
  }
  .rh-fixed-bg__content {
  top: 90%;
  }
}

@media only screen and (min-width: 1170px) {
  .rh-fixed-bg h1, .rh-fixed-bg h2 {
    font-size: 20px;
    font-weight: 300;
  }
  @supports (background-attachment: fixed) {
    /* fix bug on IE11 and below */
    .rh-fixed-bg {
      background-attachment: fixed;
    }
  }
}

.rh-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 4em 0;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.rh-scrolling-bg.rh-scrolling-bg--color-1 {
  background-color: #000;
  color: #fff;
}

.rh-scrolling-bg.rh-scrolling-bg--color-2 {
  background-color: #fff;
  color: #000;
}

.rh-scrolling-bg.rh-scrolling-bg--color-3 {
  background-color: #b4d7a8;
  color: #3d3536;
}

.rh-scrolling-bg__content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .rh-scrolling-bg {
  padding: 2em 0;
  }
}

.fade-in-down {
  animation: fade-in-down 2s ease infinite;
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-video {
  position: relative;
  background-color: #ffffff;
  height: 65vh;
  width: 100%;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}