/*========================================================
    1. Fonts, Variables and Mixins
========================================================*/
/*========================================================
    GLOBALS
========================================================*/
html, body {
  height: 100%;
  width: 100%;
}

body {
  color: #272525;
  font-family: "Open Sans", Helvetica, Arial, Sans-serif;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: #272525;
  font-family: "Open Sans", Helvetica, Arial, Sans-serif;
  font-weight: 600;
  line-height: 1.3em;
}

h1 {
  font-size: 2.25em;
  /* 36px */
}

h2 {
  font-size: 1.8889em;
  /* 32px */
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 25px;
  text-transform: uppercase;
}

h3 {
  font-size: 1.25em;
  /* 20px */
  font-weight: 700;
}

h4 {
  font-size: 1.125em;
  /* 18px */
}

h5 {
  font-size: 1em;
  /* 16px */
}

h6 {
  font-size: 0.875em;
  /* 14px */
}

a:hover, a:visited, a:link {
  text-decoration: none;
}

p {
  color: #272525;
  font-size: 1em;
  /* 18px */
  font-weight: 300;
  line-height: 1.5em;
  margin: 0 0 20px;
}

input,
button,
select,
textarea {
  outline: none;
}

section {
  position: relative;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
  clear: both;
}

.clearfix:after {
  clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}

