@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700');

html, body{
  height:100%;
  width:100%;
}
/*body { padding-top: 70px; }*/

/*Navbar*/
.bg-dark{
  background: #000 !important;
}
.navbar-nav li{
  padding-left: 40px;
}
.nav-link{
  font-size: 18px !important;
  color: #ebbb6f !important;
}

a.nav-link:hover {
  color: #0868c6!important;
  border-bottom: 3px solid #0868c6;
}
a.nav-link{
  display: block;
  text-align: center;
}
ul.square {
  list-style-type: square;
  padding-left: 20px;
  color: #fff; 
}
.column {
  float: left;
  width: 50%;
  padding-top: 0;
}

/*Buttons*/

button {
  padding: 20px 20px;
  font-size: 18px;
  margin-bottom: 20px;
  margin: 20px auto;
  display: block;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  position: relative;
}
button.filling-btn {
  background: none;
  color: #eee;
  border: none;
  transition: .4s;

}
button.filling-btn:before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  right: 0px;
  bottom: 0px;
  background: #ebbb6f;
  transition: .5s;
}
button.filling-btn:after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  left: 0px;
  top: 0px;
  background: #ebbb6f;
  transition: .5s;
}
button.filling-btn:hover:before {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: none;
  border: 1.5px solid #ebbb6f;
}
button.filling-btn:hover:after {
  width: 0;
  height: 0;
}

.blue{
  color: #0868c6;
  letter-spacing: 1px;
}
.gray{
  color:#171515;
}
.white{
  color:#eee;
}
.dark-gray{
  background-color: #0c0c0c;
}
.orange{
  color:#ebbb6f;
}

h1{
  margin: 0;
  font-weight: 300;
  letter-spacing: 3px;
}

h2{
  font-weight: 300;
  color:#eee;
  letter-spacing: 5px;
}
p{
  letter-spacing: 0.5px;
}
.lead {
  color:#eee;
}
.text-muted{
  color:#eee !important;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pattern{
  background-image: url(../img/pattern.jpg);
  background-repeat: no-repeat;
  width: 100%
}

.bio{
  color: #eee;
}
.box{
  border: 0.75px solid #eee;
  padding: 12px;
}

.gallery{
  margin: 10px 50px;
}

/* Location, Phone, Email Section */

/* Social Media Icons */
.social-media-list {
  padding: 0;
}

.social-media-list li a {
  color: #fff;
}
.social-media-list li {
  position: relative; 
  display: inline-block;
  height:60px;
  width: 60px;
  margin: 30px 30px;
  line-height: 60px;
  border-radius: 50%;
  font-size: 36px;
  text-align: center;
  background: #171515;
  cursor: pointer; 

}
.social-media-list li:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: #ebbb6f; 
  border-radius: 50%;
  transform: scale(0.9);
  transition: .5s;

}
.social-media-list li:hover {
  color: #ebbb6f; 
}
.social-media-list li:hover:before {
  filter: blur(3px);
  transform: scale(1.2);
  box-shadow: 0 0 15px #ebbb6f; 
}
.social-media-list li:hover a {
  color: #ebbb6f; 
}

a.addresslink:link {
  color: #eee;
  text-decoration: none;
}
a.addresslink:visited  {
  text-decoration: none;
  color: #eee;
}
a.addresslink:hover {
  text-decoration:underline;
  color: #ebbb6f;
}
a.addresslink:active {
  text-decoration: none;
  color: #ebbb6f;
}
.carousel-inner img {
    width: 100%;
    height: 100%;
}


/*---Media Queries --*/

@media (min-width: 576px) { 
 h1 {font-size:24px;} 
}

@media (min-width: 768px) {
  h1 {font-size:30px;} /*1rem = 16px*/  
}
@media (min-width: 992px) {
  h1 {font-size:58px;} /*1rem = 16px*/
}






/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/








