@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');

html, body {
	height: 100%;
	width: 100%;
	font-family: 'Poppins', sans-serif;
	background-color: rgba(122, 202, 143, 100);
}

.navbar {
	padding: .8rem;
	background: black;
	
}

.navbar-nav > li {
    padding-right: 15px;
}

.nav-link {
	font-size: 1.1em;
	color: rgb(255, 255, 255);
}

.nav-link:focus {
	outline: none;
}

.nav-link:hover {
  color: rgba(246, 152, 54, 100);
}

.navbar-toggler-icon {
	display: block;
	background-image: url(../logos/hamburger.png)
}

.breathing-space {
	margin-top: 50px;
}

.social > a  {
	font-size: 3rem;
	padding: 3rem;
	
}

.fa-facebook {
	color: #3b5998;
}

.fa-google {
  color: rgb(51, 110, 241);
	background-color: linear-gradient(-120deg, #4285f4, #34a853, #fbbc05, #ea4335);
}

.fa-instagram {
	color: #fff;
	border-radius: 40px;
	line-height: 900px;
	background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  box-shadow: 0px 3px 10px rgba(0,0,0,.25);
}

.fa-yelp {
	color: rgb(199, 12, 27);
}

.fa-facebook:hover,
.fa-google:hover,
.fa-instagram:hover,
.fa-yelp:hover {
	color: #d5d5d5;
}

footer {
	background-color: rgb(14, 12, 12);
	color: rgb(255, 255, 255);
	padding-top: 2rem;
}

hr.light {
	border-top: 1px solid #d5d5d5;
	width: 75%;
	margin-top: .8rem;
	margin-bottom: 1rem;
}

footer a {
	color: #d5d5d5;
}

hr.light-100 {
	border-top: 1px solid white;
	width: 25%;
	margin-top: .8rem;
	margin-bottom: 1rem;
}

h2 {
	text-align: center;
}



/*---Media Queries --*/
@media (max-width: 992px) {
    .social a {
    	font-size: 4em;
    	padding: .2rem;
    }
  }

p.about {
	text-align: justify;
}

ul {
	text-align: center;
}




.display-4 {
	font-size: 200%;
}


@media (max-width: 576px) {
    .carousel-caption {
	top: 40%;
}

.display-4 {
	font-size: 160%;
}

.social a {
	font-size: 2em;
	padding: .7rem;
}

}
caption {
	text-align: center;
}


/*--- Fixed Background Image --*/
figure {
  position: relative;
  width: 100%;
  height: 60%;
  margin: 0!important;
}

.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#fixed {
  background-image: url('images/currypic.jpg');
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}
/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
    padding: 1rem;
}




/*
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) { ... }
*/


