/*
Global Variables

@import this file at the top of each page
template file to make variables available.
*/
/*
Mixins

Add mixins to any css page using @include

e.g.
.element{
	@include transition( background .2s ease-out )
}
*/
@media screen and (max-width: 900px) {
  #navbar .bot-nav .site-logo path, #navbar .bot-nav .site-logo polygon {
    fill: #d5dde1 !important;
    -webkit-transition: fill 0.2s ease-out;
    -moz-transition: fill 0.2s ease-out;
    -ms-transition: fill 0.2s ease-out;
    -o-transition: fill 0.2s ease-out;
    transition: fill 0.2s ease-out;
  }
  #navbar .bot-nav .site-logo:hover path, #navbar .bot-nav .site-logo:hover polygon {
    fill: #474c52 !important;
  }
}

.bot-nav {
  position: absolute;
  z-index: 9;
  background: none;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .bot-nav {
    position: relative;
    background: white;
  }
}

.bot-nav #header_nav li.menu-item-has-children > a {
  background: url("/wp-content/themes/terrawest/images/upload/arrow-white.png") right 15px center no-repeat;
  background-size: 16px;
}

.bot-nav #header_nav li.menu-item-has-children:hover > a {
  background: url("/wp-content/themes/terrawest/images/upload/arrow-blue.png") right 15px center no-repeat;
  background-size: 16px;
}

.bot-nav #header_nav li a {
  color: white;
}

.bot-nav #header_nav li:hover > a {
  color: #3fbffe;
}

.banner {
  padding-top: 320px;
  padding-bottom: 50px;
  background: #97a1a5 center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1200px) {
  .banner {
    padding-top: 240px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 900px) {
  .banner {
    padding: 80px 7.5% 33px 7.5%;
  }
}

@media screen and (max-width: 600px) {
  .banner {
    padding: 40px 6% 20px 6%;
  }
}

.banner .banner-text {
  max-width: 100%;
}

.img-bar {
  line-height: 0px;
  border-bottom: 3px solid #0caefe;
  position: relative;
}

.img-bar img {
  width: 100%;
  max-width: none;
}

.img-bar:after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0px;
  height: 3px;
  background: #3fbffe;
  width: 65%;
}