.row-no-padding [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

/* Vertical align */
.align-vcenter {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.placeholder {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 250px;
}

/* Buttons */
.btn {
  border-radius: 30px;
  font-size: 0.8333em;
  /* 15px */
  font-weight: 300;
  letter-spacing: 2px;
  padding: 20px 36px;
}

.btn-white {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}
.btn-white:hover, .btn-white:focus, .btn-white:active {
  background-color: #000000;
  border-color: #000000;
  color: #FFFFFF;
}

.btn-blue {
  background-color: #30649B;
  border-color: #30649B;
  color: #FFFFFF;
}
.btn-blue:hover, .btn-blue:focus, .btn-blue:active {
  background-color: #082545;
  color: #F0F0F0;
  border-color: #082545;
}

/*========================================================
    CONTENT
    headers, main content, footer etc...
========================================================*/
/*====== Header =====*/
.header-logo {
  padding: 22px 30px 15px;
  height: 90px;
  transition: height 0.5s;
}
.header-logo a {
  display: inline-block;
}
.header-logo img {
  height: 50px;
  transition: height 0.5s;
}

.header-top {
  padding: 18px 30px 15px;
  height: 60px;
  transition: height 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
.header-top img {
  /* height: 30px; */
  transition: height 0.5s;
}

.header-section {
  background-color: #272525;
}

/*====== Banner =====*/
.banner {
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 820px;
  position: relative;
}

/*=== Banners ===*/
.legacy-bg {
  background-image: url("../img/banner_rlegacy.jpg");
}

.hugesound-bg {
  background-image: url("../img/banner_hugesound.jpg");
}

.brickroom-bg {
  background-image: url("../img/banner_brickroom.jpg");
}

.bigdoor-bg {
  background-image: url("../img/banner_bigdoor.jpg");
}

.sagenthistlefirst-bg {
  background-image: url("../img/banner_sagenthistle_first.jpg");
}

.sagenthistle-bg {
  background-image: url("../img/banner_sagenthistle.jpg");
}

.sagenthistle-rentals-bg {
  background-image: url("../img/banner_snr_rentals.jpg");
}

.musician-bg {
  background-image: url("../img/banner_musician.jpg");
}

.carousel img {
  margin: 0 auto;
}
.carousel p {
  color: #FFFFFF;
  margin: 30px auto;
  max-width: 910px;
  padding-right: 60px;
  padding-left: 60px;
}
.carousel-control.left, .carousel-control.right {
  background-image: none;
}

.carousel-indicators {
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 70%;
}
.carousel-indicators li,
.carousel-indicators .active {
  margin: 0 4px 5px;
  height: 15px;
  width: 15px;
}

.banner-nav-right,
.banner-nav-left {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  display: inline-block;
  height: 52px;
  width: 31px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 5;
}

.banner-nav-left {
  background: transparent url("../img/nav-left.png") no-repeat 0 0;
  left: 15px;
}

.banner-nav-right {
  background: transparent url("../img/nav-right.png") no-repeat 0 0;
  right: 15px;
}

.marginT-0 {
  margin-top: 0 !important;
}

/*===== General =====*/
.content {
  padding: 150px 15px 80px;
}

/*===== Companies =====*/
.companies {
  background-color: #F0F0F0;
}
.companies h2 {
  color: #30649B;
}
.companies img {
  margin: 0 auto;
}
.companies p {
  margin: 40px auto 0;
  max-width: 540px;
}
.companies .company-list > div {
  margin-top: 80px;
}
.companies .company-list > div.clearfix {
  margin-top: 0;
}
.companies > div {
  max-width: 1570px;
}

.visit_link {
  color: #30649B;
  display: inline-block;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 30px;
}

/*===== Affiliates =====*/
.affiliates {
  background-color: #082545;
}
.affiliates h2 {
  color: #FFFFFF;
  margin-bottom: 50px;
}
.affiliates img {
  margin: 40px auto;
}
.affiliates a {
  display: block;
}
.affiliates > div {
  max-width: 1570px;
}

footer {
  background-color: #F0F0F0;
  padding: 80px 30px 60px;
  position: relative;
}
footer > div {
  max-width: 1800px;
}

.footer-logo {
  display: block;
  margin: 0 auto 50px;
}

.footer-info {
  text-align: center;
}
.footer-info p {
  font-weight: 400;
}
.footer-info a {
  color: #272525;
}
.footer-info a:hover {
  color: #30649B;
}

/*========================================================
    LAYOUT
    media queries
========================================================*/
/*****************************************************
    min-width 768px
******************************************************/
@media only screen and (min-width: 768px) {
  /*===== Globals  =====*/
  h2 {
    font-size: 2.5em;
    /* 45px */
  }

  p {
    font-size: 1.1111em;
    /* 20px */
  }

  .content {
    padding: 160px 15px 115px;
  }

  /*===== Header =====*/
  .header-top {
    padding-top: 30px;
  }

  /*===== Banner =====*/
  .intro {
    font-size: 1.38889em;
    /* 25px */
  }

  .carousel p {
    margin-bottom: 45px;
  }

  /*===== Companies =====*/
  .companies .company-list > div {
    padding-right: 30px;
    padding-left: 30px;
  }
  .companies .company-list .clearfix {
    position: relative;
  }
  .companies .company-img img {
    max-width: 250px;
    max-height: 250px;
  }
  .companies .company-img img.full-width {
    max-width: 110%;
  }

  .company-img,
  .affiliate-img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    z-index: 5;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0 40px;
  }

  /*===== Affiliates  =====*/
  .affiliates img {
    margin: 0 auto;
  }

  /*===== Footer  =====*/
  footer {
    padding: 90px 15px 60px;
  }

  .footer-info {
    text-align: left;
    padding-left: 30px;
  }
}
/*****************************************************
    min-width 992px
******************************************************/
@media only screen and (min-width: 992px) {
  /*===== Globals  =====*/
  p {
    font-size: 1.38889em;
    /* 25px */
  }

  /*===== Companies  =====*/
  .companies .company-img img {
    max-width: 270px;
    max-height: 270px;
  }

  .placeholder {
    max-width: 270px;
  }

  /*===== Banner  =====*/
  .intro {
    font-size: 1.66667em;
    /* 30px */
  }
}
/*****************************************************
    min-width 1200px
******************************************************/
@media only screen and (min-width: 1200px) {
  .content {
    padding: 200px 15px;
  }

  /*===== Banner  =====*/
  .banner-nav-right {
    right: 35%;
  }

  .banner-nav-left {
    left: 35%;
  }

  /*===== Companies  =====*/
  .companies .company-list > div {
    margin-top: 120px;
  }
  .companies .company-img img {
    max-width: 320px;
    max-height: 300px;
  }

  .placeholder {
    max-width: 300px;
  }
}
/*****************************************************
    min-width 1300px and up
******************************************************/
@media screen and (min-width: 650px) {
  /*====== Banner =====*/
  .banner {
    height: 100vh;
  }
}
@media screen and (width: 1280px) and (min-height: 720px) {
  /*====== Banner =====*/
  .carousel img {
    max-height: 280px;
  }
  .carousel p {
    margin-bottom: 35px;
  }
}

/*# sourceMappingURL=style.css.map */
