/*
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;
  }
}

.banner {
  padding-top: 300px;
  background: #e3e4e6 center center no-repeat;
  background-size: cover;
}

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

@media screen and (max-width: 900px) {
  .banner {
    padding: 0px;
  }
}

@media screen and (max-width: 900px) {
  .banner:before {
    display: none;
  }
}

.banner .primary-heading {
  color: #474c52;
}

@media screen and (max-width: 900px) {
  .banner .primary-heading {
    color: white;
  }
}

@media screen and (max-width: 900px) {
  .banner .banner-text {
    display: none;
  }
}

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

.banner .banner-img {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 50%;
  background: center center no-repeat;
  background-size: cover;
  overflow: hidden;
}

@media screen and (max-width: 900px) {
  .banner .banner-img {
    position: relative;
    width: 100%;
    padding-top: 50%;
  }
}

.banner .banner-img:after {
  content: '';
  background: #e3e4e6;
  position: absolute;
  top: 0px;
  right: 100%;
  width: 1000px;
  height: 1000px;
  transform-origin: 100% 0px;
  transform: rotate(-15deg);
}

@media screen and (max-width: 900px) {
  .banner .banner-img:after {
    display: none;
  }
}

.member-details {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 600;
  padding-bottom: 45px;
}

@media screen and (max-width: 900px) {
  .member-details {
    padding-bottom: 0px;
  }
}

.member-details .position {
  text-align: right;
}

.member-contact {
  padding: 25px 0px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #d4d4d4;
  font-weight: 600;
}

@media screen and (max-width: 900px) {
  .member-contact {
    padding: 20px 0px;
  }
}

@media screen and (max-width: 600px) {
  .member-contact {
    font-size: 13px;
    padding-bottom: 10px;
  }
}

.member-contact .email {
  display: inline-block;
  padding: 0px 18px 0px 0px;
  background: url("/wp-content/themes/terrawest/images/shell/arrow-blue.png") right center no-repeat;
  background-size: 8px;
}

.member-contact .linked {
  color: #acb3b7;
}

.member-contact .linked:hover {
  color: #474c52;
}

.member-contact .linked img {
  width: 20px;
  display: inline-block;
  margin-left: 4px;
  position: relative;
  top: 2px;
}

.back-link {
  display: inline-block;
  padding: 0px 18px 0px 0px;
  color: #474c52;
  background: url("/wp-content/themes/terrawest/images/shell/arrow.png") right center no-repeat;
  background-size: 8px;
  opacity: 0.7;
  margin-bottom: 5px;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.back-link:hover {
  opacity: 1;
  color: #474c52;
}
