@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');

h3 {
	color: #BFBFBF;
	text-align: center;
}
h5 {
	color: #BFBFBF;
	text-align: center;
	text-decoration: underline;
}
h6 {
	color: #BFBFBF;
	text-align: center;
	text-decoration: underline;
	padding: 5px;
}
body {
	background-color: #191919;
}
p {
	color: #BFBFBF;
	text-align: center;
}
img {
	max-width: 100%;
	height: auto;
	border-right: thin solid #383838;
	border-left: thin solid #383838;
	padding-left: 15px;
	padding-right: 15px;
}
.switch-flex-direction {
	flex-direction: row;
}
.switch-symbols{
	flex-direction: row;
}
hr {
	border-color: #383838;
}
.col-8 {
	border-left: thin solid #383838;
	border-right: thin solid #383838;
	align-content: center;
}
.dropdown .dropdown-menu .dropdown-item:active, .dropdown .dropdown-menu .dropdown-item:hover {
	background-color: #383838;
}
.img-thumbnail {
	height: auto;
	max-width: 100%;
}
img {
	padding: 5px;
}



/*---Media Queries --*/
@media only screen and (min-width:1200px) {
		.switch-symbols {
		flex-direction: column;
	} 
}

@media only screen and (min-width:992px) {
		.switch-symbols{
		flex-direction: column;
	}
}

@media only screen and (max-width:992px) {
	.col {
		flex-direction: column;
	}
	.switch-flex-direction {
		flex-direction: column-reverse;
	}
	.switch-symbols{
		flex-direction: row;
	}
	
}

@media only screen and (min-width: 576px) {
	img{
		max-width: 75%;
	}
}

@media only screen and (max-width: 576px) {
	img{
		max-width: 100%;
	}
}

/*---Firefox Bug Fix --*/
.carousel-item {
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

/*--- 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('img/mac.png');
  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) { ... }
*/








