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

Primary style

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  color: #3d3536;
  background-color: white;
}

a {
  font-size: 14px;
  font-family: "Roboto", sans-serif;    
  color: #e6007d;
  text-decoration: none;
}

.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 img {
    width:40%;
    margin-bottom:30px;
}

@media only screen and (max-width: 450px) {
.rh-fixed-bg img {
    width:80%;
    margin-bottom:30px;
}    
}

.rh-fixed-bg__content, .rh-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  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: 1170px;
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
}

.rh-fixed-bg h1, .rh-fixed-bg h2 {
  color: white;
}

.rh-fixed-bg p {
  font-size:18px;
  font-family: "Roboto", sans-serif;    
  line-height:22px;
  font-weight: 400;   
  margin:20px 0;    
  color: #0c4371;
}

.rh-fixed-bg.rh-fixed-bg--1 {
  background-image: url("../img/bgt-hero-v1.jpg");    
}

/*.rh-fixed-bg.rh-fixed-bg--1:after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: rgba(0,0,0,0.4);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
        z-index:-1;
}*/
    
@media only screen and (min-width: 768px) {
  .rh-fixed-bg h1, .rh-fixed-bg h2 {
    font-size: 3.6rem;
  }
}

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